/* ═══════════════════════════════════════════════
   IMPRESE · Full Site Styles
   Navy + Gold · Cormorant + DM Sans
   ═══════════════════════════════════════════════ */

:root {
  --navy:       #1A2332;
  --navy-deep:  #0F1620;
  --navy-light: #2A3A52;
  --gold:       #BA9B5F;
  --gold-light: #D4BE8A;
  --gold-dim:   #967A42;
  --warm:       #F8F7F4;
  --warm-2:     #F0EEE9;
  --border:     #DDD9D0;
  --text:       #1A2332;
  --muted:      #5A6577;
  --light-text: #8A93A3;
  --white:      #FFFFFF;
  --green:      #2D8A4E;
  --green-bg:   #E8F5EE;
  --font-d: 'Cormorant Garamond', Georgia, serif;
  --font-b: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
  --shadow-sm: 0 2px 8px rgba(26,35,50,.06);
  --shadow-md: 0 4px 20px rgba(26,35,50,.09);
  --shadow-lg: 0 12px 48px rgba(26,35,50,.14);
  --r-sm: 4px; --r-md: 8px; --r-lg: 14px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 72px; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-b); color: var(--text); background: var(--white); }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 3px; }

.container { max-width: 1100px; margin-inline: auto; padding-inline: 1.5rem; }

/* ── NAV ─────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(15,22,32,.96);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.2); }
.nav-inner {
  max-width: 1100px; margin-inline: auto;
  padding: .6rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo-img { height: 54px; width: auto; border-radius: 3px; }
.nav-links { display: none; align-items: center; gap: 2rem; }
@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-burger { display: none !important; }
}
.nav-link {
  font-size: .85rem; color: rgba(255,255,255,.7);
  text-decoration: none; letter-spacing: .02em;
  transition: color .2s;
}
.nav-link:hover, .nav-link:focus-visible { color: var(--white); }
.nav-link-gold { color: var(--gold-light) !important; }
.nav-cta {
  background: var(--gold); color: var(--navy-deep);
  padding: .45rem 1.1rem; border-radius: var(--r-sm);
  font-size: .85rem; font-weight: 700;
  text-decoration: none; letter-spacing: .02em;
  transition: background .2s, transform .15s;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }
.nav-burger {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: .35rem;
}
.nav-burger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.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); }

/* Nav Drawer */
.nav-drawer {
  position: fixed; inset: 0; z-index: 90;
  background: var(--navy-deep);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.nav-drawer.open { opacity: 1; pointer-events: auto; }
.nav-drawer nav { display: flex; flex-direction: column; align-items: center; gap: 2rem; }
.drawer-link {
  font-family: var(--font-d); font-size: 2rem; font-weight: 400;
  color: var(--white); text-decoration: none;
  transition: color .2s;
}
.drawer-link:hover { color: var(--gold-light); }
.drawer-link-gold { color: var(--gold-light); }
.drawer-cta {
  background: var(--gold); color: var(--navy-deep);
  padding: .7rem 2rem; border-radius: var(--r-sm);
  font-family: var(--font-b); font-size: .9rem; font-weight: 700;
  text-decoration: none; letter-spacing: .04em; text-transform: uppercase;
}

/* ── SECTION WRAPPERS ────────────────────────── */
.section { padding: clamp(4rem, 8vw, 7rem) 0; background: var(--white); }
.section-dark { padding: clamp(4rem, 8vw, 7rem) 0; background: var(--navy); }
.section-warm { padding: clamp(4rem, 8vw, 7rem) 0; background: var(--warm); }

/* ── TYPOGRAPHY HELPERS ──────────────────────── */
.eyebrow {
  font-size: .72rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold);
}
.section-eyebrow {
  font-size: .72rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold-dim);
  margin-bottom: .75rem;
}
.section-eyebrow.light { color: var(--gold); }
.section-title {
  font-family: var(--font-d); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400; line-height: 1.15; margin-bottom: 1rem;
}
.section-title em { font-style: italic; color: var(--gold-dim); }
.section-title.light { color: var(--white); }
.section-title.light em { color: var(--gold-light); }
.section-sub {
  font-size: 1.05rem; color: var(--muted); max-width: 52ch;
  line-height: 1.7; margin-bottom: 2.5rem;
}

/* ── BUTTONS ─────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  padding: .85rem 1.75rem; background: var(--gold); color: var(--navy-deep);
  font-size: .9rem; font-weight: 700; border: none; border-radius: var(--r-sm);
  cursor: pointer; text-decoration: none; white-space: nowrap; min-height: 50px;
  transition: background .2s, transform .15s, box-shadow .2s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(186,155,95,.3); }
.btn-primary:disabled { opacity: .55; cursor: not-allowed; transform: none; }
.btn-full { width: 100%; margin-top: 1.25rem; }
.btn-outline {
  display: inline-flex; align-items: center;
  padding: .85rem 1.75rem;
  background: transparent; color: var(--white);
  font-size: .9rem; font-weight: 600;
  border: 1.5px solid rgba(255,255,255,.4);
  border-radius: var(--r-sm); cursor: pointer; text-decoration: none;
  min-height: 50px;
  transition: border-color .2s, color .2s;
}
.btn-outline:hover { border-color: var(--gold-light); color: var(--gold-light); }
.btn-outline-dark {
  display: inline-flex; align-items: center;
  padding: .75rem 1.5rem; background: transparent;
  color: var(--navy); font-size: .9rem; font-weight: 600;
  border: 1.5px solid var(--border); border-radius: var(--r-sm);
  cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: border-color .2s, color .2s;
}
.btn-outline-dark:hover { border-color: var(--navy); }
.btn-text {
  background: none; border: none; cursor: pointer;
  font-size: .82rem; color: var(--light-text);
  text-decoration: underline; text-underline-offset: 3px; padding: 0;
  display: inline-block;
}
.btn-text:hover { color: var(--muted); }

/* ── HERO ─────────────────────────────────────── */
.hero {
  position: relative; min-height: 100dvh;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,22,32,.9) 0%, rgba(26,35,50,.75) 50%, rgba(15,22,32,.65) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 1100px; margin-inline: auto; width: 100%;
  padding: calc(5rem + 72px) 1.5rem 4rem;
  color: var(--white);
}
.hero-title {
  font-family: var(--font-d); font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  font-weight: 400; line-height: 1.1; margin: .75rem 0 1rem;
  max-width: 16ch;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,.72); max-width: 50ch; line-height: 1.7; margin-bottom: 2rem; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-stats {
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.12);
}
.hero-stat { display: flex; flex-direction: column; gap: .2rem; }
.stat-num { font-family: var(--font-d); font-size: 1.8rem; font-weight: 500; color: var(--gold-light); line-height: 1; }
.stat-label { font-size: .72rem; color: rgba(255,255,255,.5); letter-spacing: .06em; text-transform: uppercase; }
.hero-stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,.15); }

/* ── ABOUT ───────────────────────────────────── */
.about-layout {
  display: grid; grid-template-columns: 1fr;
  gap: 3rem; align-items: start;
}
@media (min-width: 768px) {
  .about-layout { grid-template-columns: 280px 1fr; gap: 4rem; }
}
.about-photo-wrap {
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-photo-wrap img { width: 100%; height: auto; display: block; }
.about-photo-caption {
  margin-top: 1rem; padding: .9rem 1rem;
  background: var(--warm); border-radius: var(--r-md);
  display: flex; flex-direction: column; gap: .25rem;
}
.about-photo-caption strong { font-size: .95rem; font-weight: 700; color: var(--text); }
.about-photo-caption span { font-size: .78rem; color: var(--muted); }
.linkedin-link {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .78rem; font-weight: 600; color: var(--gold-dim);
  text-decoration: none; margin-top: .25rem;
  transition: color .2s;
}
.linkedin-link:hover { color: var(--gold); }
.about-body { font-size: 1rem; color: var(--muted); line-height: 1.75; margin-bottom: 1rem; }
.about-badges { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 1.5rem; }
.badge {
  display: flex; align-items: center; gap: .5rem;
  font-size: .78rem; font-weight: 600; color: var(--text);
  background: var(--warm); border: 1px solid var(--border);
  padding: .4rem .9rem; border-radius: 100px;
}

/* ── SERVICES ────────────────────────────────── */
.services-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 1.5rem; margin-top: 2.5rem;
}
@media (min-width: 768px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}
.service-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg); padding: 2rem;
  transition: transform .3s, border-color .3s;
}
.service-card:hover { transform: translateY(-3px); border-color: rgba(255,255,255,.2); }
.service-card-gold {
  background: rgba(186,155,95,.08);
  border-color: rgba(186,155,95,.25);
}
.service-card-gold:hover { border-color: rgba(186,155,95,.5); }
.service-icon {
  width: 52px; height: 52px; border-radius: var(--r-md);
  background: rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); margin-bottom: 1.25rem;
}
.service-icon-gold { background: rgba(186,155,95,.15); color: var(--gold); }
.service-title { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: .6rem; }
.service-desc { font-size: .88rem; color: rgba(255,255,255,.6); line-height: 1.65; margin-bottom: 1rem; }
.service-list { list-style: none; display: flex; flex-direction: column; gap: .4rem; }
.service-list li { font-size: .82rem; color: rgba(255,255,255,.5); padding-left: 1rem; position: relative; }
.service-list li::before { content: '—'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.service-cta {
  display: inline-block; margin-top: 1.25rem;
  font-size: .85rem; font-weight: 700; color: var(--gold);
  text-decoration: none;
  transition: color .2s;
}
.service-cta:hover { color: var(--gold-light); }

/* ── PORTFOLIO ───────────────────────────────── */
.portfolio-filters {
  display: flex; gap: .5rem; flex-wrap: wrap;
  margin-bottom: 2rem; margin-top: 2rem;
}
.filter-btn {
  padding: .4rem 1rem; border-radius: 100px;
  background: var(--warm-2); border: 1.5px solid var(--border);
  font-size: .82rem; font-weight: 600; color: var(--muted);
  cursor: pointer; transition: all .2s;
}
.filter-btn:hover { border-color: var(--gold-dim); color: var(--text); }
.filter-btn.active {
  background: var(--navy); border-color: var(--navy);
  color: var(--white);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
}
@media (min-width: 640px) { .portfolio-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .portfolio-grid { grid-template-columns: repeat(4, 1fr); } }
.portfolio-item { border-radius: var(--r-md); overflow: hidden; cursor: pointer; }
.portfolio-item.hidden { display: none; }
.portfolio-img-wrap {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
}
.portfolio-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s cubic-bezier(.16,1,.3,1);
}
.portfolio-item:hover img { transform: scale(1.06); }
.portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,22,32,.8) 0%, transparent 50%);
  display: flex; align-items: flex-end; padding: .75rem;
  opacity: 0; transition: opacity .3s;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay span {
  font-size: .72rem; font-weight: 600; color: var(--white);
  letter-spacing: .06em; text-transform: uppercase;
}
/* Case study bar */
.case-study-bar {
  margin-top: 2.5rem; padding: 1.75rem 2rem;
  background: var(--warm); border: 1px solid var(--border);
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
}
.case-study-eyebrow { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-dim); margin-bottom: .35rem; }
.case-study-title { font-family: var(--font-d); font-size: 1.3rem; font-weight: 500; color: var(--text); margin-bottom: .4rem; }
.case-study-desc { font-size: .85rem; color: var(--muted); line-height: 1.5; max-width: 56ch; }

/* ── FUTURE MOVE SECTION ─────────────────────── */
.fm-layout {
  display: grid; grid-template-columns: 1fr;
  gap: 3rem; align-items: center;
}
@media (min-width: 768px) { .fm-layout { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.fm-body { font-size: 1rem; color: rgba(255,255,255,.68); line-height: 1.75; margin-bottom: 1.5rem; }
.fm-list { list-style: none; display: flex; flex-direction: column; gap: .7rem; margin-bottom: 2rem; }
.fm-list li { display: flex; align-items: center; gap: .7rem; font-size: .92rem; color: rgba(255,255,255,.82); }
.fm-list svg { color: var(--gold); flex-shrink: 0; }
.mockup-card {
  background: var(--navy-light); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg); overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.mockup-dots {
  display: flex; gap: 6px; padding: .7rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.mockup-dots span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.12); }
.mockup-dots span:nth-child(1) { background: rgba(255,100,100,.4); }
.mockup-dots span:nth-child(2) { background: rgba(255,200,50,.4); }
.mockup-dots span:nth-child(3) { background: rgba(100,200,100,.4); }
.mockup-body { padding: 1.25rem; }
.mockup-row { display: flex; justify-content: space-between; align-items: center; padding: .65rem 0; }
.mockup-label { font-size: .7rem; text-transform: uppercase; letter-spacing: .07em; color: rgba(255,255,255,.4); }
.mockup-value { font-size: .9rem; font-weight: 700; color: var(--white); font-variant-numeric: tabular-nums; }
.mockup-green { color: #5cb87a; }
.mockup-badge {
  font-size: .7rem; padding: 3px 10px; border-radius: 100px;
  background: rgba(186,155,95,.15); color: var(--gold-light);
  border: 1px solid rgba(186,155,95,.3);
}
.mockup-divider { height: 1px; background: rgba(255,255,255,.06); }
.mockup-chart { margin-top: 1rem; }
.mockup-chart svg { width: 100%; height: 48px; }
.mockup-chart-label { font-size: .65rem; color: rgba(255,255,255,.3); display: block; margin-top: .25rem; }

/* ── TESTIMONIAL ─────────────────────────────── */
.testimonial-inner {
  max-width: 680px; margin-inline: auto; text-align: center;
}
.quote-mark {
  font-family: var(--font-d); font-size: clamp(5rem, 8vw, 8rem);
  color: var(--gold-light); line-height: .5; opacity: .5; margin-bottom: .75rem;
}
.quote-text {
  font-family: var(--font-d); font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-style: italic; font-weight: 400; line-height: 1.5;
  color: var(--text); margin-bottom: 1.25rem;
}
.quote-author { font-size: .85rem; color: var(--muted); letter-spacing: .04em; }

/* ── INTAKE SECTION ──────────────────────────── */
.intake .container > .section-eyebrow,
.intake .container > .section-title,
.intake .container > .section-sub {
  text-align: center; margin-inline: auto;
}
.intake .section-title em { color: var(--gold-dim); }
.intent-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; max-width: 700px; margin-inline: auto;
  margin-bottom: 2rem;
}
@media (max-width: 520px) { .intent-grid { grid-template-columns: 1fr; } }
.intent-card {
  position: relative; text-align: left;
  background: var(--white); border: 2px solid var(--border);
  border-radius: var(--r-lg); padding: 1.5rem;
  cursor: pointer; transition: border-color .25s, box-shadow .25s, transform .2s;
  -webkit-appearance: none; appearance: none;
}
.intent-card:hover { border-color: var(--gold-dim); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.intent-card.selected { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(186,155,95,.12); }
.intent-card-navy { background: var(--navy); border-color: var(--navy-light); }
.intent-card-navy strong, .intent-card-navy span { color: var(--white) !important; }
.intent-card-navy .intent-icon { color: var(--gold) !important; }
.intent-card-navy:hover { border-color: var(--gold); }
.intent-card-navy.selected { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(186,155,95,.18); }
.intent-check {
  position: absolute; top: 1rem; right: 1rem;
  width: 20px; height: 20px; border-radius: 50%;
  border: 2px solid var(--border); background: transparent;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s;
}
.intent-card.selected .intent-check { background: var(--gold); border-color: var(--gold); }
.intent-check svg { display: none; }
.intent-card.selected .intent-check svg { display: block; }
.intent-icon { color: var(--gold-dim); margin-bottom: .75rem; }
.intent-card strong { display: block; font-size: .95rem; font-weight: 700; color: var(--text); margin-bottom: .3rem; }
.intent-card span { font-size: .82rem; color: var(--muted); line-height: 1.4; }

/* ── FORM PANELS ─────────────────────────────── */
.form-panel {
  max-width: 700px; margin-inline: auto;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-md); display: none;
  animation: slideUp .4s cubic-bezier(.16,1,.3,1);
}
.form-panel.visible { display: block; }
.form-panel-navy { background: var(--white); }
@keyframes slideUp { from { opacity:0; transform:translateY(14px); } to { opacity:1; transform:translateY(0); } }

.panel-hd { padding: 1.75rem 2rem 1.5rem; border-bottom: 1px solid var(--border); background: var(--warm); }
.panel-hd-navy { background: var(--navy); border-bottom-color: rgba(255,255,255,.08); }
.panel-hd-navy .panel-eyebrow { color: var(--gold); }
.panel-hd-navy .panel-title { color: var(--white); }
.panel-hd-navy .panel-sub { color: rgba(255,255,255,.6); }
.panel-eyebrow { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-dim); margin-bottom: .4rem; }
.panel-title { font-family: var(--font-d); font-size: 1.5rem; font-weight: 500; color: var(--text); margin-bottom: .3rem; }
.panel-sub { font-size: .88rem; color: var(--muted); line-height: 1.5; }
.panel-bd { padding: 1.75rem 2rem 2rem; }
@media (max-width: 560px) {
  .panel-hd { padding: 1.25rem 1.25rem 1rem; }
  .panel-bd { padding: 1.25rem 1.25rem 1.5rem; }
}

/* Form fields */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 540px) { .form-grid { grid-template-columns: 1fr; } }
.fg { display: flex; flex-direction: column; gap: .35rem; }
.fg.full { grid-column: 1 / -1; }
.fl { font-size: .8rem; font-weight: 600; color: var(--text); }
.req { color: var(--gold); }
.fi {
  width: 100%; padding: .7rem .9rem;
  border: 1.5px solid var(--border); border-radius: var(--r-sm);
  background: var(--warm); font-size: .9rem; color: var(--text);
  min-height: 46px; transition: border-color .2s, box-shadow .2s;
}
.fi::placeholder { color: var(--light-text); }
.fi:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(186,155,95,.15); background: var(--white); }
.ftextarea { min-height: 110px; resize: vertical; line-height: 1.6; }
.fselect { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A6577' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .9rem center; background-size: 12px; padding-right: 2.4rem; }
.fhint { font-size: .74rem; color: var(--light-text); }

/* Phone field */
.phone-wrap { position: relative; }
.phone-icon { position: absolute; left: .9rem; top: 50%; transform: translateY(-50%); color: var(--light-text); pointer-events: none; }
.phone-fi { padding-left: 2.8rem !important; }

/* Form check */
.form-check { display: flex; gap: .6rem; align-items: flex-start; }
.form-check input[type=checkbox] { width: 17px; height: 17px; flex-shrink: 0; margin-top: 2px; accent-color: var(--gold); }
.form-check label { font-size: .8rem; color: var(--muted); line-height: 1.5; cursor: pointer; }

/* Trust row */
.trust-row { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; margin-top: .9rem; }
.trust-item { display: flex; align-items: center; gap: .35rem; font-size: .74rem; color: var(--light-text); }

/* Progress */
.progress-bar { height: 3px; background: var(--warm-2); border-radius: 2px; margin-bottom: 1.25rem; overflow: hidden; }
.progress-fill { height: 100%; background: var(--gold); border-radius: 2px; transition: width .5s cubic-bezier(.16,1,.3,1); }
.progress-steps { display: flex; gap: .4rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.ps { font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: .25rem .65rem; border-radius: 100px; color: var(--light-text); background: var(--warm-2); }
.ps.active { background: rgba(186,155,95,.15); color: var(--gold-dim); }
.ps.done { background: rgba(45,138,78,.1); color: var(--green); }

/* Code digits */
.code-note { font-size: .8rem; color: var(--muted); margin-bottom: .75rem; }
.code-row { display: flex; gap: .5rem; margin-bottom: 1rem; flex-wrap: wrap; }
.code-digit {
  width: 50px; height: 58px; text-align: center;
  font-size: 1.45rem; font-weight: 700;
  border: 1.5px solid var(--border); border-radius: var(--r-sm);
  background: var(--warm); color: var(--text); caret-color: var(--gold);
  transition: border-color .2s, box-shadow .2s;
}
.code-digit:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(186,155,95,.15); background: var(--white); }

/* Verified badge */
.verified-badge {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--green-bg); color: var(--green);
  font-size: .78rem; font-weight: 700;
  padding: .32rem .85rem; border-radius: 100px; margin-bottom: 1.25rem;
}

/* Agreement */
.agreement-box { border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; margin-bottom: 1rem; }
.agreement-hd {
  background: var(--navy); padding: .65rem 1rem;
  display: flex; align-items: center; gap: .5rem;
  font-size: .72rem; font-weight: 600; color: var(--gold);
  letter-spacing: .06em; text-transform: uppercase;
}
.agreement-scroll {
  max-height: 180px; overflow-y: auto; padding: .9rem 1rem;
  background: var(--warm); font-size: .79rem; color: var(--muted); line-height: 1.65;
}
.agreement-scroll p { margin-bottom: .5rem; max-width: none; }

/* Success state */
.success-state {
  display: none; text-align: center; padding: 2.5rem 1.5rem;
}
.success-state.visible { display: block; }
.success-icon { color: var(--gold); margin-bottom: 1rem; display: flex; justify-content: center; }
.success-state h3 { font-family: var(--font-d); font-size: 1.6rem; font-weight: 500; margin-bottom: .5rem; }
.success-state p { font-size: .9rem; color: var(--muted); margin-bottom: 1rem; max-width: none; }
.success-details { background: var(--warm); border-radius: var(--r-md); padding: 1rem; text-align: left; }
.success-row { display: flex; justify-content: space-between; padding: .45rem 0; font-size: .82rem; border-bottom: 1px solid var(--border); }
.success-row:last-child { border: none; }
.success-row span:first-child { color: var(--muted); }
.success-row span:last-child { font-weight: 600; color: var(--text); }

/* ── FOOTER ──────────────────────────────────── */
.footer { background: var(--navy-deep); padding: 3.5rem 0 2rem; }
.footer-top {
  display: grid; grid-template-columns: 1fr;
  gap: 2.5rem; margin-bottom: 2.5rem;
}
@media (min-width: 640px) { .footer-top { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
.footer-logo { height: 52px; width: auto; border-radius: 3px; margin-bottom: 1rem; }
.footer-tagline { font-size: .82rem; color: rgba(255,255,255,.4); line-height: 1.6; margin-bottom: 1rem; }
.footer-linkedin {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .78rem; font-weight: 600; color: var(--gold-light);
  text-decoration: none; transition: color .2s;
}
.footer-linkedin:hover { color: var(--gold); }
.footer-links-col { display: flex; flex-direction: column; gap: .75rem; }
.footer-col-title { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: .25rem; }
.footer-links-col a { font-size: .83rem; color: rgba(255,255,255,.55); text-decoration: none; transition: color .2s; }
.footer-links-col a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.5rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem;
}
.footer-bottom p { font-size: .75rem; color: rgba(255,255,255,.3); }

/* ── MODAL ───────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(15,22,32,.7); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem; opacity: 0; pointer-events: none; transition: opacity .3s;
}
.modal-overlay.visible { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--white); border-radius: var(--r-lg);
  padding: 2.5rem 2rem; max-width: 420px; width: 100%;
  box-shadow: var(--shadow-lg); text-align: center;
  transform: translateY(20px); transition: transform .4s cubic-bezier(.16,1,.3,1);
}
.modal-overlay.visible .modal { transform: translateY(0); }
.modal-icon { color: var(--gold); margin-bottom: 1rem; display: flex; justify-content: center; }
.modal h3 { font-family: var(--font-d); font-size: 1.6rem; font-weight: 500; margin-bottom: .5rem; }
.modal p { font-size: .9rem; color: var(--muted); line-height: 1.6; margin-bottom: 1.25rem; max-width: none; }
.modal-details { background: var(--warm); border-radius: var(--r-md); padding: .85rem 1rem; margin-bottom: 1.25rem; text-align: left; }
.modal-row { display: flex; justify-content: space-between; padding: .4rem 0; font-size: .82rem; color: var(--muted); border-bottom: 1px solid var(--border); }
.modal-row:last-child { border: none; }
.modal-row span:last-child { font-weight: 600; color: var(--text); }

/* ── REVEAL ANIMATIONS ───────────────────────── */
[data-reveal] {
  opacity: 0; transform: translateY(22px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }
.about-text-col[data-reveal] { transition-delay: .1s; }
.service-card:nth-child(2) { transition-delay: .1s; }
.service-card:nth-child(3) { transition-delay: .2s; }

/* ── SHAKE ───────────────────────────────────── */
@keyframes shake {
  0%,100%{transform:translateX(0)} 20%{transform:translateX(-5px)}
  40%{transform:translateX(5px)} 60%{transform:translateX(-4px)} 80%{transform:translateX(4px)}
}
.shake { animation: shake .4s ease-in-out; }
