/* =============================================
   QB Capital — Design System v2
   Style: Trust & Authority · Enterprise Gateway
   Palette: Navy / Teal / Mint corporate
   Typography: Lexend + Source Sans 3 (self-hosted)
   ============================================= */

/* --- Self-hosted fonts (no external requests → no cookie banner needed) --- */
@font-face {
  font-family: 'Lexend';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('assets/fonts/lexend-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02AF,U+0304,U+0308,U+0329,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}
@font-face {
  font-family: 'Lexend';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('assets/fonts/lexend-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('assets/fonts/source-sans-3-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02AF,U+0304,U+0308,U+0329,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('assets/fonts/source-sans-3-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
@font-face {
  font-family: 'Source Sans 3';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/source-sans-3-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}

:root {
  /* Brand colors */
  --navy:       #091C24;
  --navy-2:     #0F2D38;
  --navy-3:     #183344;
  --ink:        #0E2028;
  --teal:       #027A8C;
  --teal-light: #029BAE;
  --seafoam:    #00967F;
  --mint:       #00B890;
  --mint-light: #02D4A8;

  /* Neutrals */
  --ice:        #D8EFF3;
  --ice-2:      #EBF6F8;
  --paper:      #F6FAFB;
  --paper-2:    #EDF5F7;
  --white:      #ffffff;
  --slate:      #496570;
  --slate-light:#6D8F9A;
  --line:       #DDE9EC;

  /* Semantic */
  --cta:        #0099CC;
  --cta-dark:   #0077AA;

  /* Layout */
  --maxw:       1200px;

  /* Typography */
  --head:       'Lexend', system-ui, -apple-system, sans-serif;
  --body:       'Source Sans 3', system-ui, -apple-system, sans-serif;

  /* Radii */
  --r-sm:  8px;
  --r-md:  12px;
  --r-lg:  18px;
  --r-xl:  24px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(9,28,36,.08);
  --shadow-md: 0 8px 28px -8px rgba(9,28,36,.18);
  --shadow-lg: 0 20px 48px -16px rgba(9,28,36,.24);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  font-size: 16px;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3, h4 {
  font-family: var(--head);
  font-weight: 600;
  letter-spacing: -.018em;
  line-height: 1.12;
}

/* =============================================
   LAYOUT
   ============================================= */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 48px;
}

/* =============================================
   ICONS
   ============================================= */
.ic {
  width: 24px; height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
  flex-shrink: 0;
}
.ic--sm { width: 20px; height: 20px; }
.ic--xs { width: 17px; height: 17px; stroke-width: 2.1; }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--head);
  font-weight: 600;
  font-size: 15.5px;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: var(--r-md);
  transition: transform .18s ease, box-shadow .18s ease, background .15s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn--primary {
  background: var(--mint);
  color: var(--navy);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -10px rgba(0,184,144,.55);
}
.btn--ghost {
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.28);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.5);
}

/* =============================================
   EYEBROW
   ============================================= */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--head);
  font-size: 11.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 20px;
}
.eyebrow__line {
  width: 28px;
  height: 1.5px;
  background: currentColor;
  display: inline-block;
  flex-shrink: 0;
}
.eyebrow--light { color: var(--mint-light); }

/* =============================================
   NAV
   ============================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav__logo img { height: 36px; }
.nav__links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav__links a {
  font-family: var(--head);
  color: var(--ice);
  font-size: 14.5px;
  font-weight: 400;
  opacity: .82;
  transition: opacity .15s;
}
.nav__links a:hover { opacity: 1; }
.nav__links a:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 3px;
  border-radius: 4px;
}
.nav__cta {
  background: var(--mint);
  color: var(--navy) !important;
  padding: 9px 20px;
  border-radius: var(--r-sm);
  font-weight: 600 !important;
  opacity: 1 !important;
  transition: transform .15s ease, box-shadow .15s ease !important;
}
.nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px -6px rgba(0,184,144,.5);
}
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 10px;
}
.nav__burger span {
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: .26s;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero__glow--a {
  right: -200px; top: -160px;
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(2,122,140,.32), transparent 68%);
}
.hero__glow--b {
  left: -180px; bottom: -240px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,184,144,.16), transparent 70%);
}
.hero__in {
  position: relative;
  z-index: 2;
  padding: 112px 0 124px;
}
.hero__title {
  font-size: clamp(38px, 5.6vw, 68px);
  max-width: 14ch;
  color: #fff;
  font-weight: 700;
}
.hero__sub {
  margin-top: 28px;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.6;
  color: var(--ice);
  max-width: 58ch;
  font-weight: 400;
}
.hero__actions {
  margin-top: 44px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__stats {
  display: flex;
  gap: 64px;
  margin-top: 72px;
  flex-wrap: wrap;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat__n {
  font-family: var(--head);
  font-size: clamp(26px, 3.6vw, 40px);
  font-weight: 700;
  color: var(--mint);
}
.stat__l {
  font-size: 13.5px;
  color: var(--ice);
  opacity: .82;
  font-weight: 400;
}

/* =============================================
   TRUST BAR
   ============================================= */
.trust {
  background: var(--navy-2);
  color: #fff;
  border-top: 1px solid rgba(255,255,255,.05);
}
.trust__in {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 20px 48px;
  flex-wrap: wrap;
}
.trust__label {
  font-family: var(--head);
  font-size: 12.5px;
  letter-spacing: .06em;
  color: var(--ice);
  opacity: .72;
  white-space: nowrap;
  flex-shrink: 0;
}
.trust__row {
  list-style: none;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-left: auto;
}
.trust__row li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--head);
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  opacity: .88;
}
.trust__row .ic { color: var(--mint); }

/* =============================================
   SECTIONS
   ============================================= */
.section { padding: 96px 0; }
.section--alt { background: var(--paper-2); }
.section--navy {
  background: var(--navy);
  color: #fff;
}

.sec-head { max-width: 720px; margin-bottom: 56px; }
.sec-head__title {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--ink);
}
.sec-head__lead {
  margin-top: 18px;
  font-size: 18px;
  color: var(--slate);
  line-height: 1.6;
}
.sec-head--light .sec-head__title { color: #fff; }
.sec-head--light .sec-head__lead { color: var(--ice); opacity: .88; }

/* =============================================
   CHI SIAMO
   ============================================= */
.about__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.about-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.about-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.about-card__icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  background: var(--ice-2);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.about-card h3 {
  font-size: 19px;
  color: var(--ink);
  margin-bottom: 10px;
}
.about-card p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.6;
}

/* =============================================
   DUE AREE
   ============================================= */
.areas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.area {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 40px 36px;
}
.area__head {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 28px;
}
.area__icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.area__icon .ic { width: 28px; height: 28px; }
.area__icon--teal   { background: var(--teal); }
.area__icon--seafoam { background: var(--seafoam); }
.area__head h3 {
  font-size: 26px;
  color: var(--ink);
  margin-bottom: 4px;
}
.area__sub {
  font-size: 14px;
  color: var(--slate-light);
  font-weight: 400;
}
.ticks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ticks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: var(--ink);
  line-height: 1.4;
}
.tick { color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.area__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 28px;
  font-family: var(--head);
  font-size: 14px;
  font-weight: 600;
  color: var(--teal);
}
.area__link .ic { transition: transform .15s; }
.area__link:hover .ic { transform: translateX(3px); }

/* =============================================
   CARDS (3-column)
   ============================================= */
.cards { display: grid; gap: 20px; }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.cards--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.card__icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 22px;
}
.card__icon--teal    { background: var(--teal); }
.card__icon--seafoam { background: var(--seafoam); }
.card h3 {
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 10px;
}
.card p {
  color: var(--slate);
  font-size: 15px;
  line-height: 1.6;
}

/* Card CTA (accent) */
.card--cta {
  background: linear-gradient(150deg, #f0faf8 0%, #e6f7f4 100%);
  border-color: #c8ece4;
  display: flex;
  flex-direction: column;
}
.card__label {
  font-family: var(--head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--seafoam);
  margin-bottom: 14px;
}
.card__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  padding-top: 18px;
  font-family: var(--head);
  font-weight: 600;
  font-size: 14px;
  color: var(--teal);
}
.card__link .ic { transition: transform .15s; }
.card__link:hover .ic { transform: translateX(3px); }

/* Wide card (2-col Cloud Ops) */
.card--wide { display: flex; flex-direction: column; gap: 14px; }
.card__wide-head {
  display: flex;
  align-items: center;
  gap: 16px;
}
.card__wide-tag {
  font-size: 12px;
  color: var(--slate-light);
  font-weight: 400;
  margin-top: 2px;
  letter-spacing: .04em;
}

/* =============================================
   STACK (dark)
   ============================================= */
.stack { background: var(--navy); color: #fff; }
.stack__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--navy-2);
  border: 1px solid rgba(2,122,140,.35);
  border-radius: var(--r-lg);
  padding: 32px 16px;
  text-align: center;
  transition: border-color .18s, transform .18s, background .18s;
  cursor: default;
}
.chip:hover {
  border-color: var(--mint);
  background: var(--navy-3);
  transform: translateY(-3px);
}
.chip .ic { width: 32px; height: 32px; color: var(--mint); }
.chip span {
  font-family: var(--head);
  font-size: 15px;
  font-weight: 500;
  color: #fff;
}

/* =============================================
   PERCHÉ NOI
   ============================================= */
.reasons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.reason {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.reason:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.reason__icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: var(--ice-2);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.reason h3 {
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 7px;
}
.reason p {
  font-size: 14.5px;
  color: var(--slate);
  line-height: 1.6;
}

/* =============================================
   METODO / STEPS (dark section)
   ============================================= */
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step {
  position: relative;
  background: var(--navy-2);
  border: 1px solid rgba(2,122,140,.28);
  border-radius: var(--r-lg);
  padding: 32px 26px;
}
.step__n {
  font-family: var(--head);
  font-size: 42px;
  font-weight: 700;
  color: rgba(255,255,255,.1);
  display: block;
  line-height: 1;
}
.step__icon {
  position: absolute;
  top: 28px;
  right: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step__icon--alt { background: var(--seafoam); }
.step h3 {
  font-size: 22px;
  color: #fff;
  margin: 20px 0 8px;
}
.step p { font-size: 14.5px; color: var(--ice); opacity: .82; line-height: 1.55; }

/* =============================================
   CASI REALI
   ============================================= */
.cases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.case {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.case:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.case__head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.case__head > div { display: flex; flex-direction: column; gap: 8px; }
.case__icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.case__icon--teal    { background: var(--teal); }
.case__icon--seafoam { background: var(--seafoam); }
.case__icon--mint    { background: var(--mint); color: var(--navy); }
.case h3 {
  font-size: 18px;
  color: var(--ink);
  line-height: 1.25;
}

.tag {
  display: inline-block;
  font-family: var(--head);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .06em;
  padding: 5px 12px;
  border-radius: 999px;
}
.tag--teal    { background: rgba(2,122,140,.12); color: #016678; }
.tag--seafoam { background: rgba(0,150,127,.12); color: #006B57; }
.tag--mint    { background: rgba(0,184,144,.12); color: #007A5E; }

/* Case ticks */
.case .ticks { margin-top: 4px; }
.case .ticks li { font-size: 14.5px; color: var(--slate); }
.tick--teal    { color: var(--teal); }
.tick--seafoam { color: var(--seafoam); }
.tick--mint    { color: var(--mint); }

/* =============================================
   CTA
   ============================================= */
.cta {
  position: relative;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}
.cta__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.cta__glow--a {
  right: -140px; top: -160px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(0,184,144,.18), transparent 68%);
}
.cta__glow--b {
  left: -180px; bottom: -180px;
  width: 440px; height: 440px;
  background: radial-gradient(circle, rgba(2,122,140,.20), transparent 70%);
}
.cta__in {
  position: relative;
  z-index: 2;
  padding: 96px 0;
  max-width: 800px;
}
.cta__title {
  font-size: clamp(30px, 4.4vw, 50px);
  color: #fff;
  max-width: 18ch;
}
.cta__sub {
  margin-top: 20px;
  font-size: 18.5px;
  color: var(--ice);
  line-height: 1.6;
  max-width: 58ch;
}
.cta__actions { margin-top: 40px; }

/* =============================================
   FOOTER
   ============================================= */
.footer { background: var(--ink); color: var(--ice); }
.footer__in {
  display: flex;
  gap: 64px;
  justify-content: space-between;
  padding: 72px 48px 48px;
  flex-wrap: wrap;
}
.footer__brand { max-width: 300px; }
.footer__brand img { height: 38px; margin-bottom: 18px; }
.footer__brand p { font-size: 14.5px; color: var(--ice); opacity: .72; line-height: 1.6; }

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__nav strong {
  font-family: var(--head);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ice);
  opacity: .5;
  margin-bottom: 4px;
}
.footer__nav a {
  font-size: 14.5px;
  color: var(--ice);
  opacity: .8;
  transition: opacity .15s, color .15s;
}
.footer__nav a:hover { opacity: 1; color: var(--mint); }

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__contact strong {
  font-family: var(--head);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ice);
  opacity: .5;
}
.footer__contact a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  transition: color .15s;
}
.footer__contact a:hover { color: var(--mint); }

.footer__bar {
  display: flex;
  justify-content: space-between;
  padding: 22px 48px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-family: var(--head);
  font-size: 13px;
  color: var(--ice);
  opacity: .55;
  flex-wrap: wrap;
  gap: 8px;
}

/* =============================================
   REVEAL ANIMATION
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* =============================================
   FOCUS STYLES (accessibility)
   ============================================= */
:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  .about__grid     { grid-template-columns: repeat(2, 1fr); }
  .cards--3        { grid-template-columns: 1fr 1fr; }
  .cards--2        { grid-template-columns: 1fr; }
  .stack__grid     { grid-template-columns: repeat(4, 1fr); }
  .steps           { grid-template-columns: 1fr 1fr; }
  .cases           { grid-template-columns: 1fr 1fr; }
  .reasons         { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .wrap  { padding: 0 22px; }
  .trust__in { flex-direction: column; align-items: flex-start; gap: 14px; }
  .trust__row { margin-left: 0; gap: 18px; }

  /* Nav mobile */
  .nav__links {
    position: fixed;
    inset: 72px 0 auto 0;
    background: var(--navy);
    flex-direction: column;
    gap: 0;
    padding: 8px 22px 28px;
    border-top: 1px solid rgba(255,255,255,.08);
    transform: translateY(-120%);
    transition: transform .3s ease;
    align-items: stretch;
    box-shadow: 0 12px 32px rgba(0,0,0,.3);
  }
  .nav__links.open { transform: none; }
  .nav__links a {
    padding: 14px 4px;
    font-size: 16px;
    border-bottom: 1px solid rgba(255,255,255,.07);
  }
  .nav__cta {
    text-align: center;
    margin-top: 14px;
    border-bottom: 0 !important;
  }
  .nav__burger { display: flex; }

  /* Sections */
  .hero__in   { padding: 80px 0 96px; }
  .about__grid { grid-template-columns: 1fr; }
  .areas       { grid-template-columns: 1fr; }
  .cards--3    { grid-template-columns: 1fr; }
  .cards--2    { grid-template-columns: 1fr; }
  .stack__grid { grid-template-columns: 1fr 1fr; }
  .reasons     { grid-template-columns: 1fr; }
  .steps       { grid-template-columns: 1fr; }
  .cases       { grid-template-columns: 1fr; }
  .footer__in  { flex-direction: column; gap: 36px; padding: 48px 22px 36px; }
  .footer__bar { padding: 18px 22px; }
  .hero__stats { gap: 36px; padding-top: 36px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html    { scroll-behavior: auto; }
  .btn, .card, .about-card, .reason, .chip, .case, .area { transition: none; }
}
