/* ============================================================
   QADAM Transformation Group — style.css v2
   Font: Outfit | Theme: Dark hero → Light body → Dark footer
   Radius scale: --r-sm 8px, --r 12px, --r-pill 999px
   Accent: --gold only
   ============================================================ */

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

:root {
  --font:       'Outfit', system-ui, -apple-system, sans-serif;

  /* Page palette — light */
  --page:       #f4f6fb;
  --surface:    #ffffff;
  --surface-2:  #eef0f7;
  --border:     #dde1ed;

  /* Brand */
  --navy:       #0d1b3e;
  --navy-2:     #152245;
  --navy-3:     #1c2d57;
  --gold:       #b8922a;
  --gold-h:     #d4a93c;

  /* Text */
  --tx-1:       #0d1420;
  --tx-2:       #4b5675;
  --tx-3:       #8592b0;

  /* Spacing */
  --sec-py:     100px;
  --max-w:      1120px;

  /* Radius — ONE scale, documented */
  --r-sm:       8px;   /* inputs, small elements */
  --r:          12px;  /* cards */
  --r-pill:     999px; /* badges, pills */

  /* Shadow — tinted to navy */
  --sh-sm:      0 1px 4px rgba(13,27,62,.06);
  --sh:         0 4px 20px rgba(13,27,62,.09);
  --sh-lg:      0 12px 48px rgba(13,27,62,.14);

  /* Transition */
  --t:          220ms cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--tx-1);
  background: var(--page);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }

/* ── Layout helpers ───────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

.section { padding: var(--sec-py) 0; }

.sec-head {
  max-width: 640px;
  margin: 0 auto 60px;
  text-align: center;
}

.sec-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--navy);
  margin-bottom: 14px;
}

.sec-sub {
  font-size: 17px;
  color: var(--tx-2);
  line-height: 1.65;
  max-width: 560px;
}

.sec-sub.center,
.sec-title.center { text-align: center; margin-left: auto; margin-right: auto; }

/* Eyebrow — used MAX 1 time (solutions section) */
.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--r-sm);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  border: 2px solid transparent;
  transition: transform var(--t), box-shadow var(--t), background var(--t), border-color var(--t), color var(--t);
  cursor: pointer;
}
.btn:active { transform: translateY(1px) scale(.99); }

.btn--gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-h);
  border-color: var(--gold-h);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184,146,42,.35);
}

.btn--ghost {
  background: transparent;
  color: rgba(255,255,255,.9);
  border-color: rgba(255,255,255,.35);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.7);
  transform: translateY(-2px);
}

.btn--navy {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.btn--navy:hover {
  background: var(--navy-3);
  border-color: var(--navy-3);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13,27,62,.28);
}

.btn--full { width: 100%; }
.btn--lg   { padding: 16px 36px; font-size: 16px; }

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 68px;
  background: rgba(13,27,62,.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background var(--t), border-color var(--t), box-shadow var(--t);
}

.nav--light {
  background: rgba(244,246,251,.96);
  border-bottom-color: var(--border);
  box-shadow: 0 1px 20px rgba(13,27,62,.07);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo {
  color: rgba(255,255,255,.92);
  transition: opacity var(--t);
  flex-shrink: 0;
}
.nav__logo:hover { opacity: .75; }
.nav--light .nav__logo { color: var(--navy); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  transition: color var(--t);
}
.nav__link:hover { color: #fff; }

.nav--light .nav__link { color: var(--tx-2); }
.nav--light .nav__link:hover { color: var(--navy); }

.nav__cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 8px 18px;
  border-radius: var(--r-sm);
  font-weight: 700;
  font-size: 13px;
}
.nav__cta:hover {
  background: var(--gold-h);
  transform: translateY(-1px);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav__burger span {
  display: block;
  width: 22px; height: 2px;
  background: rgba(255,255,255,.85);
  border-radius: 2px;
  transition: var(--t);
}
.nav--light .nav__burger span { background: var(--navy); }
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  min-height: 100dvh;
  display: flex;
  align-items: stretch;
  padding-top: 68px;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 52% 48%;
  width: 100%;
}

.hero__panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px calc((100vw - var(--max-w)) / 2 + 28px);
  color: #fff;
}

@media (min-width: 1200px) {
  .hero__panel { padding-left: calc((100vw - 1120px) / 2 + 28px); }
}

.hero__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(184,146,42,.4);
  padding: 5px 12px;
  border-radius: var(--r-pill);
  margin-bottom: 24px;
  width: fit-content;
}

.hero__h1 {
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.03em;
  color: #fff;
  margin-bottom: 20px;
  max-width: 520px;
}

.hero__sub {
  font-size: 17px;
  color: rgba(255,255,255,.68);
  line-height: 1.65;
  max-width: 440px;
  margin-bottom: 36px;
}

.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__photo {
  position: relative;
  overflow: hidden;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--navy) 0%,
    rgba(13,27,62,.6) 40%,
    rgba(13,27,62,.2) 100%
  );
}

/* ── Trust strip ──────────────────────────────────────────── */
.trust-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust-item {
  font-size: 13px;
  font-weight: 600;
  color: var(--tx-2);
  letter-spacing: .01em;
  padding: 6px 20px;
  position: relative;
}

.trust-item + .trust-item::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 14px;
  background: var(--border);
}

/* ── Solutions bento ──────────────────────────────────────── */
#solutions { background: var(--surface); }

.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

/* Featured card: index 1 (LEADERS) spans 2 cols */
.bento-card:nth-child(3) { grid-column: span 2; }

/* Wide card at row 3: SAFETY (index 6) — keep at 1 col, AI (index 5) gets 2 */
.bento-card:nth-child(6) { grid-column: span 2; }

.bento-card {
  background: var(--page);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 28px;
  cursor: pointer;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
  position: relative;
  overflow: hidden;
}

.bento-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}

.bento-card:hover {
  border-color: var(--navy);
  box-shadow: var(--sh-lg);
  transform: translateY(-3px);
}
.bento-card:hover::after { transform: scaleX(1); }

.bento-card__icon {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
  flex-shrink: 0;
}

/* Wide cards get icon + text side by side */
.bento-card:nth-child(3),
.bento-card:nth-child(6) {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.bento-card:nth-child(3) .bento-card__icon,
.bento-card:nth-child(6) .bento-card__icon {
  margin-bottom: 0;
  width: 52px; height: 52px;
  font-size: 24px;
  flex-shrink: 0;
}

.bento-card__name {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.bento-card__short {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.25;
}

.bento-card__tagline {
  font-size: 14px;
  color: var(--tx-2);
  line-height: 1.5;
  margin-bottom: 18px;
}

.bento-card__more {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
}
.bento-card__more i { font-size: 14px; transition: transform var(--t); }
.bento-card:hover .bento-card__more i { transform: translateX(4px); }

/* Module pills */
.module-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.module-pill {
  font-size: 13px;
  font-weight: 500;
  color: var(--tx-2);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 7px 16px;
  transition: border-color var(--t), color var(--t);
}
.module-pill:hover { border-color: var(--navy); color: var(--navy); }

/* ── Process ──────────────────────────────────────────────── */
.process-section {
  background: var(--page);
  padding: var(--sec-py) 0;
}

.process-section .sec-title,
.process-section .sec-sub {
  margin-bottom: 12px;
}
.process-section .sec-sub { margin-bottom: 56px; }

.process-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

.process-track::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(10% + 14px);
  right: calc(10% + 14px);
  height: 1px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--gold) 100%);
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 0 10px;
  position: relative;
  z-index: 1;
}

.process-step__num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 3px solid var(--page);
  box-shadow: 0 0 0 1.5px var(--navy);
  letter-spacing: .02em;
  transition: background var(--t), box-shadow var(--t);
}

.process-step:last-child .process-step__num {
  background: var(--gold);
  box-shadow: 0 0 0 1.5px var(--gold);
}

.process-step__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.process-step__desc {
  font-size: 13px;
  color: var(--tx-2);
  line-height: 1.55;
}

/* ── Benefits ─────────────────────────────────────────────── */
.benefits-section {
  background: var(--navy);
  padding: var(--sec-py) 0;
}

.benefits-section .sec-title {
  color: #fff;
  text-align: center;
  margin-bottom: 48px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r);
  overflow: hidden;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 24px 28px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  transition: background var(--t);
}
.benefit-item:hover { background: rgba(255,255,255,.08); }

.benefit-item__icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.benefit-item__text {
  font-size: 15px;
  color: rgba(255,255,255,.82);
  line-height: 1.5;
  font-weight: 400;
}

/* ── About ────────────────────────────────────────────────── */
#about { background: var(--surface); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-mission {
  font-size: 16px;
  color: var(--tx-2);
  line-height: 1.75;
  margin-top: 16px;
}

.about-sub {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 18px;
  margin-top: 36px;
}
.about-right .about-sub:first-child { margin-top: 0; }

.approach-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.approach-item {
  padding-left: 16px;
  border-left: 3px solid var(--gold);
}
.approach-item__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}
.approach-item__desc {
  font-size: 14px;
  color: var(--tx-2);
}

.why-list { display: flex; flex-direction: column; gap: 11px; }
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--tx-2);
}
.why-list li i {
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── Events ───────────────────────────────────────────────── */
.events-bg { background: var(--page); }

.event-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 48px;
  max-width: 680px;
  margin: 48px auto 0;
  box-shadow: var(--sh);
  text-align: center;
}

.event-meta {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 20px;
}

.event-meta__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--tx-2);
}
.event-meta__item i { color: var(--gold); font-size: 18px; }

.event-card p {
  font-size: 16px;
  color: var(--tx-2);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ── CTA banner ───────────────────────────────────────────── */
.cta-banner-section {
  background: var(--surface);
  padding: 0 0 var(--sec-py);
}

.cta-card {
  background: var(--navy);
  border-radius: var(--r);
  padding: 56px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,146,42,.18) 0%, transparent 70%);
  pointer-events: none;
}

.cta-card__text h2 {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: 10px;
}

.cta-card__text p {
  font-size: 16px;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
  max-width: 500px;
}

/* ── Contact ──────────────────────────────────────────────── */
#contact { background: var(--page); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 80px;
  align-items: start;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 28px 0 24px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--tx-2);
}

.contact-detail__icon {
  width: 38px; height: 38px;
  border-radius: var(--r-sm);
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
  color: var(--navy);
}

.contact-socials {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  background: var(--navy);
  color: rgba(255,255,255,.85);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: background var(--t), transform var(--t);
}
.social-btn:hover {
  background: var(--navy-3);
  transform: translateY(-2px);
}

/* ── Form ─────────────────────────────────────────────────── */
.form-wrap {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 40px;
  box-shadow: var(--sh);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 11px 14px;
  font-size: 14px;
  font-family: var(--font);
  color: var(--tx-1);
  background: var(--page);
  transition: border-color var(--t), box-shadow var(--t);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(13,27,62,.08);
  background: var(--surface);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-success {
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  color: #2e7d32;
  border-radius: var(--r-sm);
  padding: 14px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  margin-top: 12px;
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,.07);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-logo { color: rgba(255,255,255,.85); }
.footer-logo:hover { opacity: .7; }

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,.45);
}

.footer-nav {
  display: flex;
  gap: 24px;
}
.footer-nav a {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  transition: color var(--t);
}
.footer-nav a:hover { color: rgba(255,255,255,.9); }

/* ── Modal ────────────────────────────────────────────────── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal[hidden] { display: none; }

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,27,62,.6);
  backdrop-filter: blur(4px);
}

.modal__box {
  position: relative;
  background: var(--surface);
  border-radius: var(--r);
  padding: 40px;
  max-width: 540px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  box-shadow: var(--sh-lg);
  z-index: 1;
  animation: modalIn .22s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(.95) translateY(10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.modal__close {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--tx-2);
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t);
}
.modal__close:hover { background: var(--border); }

.modal__icon {
  width: 52px; height: 52px;
  border-radius: var(--r-sm);
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}

.modal__name {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.modal__short {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.02em;
  line-height: 1.2;
  margin-bottom: 6px;
}

.modal__tagline {
  font-size: 15px;
  color: var(--tx-2);
  margin-bottom: 20px;
}

.modal__desc {
  font-size: 15px;
  color: var(--tx-2);
  line-height: 1.7;
  margin-bottom: 24px;
}

.modal__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 10px;
}

.modal__audience {
  font-size: 14px;
  color: var(--tx-2);
  margin-bottom: 20px;
}

.modal__results {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.modal__result {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--tx-2);
}
.modal__result i { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

/* ── Scroll reveal ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s cubic-bezier(0.16, 1, 0.3, 1),
              transform .6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.bento-card  { opacity: 0; transform: translateY(18px); transition: opacity .5s var(--t), transform .5s var(--t), border-color var(--t), box-shadow var(--t); }
.bento-card.is-visible { opacity: 1; transform: translateY(0); }

.process-step { opacity: 0; transform: translateY(16px); transition: opacity .5s var(--t), transform .5s var(--t); }
.process-step.is-visible { opacity: 1; transform: translateY(0); }

.benefit-item { opacity: 0; transform: translateY(12px); transition: opacity .45s var(--t), transform .45s var(--t), background var(--t); }
.benefit-item.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .bento-card, .process-step, .benefit-item {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__panel { padding-left: 40px; padding-right: 40px; }
  .cta-card { flex-direction: column; align-items: flex-start; padding: 40px; }
}

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__photo { height: 300px; }
  .hero__panel { padding: 60px 28px; }
  .process-track { grid-template-columns: 1fr; gap: 32px; }
  .process-track::before { display: none; }
  .process-step { display: flex; align-items: flex-start; gap: 16px; text-align: left; }
  .process-step__num { margin: 0; flex-shrink: 0; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .bento { grid-template-columns: 1fr 1fr; }
  .bento-card:nth-child(3),
  .bento-card:nth-child(6) { grid-column: span 2; }
  .benefits-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  :root { --sec-py: 64px; }
  .nav__links { display: none; flex-direction: column; padding: 16px 0 24px; }
  .nav__links.open {
    display: flex;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(244,246,251,.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(13,27,62,.1);
  }
  .nav--light .nav__links.open { background: rgba(244,246,251,.98); }
  .nav__links.open .nav__link {
    padding: 12px 28px;
    font-size: 16px;
    color: var(--navy) !important;
  }
  .nav__links.open .nav__cta {
    margin: 8px 28px 0;
    text-align: center;
    border-radius: var(--r-sm);
    padding: 12px 28px;
    background: var(--gold);
    color: var(--navy) !important;
  }
  .nav__burger { display: flex; }
  .bento { grid-template-columns: 1fr; }
  .bento-card:nth-child(3),
  .bento-card:nth-child(6) { grid-column: span 1; flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .event-meta { flex-direction: column; align-items: center; gap: 10px; }
  .event-card { padding: 28px 20px; }
  .cta-card { padding: 32px 24px; }
  .form-wrap { padding: 24px 18px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-nav { justify-content: center; }
  .modal__box { padding: 28px 20px; }
  .trust-strip { gap: 4px; }
  .trust-item { padding: 4px 12px; }
}
