/* ============================================================
   Right Concepts Advertising LLC — shared stylesheet
   Palette keyed to brand logo (royal blue + eco green) over
   neutral navy-and-white chrome. Tokens per CLAUDE-DESIGN.md §5.
   ============================================================ */

:root {
  --bg:        #FFFFFF;
  --surface:   #F4F7FA;
  --surface-2: #ECF1F6;
  --text:      #14243A;
  --muted:     #5B6B7E;
  --primary:   #1A56C7;
  --primary-d: #134299;
  --secondary: #14243A;
  --accent:    #2EA84E;
  --accent-d:  #228A40;
  --border:    #D8E0E8;
  --focus:     #1A56C7;
  --whatsapp:  #25D366;

  --maxw: 1200px;
  --r-sm: 8px;
  --r:    14px;
  --r-lg: 22px;

  --sh-sm: 0 1px 2px rgba(20,36,58,.06), 0 1px 3px rgba(20,36,58,.05);
  --sh:    0 4px 14px rgba(20,36,58,.07), 0 2px 6px rgba(20,36,58,.05);
  --sh-lg: 0 18px 50px rgba(20,36,58,.14), 0 6px 18px rgba(20,36,58,.08);

  --ease: cubic-bezier(.22,.61,.36,1);

  --ff-display: "Manrope", system-ui, sans-serif;
  --ff-body: "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 140px; }

body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  color: var(--text);
  margin: 0;
  line-height: 1.08;
  letter-spacing: -.02em;
  text-wrap: balance;
  font-weight: 800;
}

p { margin: 0; text-wrap: pretty; }

a { color: var(--primary); text-decoration: none; }

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-radius: 4px;
}

::selection { background: var(--primary); color: #fff; }

/* ---------- layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.section { padding-block: clamp(56px, 9vw, 120px); }
.section--tight { padding-block: clamp(44px, 6vw, 80px); }
.surface { background: var(--surface); }
.navy { background: var(--secondary); color: #fff; }
.navy h1, .navy h2, .navy h3 { color: #fff; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 18px;
}
.navy .eyebrow { color: #7FB0FF; }
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: currentColor; border-radius: 2px;
}

.section-head { max-width: 760px; margin-bottom: clamp(34px, 5vw, 56px); }
.section-head h2 { font-size: clamp(30px, 4.6vw, 50px); }
.section-head p { color: var(--muted); font-size: clamp(17px, 2vw, 20px); margin-top: 18px; }
.navy .section-head p { color: #B9C6D6; }

.lead { font-size: clamp(18px, 2.3vw, 22px); color: var(--muted); line-height: 1.55; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  padding: 16px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), background .2s var(--ease), box-shadow .25s var(--ease), border-color .2s;
  white-space: nowrap;
  min-height: 52px;
}
.btn svg { width: 19px; height: 19px; }
.btn--primary { background: var(--primary); color: #fff; box-shadow: 0 6px 18px rgba(26,86,199,.28); }
.btn--primary:hover { background: var(--primary-d); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(26,86,199,.36); }
.btn--wa { background: var(--whatsapp); color: #fff; box-shadow: 0 6px 18px rgba(37,211,102,.3); }
.btn--wa:hover { background: #1fb957; }
.btn--wa:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(37,211,102,.4); }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn--ghost:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.navy .btn--ghost { color: #fff; border-color: rgba(255,255,255,.32); }
.navy .btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); color: #fff; }
.btn--lg { padding: 19px 34px; font-size: 17px; min-height: 60px; }
.btn--block { width: 100%; }

.textlink {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--ff-display); font-weight: 700; color: var(--primary);
  transition: gap .25s var(--ease), color .2s;
}
.textlink svg { width: 17px; height: 17px; transition: transform .25s var(--ease); }
.textlink:hover { color: var(--primary-d); }
.textlink:hover svg { transform: translateX(4px); }

/* ---------- eco / pill badges ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-display); font-weight: 700; font-size: 13px;
  letter-spacing: .02em;
  padding: 8px 14px; border-radius: 999px;
}
.badge--eco { background: rgba(46,168,78,.12); color: var(--accent-d); }
.badge--eco svg { width: 15px; height: 15px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.site-header.is-scrolled { border-bottom-color: var(--border); box-shadow: var(--sh-sm); }
.header-inner { display: flex; align-items: center; gap: 28px; height: 128px; }
.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.brand img { height: 110px; width: auto; }
.nav-desktop { display: flex; align-items: center; gap: 4px; }
.nav-desktop a {
  font-family: var(--ff-display); font-weight: 600; font-size: 15.5px;
  color: var(--text); padding: 10px 15px; border-radius: 999px;
  transition: background .2s, color .2s; position: relative;
}
.nav-desktop a:hover { background: var(--surface); color: var(--primary); }
.nav-desktop a.active { color: var(--primary); }
.nav-desktop a.active::after {
  content: ""; position: absolute; left: 15px; right: 15px; bottom: 3px; height: 2px;
  background: var(--primary); border-radius: 2px;
}
.header-cta { display: flex; align-items: center; gap: 12px; }
.header-cta .btn { padding: 12px 20px; min-height: 46px; font-size: 15px; }

.menu-toggle {
  display: none; width: 48px; height: 48px; border: 1px solid var(--border);
  background: #fff; border-radius: 12px; cursor: pointer; align-items: center; justify-content: center;
}
.menu-toggle svg { width: 24px; height: 24px; color: var(--text); }

/* mobile drawer */
.mobile-nav {
  position: fixed; inset: 0; z-index: 60; display: none;
}
.mobile-nav.open { display: block; }
.mobile-nav__scrim { position: absolute; inset: 0; background: rgba(20,36,58,.45); opacity: 0; transition: opacity .3s; }
.mobile-nav.open .mobile-nav__scrim { opacity: 1; }
.mobile-nav__panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(88vw, 360px);
  background: #fff; padding: 22px; display: flex; flex-direction: column; gap: 6px;
  transform: translateX(100%); transition: transform .35s var(--ease);
  box-shadow: var(--sh-lg);
}
.mobile-nav.open .mobile-nav__panel { transform: translateX(0); }
.mobile-nav__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.mobile-nav__head img { height: 72px; }
.mobile-nav__panel a.mnav {
  font-family: var(--ff-display); font-weight: 700; font-size: 21px; color: var(--text);
  padding: 14px 10px; border-radius: 12px; transition: background .2s, color .2s;
}
.mobile-nav__panel a.mnav:hover, .mobile-nav__panel a.mnav.active { background: var(--surface); color: var(--primary); }
.mobile-nav__cta { margin-top: auto; display: grid; gap: 10px; padding-top: 18px; }
.mclose { width: 46px; height: 46px; border: 1px solid var(--border); background: #fff; border-radius: 12px; display: grid; place-items: center; cursor: pointer; }
.mclose svg { width: 22px; height: 22px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; background: var(--secondary); color: #fff; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 88% 8%, rgba(26,86,199,.42), transparent 56%),
    radial-gradient(90% 80% at 6% 100%, rgba(46,168,78,.22), transparent 60%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px);
  align-items: center; padding-block: clamp(56px, 8vw, 104px);
}
.hero h1 { font-size: clamp(38px, 6vw, 70px); color: #fff; }
.hero h1 .hl { color: #7FB0FF; }
.hero p.lead { color: #C3D0E0; margin-top: 24px; max-width: 33ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero .hero-cta .btn--ghost { color: #fff; border-color: rgba(255,255,255,.72); }
.hero .hero-cta .btn--ghost:hover { color: #fff; border-color: #fff; background: rgba(255,255,255,.08); }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px 30px; margin-top: 40px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,.14); }
.hero-trust div b { display: block; font-family: var(--ff-display); font-size: 30px; font-weight: 800; color: #fff; line-height: 1; }
.hero-trust div span { font-size: 13.5px; color: #9FB0C4; letter-spacing: .01em; }

/* hero mosaic */
.hero-mosaic { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 1fr); gap: 12px; aspect-ratio: 1/1.04; }
.hero-mosaic figure { margin: 0; overflow: hidden; border-radius: var(--r); position: relative; box-shadow: var(--sh-lg); background: #0d1828; }
.hero-mosaic img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.hero-mosaic figure:hover img { transform: scale(1.06); }
.hero-mosaic .m-tall { grid-row: span 2; }
.hero-mosaic .m-wide { grid-column: span 2; }

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; }
.stat { background: var(--bg); padding: 32px 26px; }
.stat b { font-family: var(--ff-display); font-weight: 800; font-size: clamp(34px, 4vw, 46px); color: var(--primary); line-height: 1; letter-spacing: -.03em; display: block; }
.stat span { display: block; margin-top: 12px; font-weight: 600; color: var(--text); font-size: 16px; }
.stat small { display: block; margin-top: 4px; color: var(--muted); font-size: 13px; }

/* ============================================================
   SECTOR TILES
   ============================================================ */
.sector-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.sector {
  position: relative; border-radius: var(--r); overflow: hidden; aspect-ratio: 4/3;
  display: flex; align-items: flex-end; color: #fff; box-shadow: var(--sh);
}
.sector img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.sector::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,16,28,.82) 6%, rgba(8,16,28,.28) 48%, rgba(8,16,28,.05) 100%); }
.sector:hover img { transform: scale(1.07); }
.sector__label { position: relative; z-index: 2; padding: 22px; }
.sector__label h3 { color: #fff; font-size: 22px; }
.sector__label span { font-size: 14px; color: #D5DEE9; }
.sector.is-lg { aspect-ratio: auto; }

/* ============================================================
   PRODUCT / CAPABILITY CARDS
   ============================================================ */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--r);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); border-color: transparent; }
.card__media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--surface-2); cursor: zoom-in; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.card:hover .card__media img { transform: scale(1.06); }
.card__media .zoom-hint { position: absolute; top: 12px; right: 12px; width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.92); display: grid; place-items: center; opacity: 0; transform: translateY(-4px); transition: opacity .25s, transform .25s; box-shadow: var(--sh-sm); }
.card__media .zoom-hint svg { width: 17px; height: 17px; color: var(--text); }
.card:hover .zoom-hint { opacity: 1; transform: translateY(0); }
.card__body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.card__body h3 { font-size: 18px; letter-spacing: -.01em; }
.card__body p { color: var(--muted); font-size: 14.5px; }
.card__foot { margin-top: auto; padding-top: 14px; }

/* category section header (products page) */
.cat-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 26px; padding-bottom: 18px; border-bottom: 1px solid var(--border); }
.cat-head h2 { font-size: clamp(24px, 3.2vw, 34px); }
.cat-head .num { font-family: var(--ff-display); font-weight: 800; color: var(--border); font-size: 15px; letter-spacing: .1em; }
.cat-head p { color: var(--muted); margin-top: 8px; max-width: 56ch; }

/* sticky local nav (products) */
.subnav { position: sticky; top: 128px; z-index: 30; background: rgba(255,255,255,.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.subnav__inner { display: flex; gap: 6px; overflow-x: auto; padding-block: 12px; scrollbar-width: none; }
.subnav__inner::-webkit-scrollbar { display: none; }
.subnav a { flex: 0 0 auto; font-family: var(--ff-display); font-weight: 600; font-size: 14px; color: var(--muted); padding: 9px 15px; border-radius: 999px; border: 1px solid var(--border); white-space: nowrap; transition: all .2s; }
.subnav a:hover, .subnav a.active { background: var(--secondary); color: #fff; border-color: var(--secondary); }

/* ============================================================
   FEATURE / WHY-US
   ============================================================ */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature { padding: 30px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--r); transition: transform .3s var(--ease), box-shadow .3s; }
.feature:hover { transform: translateY(-4px); box-shadow: var(--sh); }
.feature__ic { width: 52px; height: 52px; border-radius: 14px; background: rgba(26,86,199,.1); color: var(--primary); display: grid; place-items: center; margin-bottom: 20px; }
.feature__ic svg { width: 26px; height: 26px; }
.feature.eco .feature__ic { background: rgba(46,168,78,.12); color: var(--accent-d); }
.feature h3 { font-size: 20px; margin-bottom: 10px; }
.feature p { color: var(--muted); font-size: 15.5px; }

/* split content block */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 72px); align-items: center; }
.split__media { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg); position: relative; }
.split__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }

/* ============================================================
   QUOTE CTA BAND
   ============================================================ */
.cta-band { position: relative; overflow: hidden; background: var(--primary); color: #fff; border-radius: var(--r-lg); padding: clamp(40px, 6vw, 72px); }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 120% at 90% 10%, rgba(46,168,78,.35), transparent 55%); }
.cta-band__inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 34px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; font-size: clamp(28px, 4vw, 44px); max-width: 18ch; }
.cta-band p { color: rgba(255,255,255,.85); margin-top: 14px; max-width: 46ch; }
.cta-band .btn--primary { background: #fff; color: var(--primary); box-shadow: 0 8px 24px rgba(0,0,0,.18); }
.cta-band .btn--primary:hover { background: #eef3ff; }
.cta-band .hero-cta { margin-top: 0; }

/* ============================================================
   CONTACT / FORM
   ============================================================ */
.form-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-lg); padding: clamp(26px, 4vw, 40px); box-shadow: var(--sh); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--ff-display); font-weight: 600; font-size: 14px; color: var(--text); }
.field label .req { color: var(--primary); }
.field input, .field select, .field textarea {
  font-family: var(--ff-body); font-size: 16px; color: var(--text);
  padding: 14px 15px; border: 1.5px solid var(--border); border-radius: var(--r-sm);
  background: var(--bg); transition: border-color .2s, box-shadow .2s; width: 100%;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(26,86,199,.14); }
.field .err { color: #c8341f; font-size: 13px; font-weight: 600; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #c8341f; }
.field.invalid .err { display: block; }
.form-note { color: var(--muted); font-size: 13.5px; margin-top: 4px; }
.form-success { display: none; text-align: center; padding: 30px 10px; }
.form-success.show { display: block; }
.form-success .tick { width: 64px; height: 64px; border-radius: 50%; background: rgba(46,168,78,.14); color: var(--accent-d); display: grid; place-items: center; margin: 0 auto 20px; }
.form-success .tick svg { width: 32px; height: 32px; }
.form-success h3 { font-size: 26px; margin-bottom: 12px; }
.form-success p { color: var(--muted); }

.contact-card { display: flex; gap: 16px; padding: 22px; border: 1px solid var(--border); border-radius: var(--r); background: var(--bg); align-items: flex-start; transition: border-color .2s, box-shadow .2s; }
.contact-card:hover { box-shadow: var(--sh-sm); }
.contact-card .ic { flex: 0 0 46px; width: 46px; height: 46px; border-radius: 12px; background: var(--surface); color: var(--primary); display: grid; place-items: center; }
.contact-card .ic svg { width: 22px; height: 22px; }
.contact-card h3 { font-size: 16px; margin-bottom: 4px; }
.contact-card a, .contact-card p { color: var(--muted); font-size: 15px; }
.contact-card a:hover { color: var(--primary); }

.map-placeholder {
  border: 2px dashed var(--border); border-radius: var(--r); background:
    repeating-linear-gradient(45deg, var(--surface), var(--surface) 12px, var(--surface-2) 12px, var(--surface-2) 24px);
  min-height: 300px; display: grid; place-items: center; text-align: center; padding: 30px;
}
.map-placeholder .inner { background: rgba(255,255,255,.86); padding: 18px 24px; border-radius: 12px; }
.map-placeholder b { font-family: var(--ff-display); display: block; color: var(--text); font-size: 18px; }
.map-placeholder span { color: var(--muted); font-size: 14px; font-family: ui-monospace, monospace; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--secondary); color: #C3D0E0; padding-block: clamp(48px, 6vw, 72px) 30px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-brand img { height: 140px; width: auto; margin-bottom: 14px; filter: brightness(0) invert(1); opacity: .96; }
.footer-brand p { color: #93A4B8; font-size: 15px; max-width: 32ch; }
.footer-col h4 { color: #fff; font-size: 14px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; font-weight: 700; }
.footer-col a, .footer-col p { color: #B9C6D6; font-size: 15px; display: block; padding: 5px 0; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.08); display: grid; place-items: center; transition: background .2s, transform .2s, color .2s; padding: 0; color: #C6D2E0; }
.footer-social a:hover { background: rgba(255,255,255,.18); transform: translateY(-2px); color: #fff; }
.footer-social svg { width: 20px; height: 20px; fill: currentColor; }
.footer-bottom { margin-top: 44px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13.5px; color: #8499AE; }

/* ============================================================
   MOBILE STICKY ACTION BAR
   ============================================================ */
.action-bar { display: none; }
@media (max-width: 860px) {
  .action-bar {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 45;
    display: grid; grid-template-columns: repeat(3, 1fr);
    background: rgba(255,255,255,.96); backdrop-filter: blur(12px);
    border-top: 1px solid var(--border); box-shadow: 0 -4px 18px rgba(20,36,58,.08);
    padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
  }
  .action-bar a {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
    font-family: var(--ff-display); font-weight: 700; font-size: 12px; color: var(--text);
    padding: 8px 4px; border-radius: 12px; min-height: 52px;
  }
  .action-bar a svg { width: 22px; height: 22px; }
  .action-bar a.wa { color: var(--accent-d); }
  .action-bar a.call { color: var(--primary); }
  body { padding-bottom: 72px; }
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox { position: fixed; inset: 0; z-index: 80; display: none; align-items: center; justify-content: center; background: rgba(8,14,24,.92); padding: 24px; opacity: 0; transition: opacity .3s; }
.lightbox.open { display: flex; opacity: 1; }
.lightbox img { max-width: 92vw; max-height: 84vh; border-radius: 10px; box-shadow: var(--sh-lg); }
.lightbox__cap { position: absolute; bottom: 24px; left: 0; right: 0; text-align: center; color: #fff; font-family: var(--ff-display); font-weight: 600; font-size: 15px; }
.lightbox__close { position: absolute; top: 20px; right: 20px; width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.14); border: none; color: #fff; cursor: pointer; display: grid; place-items: center; }
.lightbox__close:hover { background: rgba(255,255,255,.26); }
.lightbox__close svg { width: 24px; height: 24px; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
  .reveal.in { opacity: 1; transform: none; }
  .reveal.d1 { transition-delay: .08s; }
  .reveal.d2 { transition-delay: .16s; }
  .reveal.d3 { transition-delay: .24s; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .cards { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 960px) {
  .nav-desktop, .header-cta { display: none; }
  .menu-toggle { display: inline-flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-mosaic { max-width: 520px; }
  .split { grid-template-columns: 1fr; }
  .split--rev .split__media { order: -1; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  body { font-size: 16px; }
  .sector-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .cards, .cards--3 { grid-template-columns: 1fr 1fr; }
  .header-inner { height: 96px; }
  .brand img { height: 76px; }
  html { scroll-padding-top: 100px; }
  .subnav { top: 96px; }
}
@media (max-width: 480px) {
  .container { padding-inline: 18px; }
  .feature-grid { grid-template-columns: 1fr; }
  .hero-trust div b { font-size: 26px; }
  .hero-cta .btn { width: 100%; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
  .cta-band .hero-cta { width: 100%; }
  .cta-band .hero-cta .btn { flex: 1; }
}
@media (max-width: 400px) {
  .cards, .cards--3, .sector-grid { grid-template-columns: 1fr; }
}
