/* =========================================================
   Title Simply NC — Design System
   Apple-inspired: light, airy, floating dynamic cards
   Brand: navy #094584 · blue #126CA7 · teal #2DB4A5
   ========================================================= */

:root {
  /* Brand */
  --navy:        #094584;
  --navy-deep:   #06305c;
  --blue:        #126CA7;
  --teal:        #2DB4A5;
  --teal-light:  #46C7B6;

  /* Ink & surfaces */
  --ink:         #0A2540;
  --ink-soft:    #33465c;
  --muted:       #5d6f80;
  --bg:          #f6f9fc;
  --bg-2:        #eef4fa;
  --surface:     #ffffff;
  --line:        rgba(9, 69, 132, .10);
  --line-strong: rgba(9, 69, 132, .16);

  /* Gradients */
  --grad-brand:  linear-gradient(118deg, #094584 0%, #126CA7 46%, #2DB4A5 100%);
  --grad-brand-soft: linear-gradient(118deg, rgba(9,69,132,.10), rgba(45,180,165,.10));
  --grad-teal:   linear-gradient(120deg, #126CA7, #2DB4A5);

  /* Elevation (Apple-like layered, soft) */
  --sh-sm:  0 1px 2px rgba(10,37,64,.06), 0 2px 6px rgba(10,37,64,.05);
  --sh-md:  0 6px 20px rgba(10,37,64,.08), 0 2px 6px rgba(10,37,64,.05);
  --sh-lg:  0 18px 50px rgba(10,37,64,.14), 0 6px 16px rgba(10,37,64,.07);
  --sh-xl:  0 34px 80px rgba(9,69,132,.18), 0 12px 28px rgba(10,37,64,.10);
  --sh-glow: 0 20px 60px rgba(18,108,167,.28);

  /* Shape & motion */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 34px;
  --r-pill: 999px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);

  --maxw: 1180px;
  --nav-h: 74px;

  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
          "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { line-height: 1.08; letter-spacing: -.022em; color: var(--ink); margin: 0; font-weight: 700; }
p { margin: 0; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(64px, 9vw, 128px) 0; position: relative; }
.section--tight { padding: clamp(48px, 6vw, 84px) 0; }
.center { text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 650; letter-spacing: .10em; text-transform: uppercase;
  color: var(--blue);
  padding: 7px 15px; border-radius: var(--r-pill);
  background: rgba(18,108,167,.08);
  border: 1px solid rgba(18,108,167,.16);
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 4px rgba(45,180,165,.18); }
.h1 { font-size: clamp(2.5rem, 6vw, 4.4rem); font-weight: 700; }
.h2 { font-size: clamp(2rem, 4.4vw, 3.1rem); }
.h3 { font-size: clamp(1.35rem, 2.4vw, 1.7rem); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: var(--ink-soft); }
.muted { color: var(--muted); }
.grad-text {
  background: var(--grad-teal);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section-head { max-width: 720px; margin: 0 auto clamp(40px, 5vw, 64px); }
.section-head.center { text-align: center; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head p { margin-top: 16px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-size: 1rem; font-weight: 600; letter-spacing: -.01em;
  padding: 14px 26px; border-radius: var(--r-pill);
  border: 1px solid transparent; white-space: nowrap;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background .3s, color .3s;
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary {
  color: #fff; background: var(--grad-brand);
  box-shadow: 0 10px 26px rgba(18,108,167,.32);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(18,108,167,.42); }
.btn--ghost {
  color: var(--navy); background: rgba(255,255,255,.7);
  border-color: var(--line-strong); backdrop-filter: blur(10px);
}
.btn--ghost:hover { transform: translateY(-3px); box-shadow: var(--sh-md); background: #fff; }
.btn--light { color: var(--navy); background: #fff; box-shadow: var(--sh-md); }
.btn--light:hover { transform: translateY(-3px); box-shadow: var(--sh-lg); }
.btn--outline-light { color: #fff; border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.08); }
.btn--outline-light:hover { background: rgba(255,255,255,.16); transform: translateY(-3px); }
.btn--lg { padding: 16px 32px; font-size: 1.06rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row.center { justify-content: center; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(246,249,252,.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom-color: var(--line);
  box-shadow: 0 1px 0 rgba(255,255,255,.6) inset;
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 34px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: .95rem; font-weight: 550; color: var(--ink-soft);
  padding: 9px 15px; border-radius: var(--r-pill);
  transition: color .25s, background .25s;
}
.nav-links a:hover { color: var(--navy); background: rgba(9,69,132,.06); }
.nav-links a.active { color: var(--navy); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle {
  display: none; width: 44px; height: 44px; border-radius: 12px;
  background: rgba(9,69,132,.06); border: 1px solid var(--line);
  align-items: center; justify-content: center; flex-direction: column; gap: 5px;
}
.nav-toggle span { width: 20px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: var(--nav-h) 0 auto 0; z-index: 99;
  background: rgba(246,249,252,.94);
  backdrop-filter: saturate(180%) blur(22px);
  -webkit-backdrop-filter: saturate(180%) blur(22px);
  border-bottom: 1px solid var(--line);
  padding: 14px 24px 26px;
  transform: translateY(-12px); opacity: 0; pointer-events: none;
  transition: transform .35s var(--ease-out), opacity .3s;
}
.mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-menu a { display: block; padding: 14px 8px; font-size: 1.1rem; font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--line); }
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu .btn { width: 100%; margin-top: 16px; }

/* ---------- Background décor ---------- */
.bg-orbs { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.orb { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .5; }
.orb--1 { width: 520px; height: 520px; background: radial-gradient(circle, rgba(18,108,167,.55), transparent 70%); top: -160px; right: -120px; }
.orb--2 { width: 460px; height: 460px; background: radial-gradient(circle, rgba(45,180,165,.5), transparent 70%); bottom: -180px; left: -120px; }
.orb--3 { width: 380px; height: 380px; background: radial-gradient(circle, rgba(9,69,132,.28), transparent 70%); top: 30%; left: 45%; }
.grid-lines { position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 46px 46px; mask-image: radial-gradient(circle at 50% 40%, #000 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at 50% 40%, #000 0%, transparent 72%); opacity: .5; }

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: calc(var(--nav-h) + clamp(48px, 8vw, 96px)); padding-bottom: clamp(60px, 9vw, 120px); overflow: hidden; }
.hero .wrap { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.hero-copy .eyebrow { margin-bottom: 22px; }
.hero-copy h1 { margin-bottom: 20px; }
.hero-copy .lead { max-width: 540px; margin-bottom: 30px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .86rem; font-weight: 560; color: var(--ink-soft);
  padding: 8px 14px; border-radius: var(--r-pill);
  background: var(--surface); border: 1px solid var(--line); box-shadow: var(--sh-sm);
}
.chip svg { width: 15px; height: 15px; color: var(--teal); }

/* Hero visual: stacked floating cards */
.hero-visual { position: relative; min-height: 440px; }
.float-card {
  position: absolute; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--sh-xl); padding: 22px;
  will-change: transform;
}
.hero-visual .fc-main {
  inset: 20px 30px auto 30px; padding: 26px;
  background: var(--grad-brand); color: #fff; border: none;
  box-shadow: var(--sh-glow);
}
.fc-main .fc-label { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; opacity: .82; font-weight: 650; }
.fc-main .fc-big { font-size: 2.4rem; font-weight: 700; margin: 8px 0 2px; letter-spacing: -.03em; }
.fc-main .fc-sub { opacity: .9; font-size: .95rem; }
.fc-main .fc-bar { height: 6px; border-radius: 6px; background: rgba(255,255,255,.25); margin-top: 18px; overflow: hidden; }
.fc-main .fc-bar i { display: block; height: 100%; width: 82%; background: #fff; border-radius: 6px; }
.hero-visual .fc-status { top: 190px; right: -6px; display: flex; align-items: center; gap: 12px; }
.hero-visual .fc-stat  { bottom: 40px; left: -6px; }
.hero-visual .fc-people { bottom: -8px; right: 24px; display: flex; align-items: center; gap: 12px; }
.fc-ico { width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center; flex: none;
  background: var(--grad-brand-soft); color: var(--blue); }
.fc-ico svg { width: 22px; height: 22px; }
.fc-ico--green { background: rgba(45,180,165,.14); color: #1a9384; }
.fc-title { font-weight: 650; font-size: .98rem; }
.fc-meta { font-size: .82rem; color: var(--muted); }
.fc-stat .num { font-size: 1.9rem; font-weight: 700; letter-spacing: -.03em; background: var(--grad-teal); -webkit-background-clip: text; background-clip: text; color: transparent; }
.avatars { display: flex; }
.avatars span { width: 30px; height: 30px; border-radius: 50%; border: 2px solid #fff; margin-left: -8px; background: var(--grad-brand); display: grid; place-items: center; color: #fff; font-size: .72rem; font-weight: 700; }
.avatars span:first-child { margin-left: 0; }

/* ---------- Card grid (floating dynamic) ---------- */
.cards { display: grid; gap: 22px; }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.cards--2 { grid-template-columns: repeat(2, 1fr); }
.cards--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 30px; box-shadow: var(--sh-md);
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out), border-color .5s;
  overflow: hidden; transform-style: preserve-3d;
}
.card::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; opacity: 0;
  background: radial-gradient(600px circle at var(--mx,50%) var(--my,0%), rgba(18,108,167,.10), transparent 40%);
  transition: opacity .4s; pointer-events: none;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--sh-xl); border-color: rgba(18,108,167,.28); }
.card:hover::after { opacity: 1; }
.card .ico {
  width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center;
  background: var(--grad-brand-soft); color: var(--blue); margin-bottom: 20px;
  box-shadow: inset 0 0 0 1px rgba(18,108,167,.12);
  transition: transform .5s var(--ease-out);
}
.card:hover .ico { transform: translateY(-2px) scale(1.04); }
.card .ico svg { width: 27px; height: 27px; }
.card h3 { font-size: 1.28rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .98rem; }
.card .ticks { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 10px; }
.card .ticks li { display: flex; align-items: flex-start; gap: 10px; font-size: .94rem; color: var(--ink-soft); }
.card .ticks svg { width: 18px; height: 18px; color: var(--teal); flex: none; margin-top: 2px; }
.card .card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 20px; font-weight: 620; color: var(--navy); font-size: .95rem; }
.card .card-link svg { width: 16px; height: 16px; transition: transform .3s var(--ease-out); }
.card:hover .card-link svg { transform: translateX(4px); }
.card--feature { background: var(--grad-brand); color: #fff; border: none; }
.card--feature h3, .card--feature p { color: #fff; }
.card--feature p { opacity: .9; }
.card--feature .ico { background: rgba(255,255,255,.14); color: #fff; }

/* Numbered / value cards */
.value-card { text-align: left; }
.value-card .idx { font-size: .82rem; font-weight: 700; color: var(--teal); letter-spacing: .1em; }

/* ---------- Stats strip ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 28px 24px; text-align: center; box-shadow: var(--sh-sm);
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.stat:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.stat .n { font-size: clamp(2.1rem, 3.6vw, 2.9rem); font-weight: 700; letter-spacing: -.03em;
  background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .l { font-size: .92rem; color: var(--muted); margin-top: 6px; }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-copy .eyebrow { margin-bottom: 18px; }
.split-copy h2 { margin-bottom: 18px; }
.split-copy .lead { margin-bottom: 22px; }
.feature-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 16px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.feature-list .fi { width: 40px; height: 40px; border-radius: 12px; flex: none; display: grid; place-items: center;
  background: var(--grad-brand-soft); color: var(--blue); }
.feature-list .fi svg { width: 20px; height: 20px; }
.feature-list h4 { font-size: 1.05rem; margin-bottom: 2px; }
.feature-list p { color: var(--muted); font-size: .95rem; }

/* Media panel with floating badge */
.media-panel {
  position: relative; border-radius: var(--r-xl); padding: 40px;
  background: var(--grad-brand); color: #fff; box-shadow: var(--sh-xl); overflow: hidden;
  min-height: 360px; display: flex; flex-direction: column; justify-content: center; gap: 20px;
}
.media-panel .mp-orb { position: absolute; border-radius: 50%; background: rgba(255,255,255,.14); filter: blur(10px); }
.media-panel .mp-orb.a { width: 220px; height: 220px; top: -60px; right: -50px; }
.media-panel .mp-orb.b { width: 160px; height: 160px; bottom: -50px; left: -40px; background: rgba(45,180,165,.35); }
.mp-badge { position: relative; z-index: 2; display: inline-flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.2); border-radius: var(--r-md);
  padding: 16px 18px; backdrop-filter: blur(6px); }
.mp-badge .mp-ico { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.16); display: grid; place-items: center; flex: none; }
.mp-badge .mp-ico svg { width: 22px; height: 22px; }
.mp-badge .t { font-weight: 650; }
.mp-badge .s { opacity: .85; font-size: .88rem; }

/* ---------- Checklist / coverage grid ---------- */
.pill-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.pill-item { display: flex; align-items: center; gap: 12px; padding: 15px 18px; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--r-md); box-shadow: var(--sh-sm); font-weight: 550; font-size: .96rem;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out); }
.pill-item:hover { transform: translateX(4px); box-shadow: var(--sh-md); }
.pill-item svg { width: 20px; height: 20px; color: var(--teal); flex: none; }

/* ---------- Info / definition cards ---------- */
.info-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px; box-shadow: var(--sh-md); }
.info-card .eyebrow { margin-bottom: 16px; }
.info-card h3 { margin-bottom: 12px; }
.info-card p { color: var(--muted); }
.info-card + .info-card { margin-top: 0; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; }
.cta-inner {
  position: relative; z-index: 2; background: var(--grad-brand); color: #fff;
  border-radius: var(--r-xl); padding: clamp(40px, 6vw, 72px); text-align: center;
  box-shadow: var(--sh-xl);
}
.cta-inner .mp-orb { position: absolute; }
.cta-inner .o1 { width: 300px; height: 300px; border-radius: 50%; background: rgba(45,180,165,.4); filter: blur(50px); top: -100px; right: -60px; }
.cta-inner .o2 { width: 260px; height: 260px; border-radius: 50%; background: rgba(255,255,255,.18); filter: blur(50px); bottom: -120px; left: -40px; }
.cta-inner > * { position: relative; z-index: 2; }
.cta-inner h2 { color: #fff; margin-bottom: 14px; }
.cta-inner p { color: rgba(255,255,255,.9); max-width: 560px; margin: 0 auto 28px; font-size: 1.1rem; }

/* ---------- Contact / form ---------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(28px, 4vw, 52px); align-items: start; }
.contact-list { display: grid; gap: 14px; margin-top: 26px; }
.contact-item { display: flex; align-items: center; gap: 16px; padding: 18px 20px; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--r-md); box-shadow: var(--sh-sm);
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out); }
.contact-item:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.contact-item .ci { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; flex: none;
  background: var(--grad-brand-soft); color: var(--blue); }
.contact-item .ci svg { width: 22px; height: 22px; }
.contact-item .l { font-size: .8rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }
.contact-item .v { font-weight: 620; color: var(--ink); }

.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl); padding: clamp(24px, 3vw, 38px); box-shadow: var(--sh-lg); }
.form-note { display: flex; gap: 10px; align-items: flex-start; font-size: .84rem; color: var(--ink-soft);
  background: rgba(45,180,165,.08); border: 1px solid rgba(45,180,165,.2); border-radius: var(--r-md); padding: 12px 14px; margin-bottom: 22px; }
.form-note svg { width: 16px; height: 16px; color: var(--teal); flex: none; margin-top: 2px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .86rem; font-weight: 600; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: .98rem; color: var(--ink);
  padding: 13px 15px; border-radius: var(--r-sm); border: 1px solid var(--line-strong);
  background: #fbfdff; transition: border-color .25s, box-shadow .25s, background .25s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); background: #fff;
  box-shadow: 0 0 0 4px rgba(18,108,167,.12);
}
.form-consent { font-size: .8rem; color: var(--muted); margin-top: 14px; }
.form-ok { display: none; margin-top: 16px; padding: 14px 16px; border-radius: var(--r-md);
  background: rgba(45,180,165,.12); border: 1px solid rgba(45,180,165,.3); color: #157567; font-weight: 600; font-size: .95rem; }
.form-ok.show { display: block; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(255,255,255,.72); padding: clamp(52px, 6vw, 80px) 0 32px; position: relative; overflow: hidden; }
.footer::before { content: ""; position: absolute; inset: 0; background: radial-gradient(700px circle at 15% 0%, rgba(18,108,167,.28), transparent 60%); pointer-events: none; }
.footer .wrap { position: relative; z-index: 2; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer .f-brand img { height: 40px; margin-bottom: 18px; filter: brightness(0) invert(1); }
.footer .f-brand p { max-width: 320px; font-size: .95rem; }
.footer h5 { color: #fff; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin: 0 0 16px; font-weight: 650; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.footer ul a { font-size: .95rem; transition: color .25s; }
.footer ul a:hover { color: #fff; }
.footer .f-contact li { font-size: .95rem; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; padding-top: 24px; font-size: .86rem; }
.footer-bottom .partner { color: rgba(255,255,255,.55); }

/* ---------- Reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
[data-reveal][data-delay="4"] { transition-delay: .32s; }

/* Floating idle animation for hero cards */
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.floaty { animation: floaty 6s ease-in-out infinite; }
.floaty.d1 { animation-delay: -2s; }
.floaty.d2 { animation-delay: -4s; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 400px; margin-top: 20px; }
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .cards--3, .cards--4 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .cards--2, .cards--3, .cards--4 { grid-template-columns: 1fr; }
  .pill-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-visual { min-height: 430px; }
}
