/* ═══════════════════════════════════════════
   Fixy Landing — Design System
   Colors from app_colors.dart
   ═══════════════════════════════════════════ */

:root {
  --primary: #1e3a5f;
  --primary-light: #2e5a8f;
  --primary-dark: #0f1f35;
  --accent: #ff6b2c;
  --accent-soft: #ff8f5e;
  --cyan: #00b4d8;
  --cyan-soft: #4dd8f0;
  --green: #10b981;
  --bg: #f8f9fb;
  --surface: #ffffff;
  --text: #111827;
  --muted: #6b7280;
  --border: #e5e7eb;
  --border-light: #f3f4f6;
  --r: 14px;
  --r-sm: 10px;
  --shadow-sm: 0 2px 8px rgba(15,31,53,.06);
  --shadow: 0 4px 24px rgba(15,31,53,.08);
  --shadow-md: 0 12px 40px rgba(15,31,53,.12);
  --shadow-lg: 0 24px 64px rgba(15,31,53,.16);
  --ease: cubic-bezier(.22,1,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: min(1140px, 92vw); margin: 0 auto; }
@media(max-width:480px){ .container { width: calc(100% - 2rem); } }

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .7rem 1.4rem;
  min-height: 44px;
  font: inherit; font-weight: 600; font-size: .9375rem;
  border-radius: 999px; border: none; cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .25s, color .2s, border-color .2s;
}
.btn:active { transform: scale(.97); }

.btn--accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: #fff;
  box-shadow: 0 4px 18px rgba(255,107,44,.3);
}
.btn--accent:hover {
  box-shadow: 0 8px 28px rgba(255,107,44,.4);
  transform: translateY(-2px);
  color: #fff;
}

.btn--white {
  background: #fff; color: var(--primary);
  box-shadow: 0 6px 24px rgba(0,0,0,.12);
}
.btn--white:hover { transform: translateY(-2px); color: var(--primary-dark); box-shadow: 0 10px 32px rgba(0,0,0,.18); }

.btn--outline {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,.35);
}
.btn--outline:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.55); color: #fff; transform: translateY(-2px); }

.btn--dark {
  background: var(--primary-dark); color: #fff;
  box-shadow: 0 6px 24px rgba(15,31,53,.35);
}
.btn--dark:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(15,31,53,.45); color: #fff; }

/* ═══ NAVIGATION ═══ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: .75rem 0;
  background: rgba(248,249,251,.9);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, padding .3s;
}
.nav--scrolled { border-color: var(--border); box-shadow: var(--shadow-sm); padding: .55rem 0; }

.nav__inner { display: flex; align-items: center; gap: 1.5rem; }

.nav__brand { flex-shrink: 0; line-height: 0; transition: opacity .2s; }
.nav__brand:hover { opacity: .88; }
.nav__logo { height: 36px; width: auto; }

.nav__links {
  display: flex; align-items: center; gap: 1.5rem;
  list-style: none; margin: 0 auto; padding: 0;
}
.nav__links a {
  position: relative;
  font-size: .9rem; font-weight: 600; color: var(--muted);
  padding: .2rem 0;
  transition: color .25s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute; left: 0; bottom: -2px; width: 100%; height: 2px;
  background: var(--accent); border-radius: 2px;
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease-out);
}
.nav__links a:hover { color: var(--primary); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__cta { flex-shrink: 0; }
.nav__cta--secondary {
  background: transparent !important;
  color: var(--primary) !important;
  border: 1.5px solid var(--border) !important;
  box-shadow: none !important;
  margin-right: .4rem;
}
.nav__cta--secondary:hover {
  background: var(--surface-alt, #f1f5f9) !important;
  border-color: var(--primary) !important;
  color: var(--primary-dark) !important;
}

.nav__toggle {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; padding: .5rem; cursor: pointer;
}
.nav__toggle span {
  display: block; width: 22px; height: 2px; background: var(--primary);
  border-radius: 2px; transition: transform .3s var(--ease), opacity .2s;
}
.nav--open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav--open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav--open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media(max-width:900px){
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }

  .nav--open .nav__links,
  .nav--open .nav__cta {
    display: flex;
    position: fixed; left: 0; right: 0;
    background: var(--surface);
    animation: slideDown .35s var(--ease-out);
  }
  .nav--open .nav__links {
    top: 56px;
    flex-direction: column;
    padding: 1.25rem 5vw .75rem;
    gap: .25rem;
    border-bottom: 1px solid var(--border-light);
  }
  .nav--open .nav__links li { width: 100%; }
  .nav--open .nav__links a {
    display: block; padding: .85rem 0;
    font-size: 1rem;
  }
  .nav--open .nav__cta {
    display: flex; flex-direction: column; gap: .55rem;
    top: auto; bottom: 0;
    padding: 1rem 5vw calc(1rem + env(safe-area-inset-bottom,0px));
    box-shadow: 0 -8px 24px rgba(15,31,53,.12);
    animation: slideDown .35s var(--ease-out) .05s both;
  }
  .nav--open .nav__cta .btn { width: 100%; justify-content: center; }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ═══ HERO ═══ */
.hero {
  position: relative;
  display: flex; align-items: center;
  min-height: min(90vh, 54rem);
  padding: max(5rem, calc(3.5rem + env(safe-area-inset-top,0px))) 0 3.5rem;
  overflow: hidden;
}

@media(max-width:900px){
  .hero { min-height: 0; padding: max(5rem, 4.5rem) 0 2.5rem; }
}

.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary) 40%, #254a73 100%);
}
.hero__bg::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 75% 10%, rgba(255,107,44,.1) 0%, transparent 60%),
    radial-gradient(ellipse 50% 45% at 10% 90%, rgba(0,180,216,.12) 0%, transparent 55%);
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black 55%, transparent);
}

.hero__dots { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero__dot {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, var(--accent-soft), var(--accent));
  box-shadow: 0 0 18px rgba(255,107,44,.4);
}
.hero__dot--1 { width: 10px; height: 10px; top: 20%; right: 15%; animation: dotPulse 5s ease-in-out infinite; }
.hero__dot--2 { width: 7px; height: 7px; bottom: 25%; right: 30%; animation: dotPulse 5s ease-in-out 1.5s infinite; opacity: .7; }
.hero__dot--3 { width: 8px; height: 8px; top: 55%; right: 8%; animation: dotPulse 5s ease-in-out .7s infinite; opacity: .6; }

@keyframes dotPulse { 0%,100%{ transform: scale(1); opacity: .5; } 50%{ transform: scale(1.2); opacity: .95; } }

.hero__grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

@media(max-width:900px){
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
}

/* Hero content */
.hero__content { position: relative; z-index: 1; }
.hero__pill {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .3rem .75rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: rgba(255,255,255,.92); font-size: .82rem; font-weight: 500;
  margin-bottom: 1.15rem;
}
.hero__pill-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--cyan-soft);
  box-shadow: 0 0 10px var(--cyan);
  animation: dotPulse 2.5s var(--ease) infinite;
}

.hero__title {
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(2.1rem, 4vw + .6rem, 3.25rem);
  line-height: 1.1;
  letter-spacing: -.03em;
  color: #fff;
  margin: 0 0 1rem;
  text-wrap: balance;
}
.hero__title em { font-style: normal; color: var(--accent-soft); }

.hero__lead {
  font-size: clamp(.95rem, 1.5vw + .15rem, 1.1rem);
  line-height: 1.65; color: rgba(255,255,255,.82);
  max-width: 34rem; margin: 0 0 1.75rem;
}
@media(max-width:900px){ .hero__lead { max-width: none; margin-inline: auto; } }

.hero__actions { display: flex; flex-wrap: wrap; gap: .65rem; }
@media(max-width:900px){ .hero__actions { justify-content: center; } }

/* Hero entrance */
.anim-up {
  opacity: 0; transform: translateY(18px);
  animation: animUp .85s var(--ease-out) forwards;
  animation-delay: calc(.12s + var(--d, 0) * .1s);
}
@keyframes animUp { to { opacity: 1; transform: translateY(0); } }

/* Hero visual — the bridge diagram */
.hero__visual {
  display: flex; align-items: center; justify-content: center;
  position: relative; min-height: 0;
}

@media(max-width:900px){
  .hero__visual { order: -1; margin-bottom: 1rem; }
}

.visual {
  position: relative;
  width: 100%; max-width: 22rem;
  aspect-ratio: 1;
}

@media(max-width:900px){
  .visual { max-width: 16rem; }
}

@media(max-width:480px){
  .visual { max-width: 12rem; }
  .visual__card { display: none !important; }
  .visual__line { display: none !important; }
}

.visual__card {
  position: absolute; z-index: 2;
  width: min(48%, 10rem);
  padding: .75rem .85rem;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(12px) saturate(1.15);
  -webkit-backdrop-filter: blur(12px) saturate(1.15);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 12px;
  color: #fff; text-align: left;
  box-shadow: 0 6px 24px rgba(0,0,0,.12);
}
.visual__card strong {
  display: block; font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em; opacity: .92;
}
.visual__card span {
  display: block; font-size: .66rem; font-weight: 500;
  opacity: .72; margin-top: .25rem; line-height: 1.35;
}
.visual__card--top { top: 10%; left: 0; animation: cardFloat 6s ease-in-out infinite; }
.visual__card--bottom { bottom: 10%; right: 0; animation: cardFloat 6s ease-in-out 1s infinite; }
@keyframes cardFloat { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-5px); } }

.visual__line {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 65%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan-soft) 30%, var(--accent-soft) 70%, transparent);
  opacity: .6; z-index: 1;
  animation: linePulse 3.5s ease-in-out infinite;
}
@keyframes linePulse { 0%,100%{ opacity: .45; } 50%{ opacity: .85; } }

.visual__hub {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  padding: .85rem 1.1rem;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(255,107,44,.15);
  animation: hubIn 1s var(--ease-out) .4s both;
}
.visual__hub::before {
  content: ""; position: absolute; inset: -3px; border-radius: 21px;
  background: linear-gradient(135deg, rgba(255,107,44,.28), rgba(0,180,216,.2));
  z-index: -1; opacity: .85;
  animation: hubRing 5s ease-in-out infinite;
}

.visual__logo { width: auto; height: auto; max-width: min(150px, 38vw); max-height: 48px; object-fit: contain; }

@media(max-width:900px){
  .visual__logo { max-width: min(140px, 48vw); max-height: 46px; }
}

@keyframes hubIn { from { opacity: 0; transform: translate(-50%,-50%) scale(.85); } to { opacity: 1; transform: translate(-50%,-50%) scale(1); } }
@keyframes hubRing { 0%,100%{ opacity: .7; transform: scale(1); } 50%{ opacity: 1; transform: scale(1.02); } }

/* ═══ MARQUEE ═══ */
.marquee {
  background: var(--surface);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: .85rem 0; overflow: hidden;
}
.marquee__track {
  display: flex; gap: .75rem; width: max-content;
  animation: scroll 42s linear infinite;
}
.marquee__track:hover { animation-play-state: paused; }
@keyframes scroll { to { transform: translateX(-50%); } }

.marquee span {
  flex-shrink: 0;
  padding: .45rem 1rem;
  background: var(--bg); border: 1px solid var(--border); border-radius: 999px;
  font-size: .8rem; font-weight: 600; color: var(--primary);
  transition: border-color .25s, box-shadow .25s;
}
.marquee span:hover { border-color: rgba(255,107,44,.3); box-shadow: var(--shadow-sm); }

/* ═══ SCROLL REVEAL ═══ */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); will-change: auto; }

.duo .reveal:nth-child(2) { transition-delay: .08s; }
.trust__grid .reveal:nth-child(2) { transition-delay: .08s; }
.trust__grid .reveal:nth-child(3) { transition-delay: .16s; }
.steps .reveal:nth-child(2) { transition-delay: .08s; }
.steps .reveal:nth-child(3) { transition-delay: .16s; }
.grid-services .reveal:nth-child(n+2) { transition-delay: calc((var(--n,0)) * .04s); }
.grid-services .reveal:nth-child(2){ --n:1; }
.grid-services .reveal:nth-child(3){ --n:2; }
.grid-services .reveal:nth-child(4){ --n:3; }
.grid-services .reveal:nth-child(5){ --n:4; }
.grid-services .reveal:nth-child(6){ --n:5; }
.grid-services .reveal:nth-child(7){ --n:6; }
.grid-services .reveal:nth-child(8){ --n:7; }

/* ═══ SECTIONS ═══ */
.section { padding: clamp(4rem, 9vw, 6rem) 0; }
.section--light { background: var(--surface); }

.section__head {
  text-align: center; max-width: 38rem; margin: 0 auto 2.75rem;
}
.kicker {
  font-size: .78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: var(--accent); margin-bottom: .45rem;
}
.section__head h2 {
  font-weight: 800;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  letter-spacing: -.025em; line-height: 1.15;
  margin: 0 0 .65rem; color: var(--primary-dark);
  text-wrap: balance;
}
.section__head > p { margin: 0; color: var(--muted); font-size: .97rem; }

/* ═══ DUO CARDS ═══ */
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media(max-width:768px){ .duo { grid-template-columns: 1fr; } }

.duo__card {
  position: relative; overflow: hidden;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r); padding: 2rem 2rem 1.75rem;
  box-shadow: var(--shadow);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
}
.duo__card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--cyan));
}
.duo__card--worker::before { background: linear-gradient(90deg, var(--accent), var(--accent-soft)); }
.duo__card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(30,58,95,.1); }

.duo__tag {
  display: inline-block; font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em; margin-bottom: .85rem;
}
.duo__tag--blue { color: var(--cyan); }
.duo__tag--orange { color: var(--accent); }

.duo__card h3 { font-size: 1.35rem; font-weight: 800; margin: 0 0 .75rem; color: var(--primary-dark); }

.duo__card ul { margin: 0; padding: 0; list-style: none; }
.duo__card li {
  position: relative; padding-left: 1.35rem; margin-bottom: .55rem;
  color: var(--muted); font-size: .93rem; line-height: 1.55;
}
.duo__card li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 7px; height: 7px; border-radius: 50%; background: var(--green);
}

/* ═══ SERVICES GRID ═══ */
.grid-services { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1rem; }

.svc {
  display: flex; align-items: flex-start; gap: .8rem;
  padding: 1.15rem 1.25rem;
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-sm);
  transition: border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}
.svc:hover { border-color: rgba(255,107,44,.25); transform: translateY(-3px); box-shadow: var(--shadow); }

.svc__icon {
  width: 40px; height: 40px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px; font-size: 1.1rem;
}
.svc__icon--blue   { background: rgba(59,130,246,.12); }
.svc__icon--amber  { background: rgba(245,158,11,.12); }
.svc__icon--green  { background: rgba(16,185,129,.12); }
.svc__icon--violet { background: rgba(139,92,246,.12); }
.svc__icon--cyan   { background: rgba(6,182,212,.12); }
.svc__icon--emerald{ background: rgba(34,197,94,.12); }
.svc__icon--pink   { background: rgba(236,72,153,.12); }
.svc__icon--red    { background: rgba(239,68,68,.12); }

.svc h4 { margin: 0 0 .15rem; font-size: .95rem; color: var(--text); }
.svc p  { margin: 0; font-size: .82rem; color: var(--muted); line-height: 1.45; }

/* ═══ TRUST ═══ */
.trust {
  background: linear-gradient(175deg, var(--primary-dark), var(--primary));
  color: #fff;
}
.trust .kicker { color: var(--accent-soft); }
.trust .section__head h2 { color: #fff; }
.trust .section__head > p { color: rgba(255,255,255,.72); }

.trust__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media(max-width:768px){ .trust__grid { grid-template-columns: 1fr; } }

.trust__card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r); padding: 1.6rem;
  transition: transform .4s var(--ease), border-color .3s, background .3s, box-shadow .3s;
}
.trust__card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,143,94,.32);
  background: rgba(255,255,255,.09);
  box-shadow: 0 16px 48px rgba(0,0,0,.18);
}
.trust__icon { font-size: 1.35rem; margin-bottom: .6rem; }
.trust__card h3 { font-size: 1.05rem; font-weight: 700; margin: 0 0 .5rem; }
.trust__card p { margin: 0; font-size: .9rem; color: rgba(255,255,255,.76); line-height: 1.55; }

/* ═══ STEPS ═══ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
@media(max-width:768px){ .steps { grid-template-columns: 1fr; } }

.steps__item { text-align: center; }

.steps__num {
  width: 50px; height: 50px; margin: 0 auto .9rem;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--primary), var(--primary-light));
  color: #fff; font-weight: 800; font-size: 1.15rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(30,58,95,.22);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.steps__item:hover .steps__num { transform: scale(1.06); box-shadow: 0 12px 28px rgba(30,58,95,.3); }

.steps__item h3 { margin: 0 0 .4rem; font-size: 1.05rem; color: var(--primary-dark); }
.steps__item p { margin: 0; font-size: .9rem; color: var(--muted); }

/* ═══ CTA ═══ */
.cta {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  background: linear-gradient(120deg, var(--accent), var(--accent-soft) 50%, var(--cyan));
  text-align: center;
}
.cta__inner { max-width: 36rem; margin: 0 auto; }
.cta h2 { font-size: clamp(1.4rem, 2.5vw, 2.1rem); color: #fff; margin: 0 0 .5rem; font-weight: 800; }
.cta p { margin: 0 0 1.5rem; color: rgba(255,255,255,.94); font-size: .97rem; }
.cta__actions { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; }

/* ═══ FOOTER ═══ */
.footer {
  background: var(--primary-dark); color: rgba(255,255,255,.7);
  padding: 3rem 0 2rem; font-size: .88rem;
}
.footer a { transition: color .2s; }
.footer a:hover { color: var(--accent-soft); }

.footer__top { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 2rem; margin-bottom: 2.5rem; }
@media(max-width:768px){ .footer__top { grid-template-columns: 1fr; } }

.footer__logo {
  height: 36px; width: auto; margin-bottom: .85rem;
  filter: brightness(0) invert(1); opacity: .92;
  transition: opacity .2s;
}
.footer__brand:hover .footer__logo { opacity: 1; }
.footer__brand p { margin: 0; max-width: 28ch; line-height: 1.55; }

.footer__col h4 {
  color: #fff; font-size: .72rem; text-transform: uppercase;
  letter-spacing: .1em; margin: 0 0 .85rem;
}
.footer__col ul { list-style: none; margin: 0; padding: 0; }
.footer__col li { margin-bottom: .4rem; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 2rem;
  display: grid; grid-template-columns: 1fr auto; gap: 1.5rem; align-items: start;
}
@media(max-width:768px){ .footer__bottom { grid-template-columns: 1fr; } }

.footer__copy { margin: 0; font-size: .82rem; color: rgba(255,255,255,.4); }

.footer__sig { text-align: right; max-width: 22rem; }
@media(max-width:768px){ .footer__sig { text-align: left; max-width: none; } }

.footer__sig-quote {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.05rem; font-style: italic;
  color: rgba(255,255,255,.5);
  margin: 0 0 .75rem; line-height: 1.4;
}
.footer__sig-role {
  font-size: .75rem; text-transform: uppercase; letter-spacing: .04em;
  color: rgba(255,255,255,.4); margin-bottom: .3rem;
}
.footer__sig-name {
  font-weight: 700; font-size: .95rem;
  color: rgba(255,255,255,.88); letter-spacing: -.01em;
}
.footer__sig-links {
  margin-top: .55rem; display: flex; flex-wrap: wrap;
  gap: .6rem 1rem; justify-content: flex-end;
}
@media(max-width:768px){ .footer__sig-links { justify-content: flex-start; } }

.footer__sig-links a {
  font-size: .85rem; color: var(--cyan-soft);
  border-bottom: 1px solid rgba(77,216,240,.3); padding-bottom: 1px;
}
.footer__sig-links a:hover { color: #fff; border-color: rgba(255,255,255,.35); }

/* ═══ REDUCED MOTION ═══ */
@media(prefers-reduced-motion: reduce){
  html { scroll-behavior: auto; }
  .anim-up { animation: none !important; opacity: 1 !important; transform: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .visual__card, .visual__line, .visual__hub, .visual__hub::before,
  .hero__dot, .marquee__track { animation: none !important; }
  .visual__hub { opacity: 1 !important; transform: translate(-50%,-50%) !important; }
  .btn:hover, .duo__card:hover, .svc:hover, .trust__card:hover, .steps__item:hover .steps__num { transform: none !important; }
}

/* ═══ LEGAL PAGES (Privacy/Terms) ═══ */
.legal { padding-top: 5.25rem; }

.legal__hero {
  padding: 3.5rem 0 2.25rem;
  background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary) 55%, #254a73 100%);
  color: #fff;
}
.legal__hero h1 {
  margin: .25rem 0 .75rem;
  font-size: clamp(2rem, 4vw, 2.7rem);
  line-height: 1.1;
  letter-spacing: -.03em;
  font-weight: 800;
}
.legal__lead { margin: 0 0 .85rem; color: rgba(255,255,255,.82); max-width: 52rem; }
.legal__meta { margin: 0; color: rgba(255,255,255,.6); font-size: .92rem; }

.legal__content { max-width: 920px; margin: 0 auto; }
.legal__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: clamp(1.25rem, 2.2vw, 2rem);
  box-shadow: var(--shadow);
}
.legal__card h2 {
  margin: 1.35rem 0 .55rem;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--primary-dark);
}
.legal__card h2:first-child { margin-top: 0; }
.legal__card p { margin: 0 0 .85rem; color: var(--muted); }
.legal__card a { color: var(--primary); border-bottom: 1px solid rgba(30,58,95,.25); }
.legal__card a:hover { border-color: rgba(255,107,44,.5); color: var(--primary-dark); }
.legal__card ul { margin: 0 0 1rem; padding-left: 1.15rem; color: var(--muted); }
.legal__card li { margin: .35rem 0; }
