/* ============================================================
   AGENTIC EMPLOYEE — agenticemployee.net
   Design System · Premium Law Firm Gravitas
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=DM+Mono:wght@300;400;500&family=Instrument+Sans:ital,wght@0,400;0,500;0,600;1,400&display=swap');

/* ── TOKENS ── */
:root {
  --navy:       #0F1C33;
  --navy-mid:   #1A2B4A;
  --navy-light: #263A5E;
  --gold:       #B8960C;
  --gold-lt:    #D4AE2A;
  --gold-pale:  #F7EFCC;
  --cream:      #F6F2EA;
  --cream-dark: #EDE8DB;
  --white:      #FFFFFF;
  --ink:        #0F1C33;
  --body:       #3A4558;
  --muted:      #6B7A96;
  --line:       #D8D2C4;
  --line-lt:    #EDE8DB;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Instrument Sans', system-ui, sans-serif;
  --font-mono:    'DM Mono', 'Courier New', monospace;

  --shadow-sm:  0 1px 6px rgba(15,28,51,.07);
  --shadow-md:  0 4px 20px rgba(15,28,51,.10);
  --shadow-lg:  0 12px 48px rgba(15,28,51,.14);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --max-w: 1160px;
  --transition: 0.25s ease;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--cream);
  color: var(--body);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }
ul, ol { list-style: none; }

/* ── GRAIN TEXTURE ── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.025'/%3E%3C/svg%3E");
  opacity: 0.5;
}

/* ── UTILITY ── */
.container   { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }
.section     { padding: 96px 0; }
.section-sm  { padding: 64px 0; }
.section-lg  { padding: 128px 0; }
.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.text-muted  { color: var(--muted); }
.hidden      { display: none !important; }
.sr-only     { position: absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); }

/* ── EYEBROW ── */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.3px;
}
h1 { font-size: clamp(42px, 5.5vw, 72px); font-weight: 700; }
h2 { font-size: clamp(30px, 3.5vw, 48px); font-weight: 600; }
h3 { font-size: clamp(22px, 2.5vw, 30px); font-weight: 600; }
h4 { font-size: 18px; font-weight: 600; }
h5 { font-size: 15px; font-weight: 600; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: clamp(17px, 1.8vw, 20px);
  color: var(--body);
  line-height: 1.7;
}

blockquote {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 26px);
  font-style: italic;
  color: var(--navy);
  border-left: 3px solid var(--gold);
  padding: 16px 0 16px 28px;
  margin: 32px 0;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--transition);
}
.btn-primary:hover::after { background: rgba(255,255,255,0.12); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(184,150,12,.35); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--gold-lt);
  color: var(--gold-lt);
  background: rgba(184,150,12,0.08);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy-light);
}
.btn-outline-dark:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-lg { padding: 17px 40px; font-size: 15px; }

/* ── NAVIGATION ── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(15,28,51,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184,150,12,0.15);
  transition: all var(--transition);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}
.nav-logo span { color: var(--gold); }
.nav-logo sub {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--muted);
  vertical-align: super;
  margin-left: 4px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.3px;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transition: transform var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--white); }
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta { margin-left: 12px; padding: 10px 24px; font-size: 13px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  width: 22px; height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
  display: block;
}

/* ── HERO ── */
.hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 160px 0 120px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 60% 40%, rgba(184,150,12,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(26,43,74,0.8) 0%, transparent 60%);
}
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,150,12,0.4), transparent);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  position: relative; z-index: 1;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--gold);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  font-size: clamp(44px, 5vw, 68px);
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-lt);
}

.hero .lead { color: rgba(255,255,255,0.68); margin-bottom: 40px; }

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── HERO VISUAL PANEL ── */
.hero-panel {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(184,150,12,0.2);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(4px);
  position: relative;
}
.hero-panel::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.panel-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #3DC87A;
  box-shadow: 0 0 8px rgba(61,200,122,0.6);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 8px rgba(61,200,122,0.6); }
  50%      { box-shadow: 0 0 16px rgba(61,200,122,0.9); }
}
.panel-status span {
  font-family: var(--font-mono);
  font-size: 11px;
  color: #3DC87A;
  letter-spacing: 1px;
}

.call-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.call-item:last-child { border-bottom: none; }
.call-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(184,150,12,0.15);
  border: 1px solid rgba(184,150,12,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.call-info { flex: 1; }
.call-info strong {
  display: block;
  font-size: 13px;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 2px;
}
.call-info small {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.5px;
}
.call-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  padding: 3px 8px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}
.tag-done    { background: rgba(61,200,122,0.15); color: #3DC87A; border: 1px solid rgba(61,200,122,0.25); }
.tag-live    { background: rgba(184,150,12,0.15); color: var(--gold-lt); border: 1px solid rgba(184,150,12,0.3); }
.tag-pending { background: rgba(107,122,150,0.15); color: #9BADC8; border: 1px solid rgba(107,122,150,0.2); }

/* ── SECTION HEADERS ── */
.section-header {
  max-width: 640px;
  margin-bottom: 64px;
}
.section-header.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-header p { color: var(--muted); font-size: 17px; margin-top: 16px; }

/* ── CARDS ── */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card:hover::before { transform: scaleX(1); }

.card-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: var(--gold-pale);
  border: 1px solid rgba(184,150,12,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
}

/* ── GRID LAYOUTS ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

/* ── DARK SECTIONS ── */
.section-dark {
  background: var(--navy);
  color: var(--white);
}
.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 { color: var(--white); }
.section-dark p   { color: rgba(255,255,255,0.65); }
.section-dark .eyebrow { color: var(--gold-lt); }

/* ── DIVIDER ── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  margin: 0;
  border: none;
}

/* ── STAT BAR ── */
.stat-bar {
  background: var(--navy);
  padding: 48px 0;
  border-top: 1px solid rgba(184,150,12,0.2);
  border-bottom: 1px solid rgba(184,150,12,0.2);
}
.stat-bar-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--gold-lt);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ── FEATURE TABLE ── */
.feat-table { width: 100%; border-collapse: collapse; }
.feat-table th {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}
.feat-table td {
  padding: 16px;
  border-bottom: 1px solid var(--line-lt);
  font-size: 14px;
  color: var(--body);
  vertical-align: top;
}
.feat-table tr:last-child td { border-bottom: none; }
.feat-table td:first-child {
  font-weight: 600;
  color: var(--navy);
  width: 220px;
}
.feat-table td .check {
  color: #3DC87A;
  font-size: 16px;
  margin-right: 8px;
}

/* ── PROCESS STEPS ── */
.steps { counter-reset: step; }
.step-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 28px;
  margin-bottom: 48px;
  align-items: start;
}
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--navy);
  border: 1px solid rgba(184,150,12,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold-lt);
  flex-shrink: 0;
}
.step-body h4 { margin-bottom: 8px; font-size: 18px; }
.step-body p  { color: var(--muted); margin: 0; }

/* ── TRUST BADGE ── */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(184,150,12,0.08);
  border: 1px solid rgba(184,150,12,0.25);
  border-radius: 40px;
  padding: 8px 20px 8px 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
}
.trust-badge .badge-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 72px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; top: -60%; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,150,12,0.12) 0%, transparent 70%);
}
.cta-banner h2 { color: var(--white); position: relative; z-index: 1; margin-bottom: 16px; }
.cta-banner p  { color: rgba(255,255,255,0.6); position: relative; z-index: 1; margin-bottom: 32px; font-size: 18px; }
.cta-banner .btn { position: relative; z-index: 1; }

/* ── TESTIMONIAL ── */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 36px;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--gold-pale);
  line-height: 0.8;
  position: absolute;
  top: 28px; left: 28px;
}
.testimonial-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 20px;
  padding-top: 32px;
}
.testimonial-attr {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ── ACCORDION / FAQ ── */
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-weight: 600;
  font-size: 16px;
  color: var(--navy);
  cursor: pointer;
  gap: 16px;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: all var(--transition);
  color: var(--gold);
}
.faq-answer {
  padding: 0 0 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  display: none;
}
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gold); border-color: var(--gold); color: var(--white); }

/* ── FORM ── */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-control {
  width: 100%;
  padding: 13px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--navy);
  transition: border-color var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--gold); }
.form-control::placeholder { color: var(--muted); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { 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='%236B7A96' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }

/* ── FOOTER ── */
.site-footer {
  background: var(--navy);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(184,150,12,0.2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer-brand .nav-logo { font-size: 20px; display: inline-block; margin-bottom: 16px; }
.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 260px;
}
.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.07);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.5px;
  margin: 0;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--navy);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 30% 50%, rgba(184,150,12,0.06) 0%, transparent 70%);
}
.page-hero-inner { position: relative; z-index: 1; max-width: 720px; }
.page-hero h1 { color: var(--white); margin-bottom: 20px; }
.page-hero .lead { color: rgba(255,255,255,0.65); }

/* ── CHECKLIST ── */
.checklist { list-style: none; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-lt);
  font-size: 15px;
  color: var(--body);
}
.checklist li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ── PHASE TIMELINE ── */
.phase-list { position: relative; }
.phase-list::before {
  content: '';
  position: absolute; top: 0; bottom: 0; left: 28px;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), rgba(184,150,12,0.1));
}
.phase-item {
  display: flex;
  gap: 32px;
  margin-bottom: 40px;
  position: relative;
}
.phase-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid rgba(184,150,12,0.4);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gold);
  flex-shrink: 0;
  position: relative; z-index: 1;
}
.phase-body { padding-top: 10px; flex: 1; }
.phase-body h4 { margin-bottom: 6px; font-size: 18px; }
.phase-body p  { color: var(--muted); font-size: 14px; margin: 0; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity:0; transform: translateY(20px); }
  to   { opacity:1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.animate-up  { animation: fadeUp 0.65s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* ── SCROLL REVEAL (JS driven) ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── MOBILE NAV ── */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--navy);
    padding: 20px 40px 32px;
    gap: 20px;
    border-bottom: 1px solid rgba(184,150,12,0.15);
  }
  .nav-links.open a { font-size: 16px; }
  .nav-links.open .nav-cta { width: fit-content; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .hero { padding: 120px 0 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-panel { display: none; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .cta-banner { padding: 48px 28px; }
  .section { padding: 64px 0; }
  .stat-bar-inner { gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  h1 { font-size: 36px; }
  .footer-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .step-item { grid-template-columns: 1fr; }
  .step-num { width: 40px; height: 40px; font-size: 18px; }
}
