/* ==========================================================
   DILYS GROUP — Global Stylesheet
   Design system: Plus Jakarta Sans | Purple-dominant brand
   Colour contract (strictly enforced):
     #3D0667  Purple    — dominant; nav, hero, accent sections
     #FFFFFF  White     — backgrounds, text on dark
     #1A1A1A  Black     — body copy on white
     #D9D9D9  Grey      — dividers only
     #FF3131  Red       — primary CTA buttons ONLY
   ========================================================== */

/* ─── CUSTOM PROPERTIES ─────────────────────────────────── */
:root {
  /* Brand */
  --purple:       #3D0667;
  --purple-dark:  #2A0449;
  --purple-deep:  #1E0235;
  --purple-mid:   #5A1899;
  --purple-lite:  #F6F2FC;
  --white:        #FFFFFF;
  --black:        #1A1A1A;
  --red:          #FF3131;
  --red-hover:    #D42020;
  --grey-divide:  #D9D9D9;
  --grey-bg:      #F7F6FB;
  --grey-muted:   #767676;

  /* Layout */
  --max-w:        1280px;
  --nav-h:        140px;
  --pad-h:        64px;          /* horizontal container padding */
  --section-v:    128px;         /* vertical section padding */
  --radius-card:  20px;
  --radius-btn:   8px;

  /* Shadows */
  --shadow-card:       0 1px 3px rgba(0,0,0,0.04), 0 6px 28px rgba(61,6,103,0.06);
  --shadow-card-hover: 0 8px 16px rgba(0,0,0,0.07), 0 28px 72px rgba(61,6,103,0.14);
  --shadow-form:       0 2px 4px rgba(0,0,0,0.04), 0 20px 64px rgba(61,6,103,0.08);

  /* Motion */
  --ease:        0.22s ease;
  --ease-long:   0.55s cubic-bezier(0.22, 1, 0.36, 1);
}


/* ─── RESET ─────────────────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--ease);
}

ul, ol { list-style: none; }
address { font-style: normal; }
img { display: block; max-width: 100%; height: auto; }
button { font-family: inherit; cursor: pointer; }
svg { display: block; }


/* ─── LAYOUT ─────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-h);
}


/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
h1 {
  font-size: clamp(52px, 6.5vw, 96px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(32px, 3.6vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.015em;
}

h4 {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1;
}

p {
  font-size: 18px;
  line-height: 1.75;
}

.section-overline {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 18px;
  text-align: center;
}

.section-headline {
  text-align: center;
  color: var(--purple);
  margin-bottom: 18px;
}

.section-sub {
  font-size: clamp(16px, 1.1vw, 18px);
  color: #666;
  text-align: center;
  max-width: 540px;
  margin: 0 auto 80px;
  line-height: 1.72;
}


/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 0 32px;
  height: 52px;
  border-radius: var(--radius-btn);
  border: 2px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--ease), border-color var(--ease), color var(--ease),
              transform var(--ease), box-shadow var(--ease);
}

/* Red CTA — hero + form submit only */
.btn-red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-red:hover {
  background: var(--red-hover);
  border-color: var(--red-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,49,49,0.32);
}

/* Ghost — on dark (purple) backgrounds */
.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.88);
  border-color: rgba(255,255,255,0.28);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.72);
  color: var(--white);
  transform: translateY(-2px);
}

/* Full-width variant */
.btn-full {
  width: 100%;
  height: 54px;
  font-size: 16px;
}


/* ─── NAVIGATION ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.nav.scrolled {
  background: var(--purple);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06), 0 4px 32px rgba(0,0,0,0.28);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-h);
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  margin-right: 48px;
}

.nav-logo img {
  height: 180px;
  width: auto;
  display: block;
}

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  flex: 1;
}

.nav-links a {
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
  position: relative;
  transition: color var(--ease);
}

/* Underline slide-from-left */
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.65);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

/* Contact pill */
.nav-contact {
  padding: 8px 20px !important;
  border: 1.5px solid rgba(255,255,255,0.32) !important;
  border-radius: 7px;
  font-weight: 600 !important;
  color: var(--white) !important;
  transition: border-color var(--ease), background var(--ease) !important;
}

.nav-contact:hover {
  border-color: rgba(255,255,255,0.72) !important;
  background: rgba(255,255,255,0.09) !important;
}

.nav-contact::after { display: none !important; }

/* Right cluster */
.nav-end {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  padding-left: 32px;
  border-left: 1px solid rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* Language toggle */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lang-sep {
  color: rgba(255,255,255,0.22);
  font-size: 12px;
  font-weight: 300;
  line-height: 1;
  user-select: none;
}

.lang-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.44);
  font-family: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color var(--ease), border-color var(--ease);
  cursor: pointer;
  line-height: 1;
}

.lang-btn:hover,
.lang-btn.active {
  color: var(--white);
  border-bottom-color: var(--white);
}

/* Hamburger — hidden on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh; /* fallback */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 96px) var(--pad-h) 104px;
  overflow: hidden;

  /* Rich multi-layered purple gradient — not flat */
  background:
    radial-gradient(ellipse 90% 60% at 35% -5%,  rgba(110,40,200,0.55) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 110%, rgba(20,0,55,0.75)    0%, transparent 55%),
    var(--purple);
}

/* Dot-grid texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

/* Bottom edge vignette */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 40% at 50% 105%, rgba(10,0,25,0.5) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  max-width: 860px;
  position: relative;
  z-index: 2;
}

/* hero-brand-logo removed — logo no longer shown in hero */

/* Eyebrow pill */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  padding: 8px 22px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  margin-bottom: 36px;
}

/* Headline */
.hero h1 {
  color: var(--white);
  margin-bottom: 32px;
}

/* Body copy */
.hero-body {
  font-size: clamp(16px, 1.2vw, 19px);
  color: rgba(255,255,255,0.72);
  max-width: 660px;
  margin: 0 auto 14px;
  line-height: 1.78;
}

/* Sub tagline */
.hero-tagline {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.42);
  letter-spacing: 0.01em;
  margin-bottom: 56px;
}

/* CTA cluster */
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scroll-line {
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.28));
}

.scroll-chevron {
  animation: chevronFloat 1.9s ease-in-out infinite;
}

@keyframes chevronFloat {
  0%, 100% { transform: translateY(0);  opacity: 0.45; }
  50%       { transform: translateY(5px); opacity: 0.9; }
}

/* ─── HERO ENTRANCE ANIMATION ────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0);    }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-eyebrow    { animation: fadeUp 0.7s ease both;            }
  .hero h1         { animation: fadeUp 0.7s ease  0.20s both;    }
  .hero-body       { animation: fadeUp 0.65s ease 0.32s both;    }
  .hero-tagline    { animation: fadeUp 0.65s ease 0.40s both;    }
  .hero-actions    { animation: fadeUp 0.65s ease 0.50s both;    }
  .hero-scroll     { animation: fadeUp 0.65s ease 0.65s both;    }
}


/* ─── PROOF BAR ──────────────────────────────────────────── */
.proof-bar {
  background: var(--purple-dark);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.proof-grid {
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 44px 72px;
  gap: 10px;
}

.proof-num {
  font-size: clamp(26px, 2.5vw, 38px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
}

.proof-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.46);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.proof-divider {
  width: 1px;
  background: rgba(255,255,255,0.08);
  margin: 28px 0;
  flex-shrink: 0;
  align-self: stretch;
}


/* ─── DIVISIONS ──────────────────────────────────────────── */
.divisions {
  padding: var(--section-v) 0;
  background: var(--white);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Card */
.div-card {
  background: var(--white);
  border: 1.5px solid #EAEAEA;
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: transform var(--ease-long), box-shadow var(--ease-long), border-color var(--ease-long);
}

.div-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(61,6,103,0.18);
}

/* Thin gradient accent bar */
.card-bar {
  height: 3px;
  flex-shrink: 0;
}

.card-bar-athena     { background: linear-gradient(90deg, #3D0667, #7B3CB8); }
.card-bar-search     { background: linear-gradient(90deg, #5A1899, #3D0667); }
.card-bar-consulting { background: linear-gradient(90deg, #3D0667, #6628A0); }

/* Card body */
.card-body {
  padding: 40px 36px 36px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Division logo — flexible to accommodate horizontal wordmarks */
.card-logo-wrap {
  height: 220px;
  margin-bottom: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.card-logo-wrap img {
  max-height: 220px;
  width: auto;
  max-width: 550px;
  object-fit: contain;
  object-position: left center;
}

/* Division name */
.card-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--purple);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

/* Descriptor pill */
.card-descriptor {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9A9A9A;
  margin-bottom: 20px;
}

/* Card copy */
.card-copy {
  font-size: 15px;
  color: #4A4A4A;
  line-height: 1.75;
  flex: 1;
  margin-bottom: 28px;
}

/* Card CTA link */
.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--purple);
  letter-spacing: 0.01em;
  margin-top: auto;
  transition: color var(--ease), gap var(--ease), transform var(--ease);
}

.card-cta:hover {
  color: var(--purple-mid);
  gap: 10px;
  transform: translateX(4px);
}

.card-cta-arrow {
  font-size: 17px;
  line-height: 1;
}


/* ─── WHY ONE GROUP ──────────────────────────────────────── */
.why {
  padding: var(--section-v) 0;
  background: var(--purple);
  position: relative;
  overflow: hidden;
}

/* Glow layers */
.why::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 10% 50%, rgba(90,24,153,0.5)  0%, transparent 55%),
    radial-gradient(ellipse 65% 45% at 92% 80%, rgba(26,0,58,0.65)   0%, transparent 55%);
  pointer-events: none;
}

/* Dot texture */
.why::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.038) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.why-header {
  max-width: 640px;
  margin: 0 auto 80px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.why h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.why .section-sub {
  color: rgba(255,255,255,0.60);
  margin-bottom: 0;
  text-align: center;
  max-width: none;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}

.pillar {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-card);
  padding: 48px 36px;
  text-align: center;
  transition: background var(--ease), border-color var(--ease);
}

.pillar:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.16);
}

.pillar-icon {
  width: 72px;
  height: 72px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  transition: background var(--ease);
}

.pillar:hover .pillar-icon {
  background: rgba(255,255,255,0.13);
}

.pillar h3 {
  color: var(--white);
  font-size: 19px;
  margin-bottom: 14px;
}

.pillar p {
  font-size: 15.5px;
  color: rgba(255,255,255,0.60);
  line-height: 1.72;
}


/* ─── CONTACT ────────────────────────────────────────────── */
.contact {
  padding: var(--section-v) 0;
  background: var(--grey-bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 88px;
  align-items: start;
}

/* Info column */
.contact-info h2 {
  color: var(--purple);
  margin-bottom: 20px;
}

.contact-info > p {
  font-size: 17px;
  color: #555;
  line-height: 1.78;
  margin-bottom: 44px;
  max-width: 360px;
}

.contact-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 44px;
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--black);
  line-height: 1.65;
}

.contact-details li svg {
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.55;
}

.contact-details a {
  color: var(--purple);
  font-weight: 500;
  transition: color var(--ease);
}

.contact-details a:hover {
  color: var(--purple-mid);
}

/* Direct links */
.direct-label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #A0A0A0;
  margin-bottom: 14px;
  display: block;
}

.direct-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.direct-btn {
  display: inline-block;
  padding: 8px 18px;
  border: 1.5px solid #DEDEDE;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--purple);
  background: var(--white);
  transition: border-color var(--ease), background var(--ease), color var(--ease);
  letter-spacing: 0.01em;
}

.direct-btn:hover {
  border-color: var(--purple);
  background: var(--purple);
  color: var(--white);
}

/* Form card */
.form-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 48px;
  box-shadow: var(--shadow-form);
  border: 1px solid rgba(61,6,103,0.06);
}

/* Netlify honeypot — visually hidden */
.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
  height: 0;
  overflow: hidden;
}

/* Form layout */
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 22px;
}

.field label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--purple);
}

.req {
  color: var(--red);
  margin-left: 2px;
}

.field input,
.field textarea,
.field select {
  font-family: inherit;
  font-size: 15px;
  color: var(--black);
  background: var(--white);
  border: 1.5px solid #E2E2E2;
  border-radius: 8px;
  padding: 11px 14px;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color var(--ease), box-shadow var(--ease);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(61,6,103,0.08);
}

/* Select chevron */
.field select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='7' viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%233D0667' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.field textarea {
  resize: vertical;
  min-height: 128px;
  line-height: 1.65;
}

/* Submit */
.btn-submit {
  width: 100%;
  height: 54px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: none;
  border-radius: 8px;
  background: var(--red);
  color: var(--white);
  cursor: pointer;
  margin-top: 6px;
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
}

.btn-submit:hover {
  background: var(--red-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,49,49,0.3);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Success / error messages */
.form-msg {
  display: none;
  margin-top: 16px;
  padding: 16px 20px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
}

.form-msg.success {
  display: block;
  background: #EEF7EC;
  color: #286020;
  border: 1px solid #B3D9AE;
}

.form-msg.error {
  display: block;
  background: #FFF0EE;
  color: #B83024;
  border: 1px solid #F0B8B3;
}


/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--purple-deep);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* Brand column */
.footer-logo {
  width: 180px;
  height: auto;
  display: block;
  margin-bottom: 24px;
  filter: brightness(0) invert(1);
}

.footer-brand-tag {
  display: block;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 18px;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.44);
  line-height: 1.75;
  max-width: 240px;
}

/* Footer column heading */
.footer-col-head {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.36);
  margin-bottom: 24px;
  display: block;
}

/* Footer links */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links address {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-style: normal;
}

.footer-links p,
.footer-links address p {
  font-size: 14px;
  color: rgba(255,255,255,0.52);
  line-height: 1.65;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.52);
  transition: color var(--ease);
}

.footer-links a:hover {
  color: var(--white);
}

/* Division links — logo only, stacked vertically */
.footer-div-link {
  display: block;
  margin-bottom: 16px;
}

.footer-div-link:last-child {
  margin-bottom: 0;
}

.footer-div-logo {
  width: 160px;
  height: auto;
  object-fit: contain;
  opacity: 0.75;
  flex-shrink: 0;
  transition: opacity var(--ease);
  filter: brightness(0) invert(1);
}

/* Athena logo is a PNG — mix-blend-mode instead of filter */
#footerAthenaImg {
  filter: none;
  mix-blend-mode: screen;
}

.footer-div-link:hover .footer-div-logo {
  opacity: 1;
}

/* Bottom strip */
.footer-bottom {
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.22);
  letter-spacing: 0.02em;
}


/* ─── SCROLL-REVEAL ──────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1),
              transform 0.65s cubic-bezier(0.22,1,0.36,1);
}

[data-reveal].in-view {
  opacity: 1;
  transform: none;
}

[data-reveal][data-delay="100"] { transition-delay: 0.10s; }
[data-reveal][data-delay="150"] { transition-delay: 0.15s; }
[data-reveal][data-delay="200"] { transition-delay: 0.20s; }
[data-reveal][data-delay="300"] { transition-delay: 0.30s; }
[data-reveal][data-delay="400"] { transition-delay: 0.40s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  @keyframes fadeUp    { from {} to {} }
  @keyframes chevronFloat { from {} to {} }
}


/* ─── RESPONSIVE ─────────────────────────────────────────── */

/* Large desktop */
@media (max-width: 1300px) {
  :root { --pad-h: 48px; }
  .proof-item { padding: 40px 52px; }
}

/* Tablet landscape */
@media (max-width: 1100px) {
  :root {
    --pad-h:      40px;
    --section-v:  104px;
  }
  .cards-grid     { gap: 22px; }
  .contact-grid   { gap: 64px; }
  .footer-grid    { gap: 48px; }
}

/* Tablet portrait */
@media (max-width: 960px) {
  :root {
    --nav-h:      130px;
    --section-v:  88px;
  }

  .nav-logo img   { height: 100px; }

  /* Stack division cards 2-up */
  .cards-grid     { grid-template-columns: repeat(2, 1fr); }

  /* Pillars single column */
  .pillars-grid   { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  /* Contact stacked */
  .contact-grid   { grid-template-columns: 1fr; gap: 48px; }
  .contact-info > p { max-width: none; }

  /* Footer 2-col */
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand   { grid-column: 1 / -1; }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --pad-h:      20px;
    --nav-h:      118px;
    --section-v:  72px;
  }

  /* Mobile nav */
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--purple);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.07); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    min-height: 48px;
    font-size: 15px;
    color: rgba(255,255,255,0.88);
  }
  .nav-links a::after { display: none; }
  .nav-contact {
    margin: 12px 20px !important;
    display: flex !important;
    justify-content: center;
    min-height: 48px;
    padding: 12px 20px !important;
    border-radius: 8px !important;
  }
  .nav-end       { padding-left: 0; border-left: none; gap: 12px; }
  .lang-switch   { display: none; }
  .hamburger     { display: flex; }
  .nav-logo      { margin-right: 0; }
  .nav-logo img  { height: 90px; }

  /* Hero */
  .hero {
    padding: calc(var(--nav-h) + 64px) var(--pad-h) 80px;
  }
  .hero-body { font-size: 16px; }
  .hero-scroll { display: none; }

  /* Proof bar */
  .proof-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .proof-item { padding: 32px 20px; }
  .proof-num  { font-size: 26px; }
  .proof-label { font-size: 10px; white-space: normal; }
  .proof-divider:nth-child(4) { display: none; }

  /* Cards */
  .section-sub { margin-bottom: 48px; }
  .cards-grid  { grid-template-columns: 1fr; gap: 20px; }

  /* Form */
  .form-row-2 { grid-template-columns: 1fr; }
  .form-card  { padding: 32px 24px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: 1; }

  /* Hero actions full-width */
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .btn { width: 100%; height: 52px; justify-content: center; }
}

/* Small mobile (390px) */
@media (max-width: 480px) {
  .hero-eyebrow    { font-size: 10px; letter-spacing: 0.14em; }

  .proof-divider   { display: none; }

  .card-body   { padding: 32px 28px; }
  .card-logo-wrap { height: 160px; margin-bottom: 28px; }
  .card-logo-wrap img { max-height: 160px; width: auto; max-width: 400px; }

  .pillar { padding: 36px 24px; }

  .direct-btns { flex-direction: column; }
  .direct-btn  { text-align: center; }
}
