/* ============================================================
   TUTOR 2 SUCCESS - Shared Stylesheet
   ============================================================ */

/* ── GOOGLE FONTS (imported in each HTML <head>) ── */

/* ── BRAND TOKENS ── */
:root {
  --bg:        #FFFFFF;
  --gold:      #D1A103;
  --gold-lt:   #e5b517;
  --gold-pale: rgba(209,161,3,0.13);
  --gold-glow: rgba(209,161,3,0.25);
  --white:     #FFFFFF;
  --off-white: #F5F0E8;
  --panel:     #F5EFE3;
  --panel-lt:  #ECE7DB;
  --border:    rgba(209,161,3,0.28);
  --muted:     #5A6A84;
  --text:      #1A2744;
  --radius:    12px;
  --shadow:    0 4px 24px rgba(0,0,0,.07);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.14);
  --font-head:   'Bebas Neue', 'Impact', sans-serif;
  --font-slogan: 'EB Garamond', 'Garamond', 'Georgia', serif;
  --font-body:   'Inter', system-ui, sans-serif;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
a.link-gold, .link-gold { color: var(--gold); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── LOGO ── */
.logo-wrap { display: flex; align-items: center; gap: 12px; }
.logo-icon {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(11,23,61,0.6), 0 0 0 5px var(--gold);
}
.logo-icon svg { width: 26px; height: 26px; }
.logo-wordmark { line-height: 1; }
.logo-name {
  font-family: var(--font-head);
  font-size: 1.55rem; letter-spacing: 2px;
  color: var(--gold); line-height: 1;
}
.logo-slogan {
  font-family: var(--font-slogan);
  font-style: italic; font-size: .72rem;
  color: var(--gold-lt); letter-spacing: 1px; margin-top: 2px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block; padding: 12px 28px; border-radius: 8px;
  font-weight: 700; font-size: .9rem; cursor: pointer;
  transition: all .2s; border: 2px solid transparent;
  font-family: var(--font-body);
}
.btn-gold {
  background: var(--gold); color: #0B173D;
  box-shadow: 0 4px 18px rgba(209,161,3,.35);
}
.btn-gold:hover { background: var(--gold-lt); }
.btn-outline {
  border-color: var(--gold); color: var(--gold); background: transparent;
}
.btn-outline:hover { background: var(--gold-pale); }
.btn-light { background: rgba(255,255,255,.1); color: #ffffff; border-color: rgba(255,255,255,.25); border-width: 2px; }
.btn-light:hover { background: rgba(255,255,255,.18); }
.btn-lg { padding: 16px 36px; font-size: 1rem; border-radius: 10px; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11,23,61,.97); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(209,161,3,0.2);
  padding: 0 5%; height: 74px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.nav-links {
  display: flex; gap: 28px; align-items: center;
}
.nav-links a {
  font-weight: 600; font-size: .88rem; color: rgba(255,255,255,0.62);
  transition: color .2s; letter-spacing: .3px;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a.active {
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
}
.nav-actions { display: flex; gap: 10px; align-items: center; }
.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px; cursor: pointer;
  background: transparent; border: none; padding: 0;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--gold); border-radius: 2px;
  transition: all .25s;
}

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

/* ── PAGE HEADER (inner pages) ── */
.page-header {
  background: linear-gradient(135deg, #060E28 0%, #0B173D 60%, #0d1e4a 100%);
  padding: 72px 5% 60px;
  border-bottom: 1px solid rgba(209,161,3,0.2);
  position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; top: -100px; right: 5%;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(209,161,3,.15) 0%, transparent 70%);
  pointer-events: none;
}
.page-header .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(209,161,3,0.15); border: 1px solid rgba(209,161,3,0.25);
  color: var(--gold-lt); padding: 5px 14px; border-radius: 24px;
  font-size: .78rem; font-weight: 600; letter-spacing: .5px;
  margin-bottom: 18px;
}
.page-header h1 {
  font-family: var(--font-head);
  font-size: 3.2rem; letter-spacing: 3px;
  color: #ffffff; line-height: 1.05; margin-bottom: 12px;
}
.page-header h1 .gold { color: var(--gold); }
.page-header p {
  font-size: 1rem; line-height: 1.75; color: rgba(255,255,255,0.7);
  max-width: 560px;
}

/* ── CREDENTIAL STRIP ── */
.cred-strip {
  background: #060E28;
  border-top: 1px solid rgba(209,161,3,0.2);
  border-bottom: 1px solid rgba(209,161,3,0.2);
  padding: 18px 5%;
}
.cred-items {
  display: flex; gap: 0; justify-content: center;
  align-items: stretch; flex-wrap: wrap;
}
.cred-item {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 28px;
  border-right: 1px solid rgba(209,161,3,0.2);
  font-size: .82rem; font-weight: 600;
  color: rgba(255,255,255,0.6); letter-spacing: .3px;
}
.cred-item:last-child { border-right: none; }
.cred-item .cred-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}

/* ── SECTIONS ── */
section { padding: 84px 5%; }
.section-label {
  display: inline-block;
  background: var(--gold-pale); border: 1px solid var(--border);
  color: #a07800; font-size: .75rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 20px; margin-bottom: 16px;
}
.section-label.center { display: block; width: fit-content; margin-left: auto; margin-right: auto; margin-bottom: 16px; }
h2 {
  font-family: var(--font-head);
  font-size: 2.8rem; letter-spacing: 2px;
  color: var(--text); line-height: 1.1; margin-bottom: 14px;
}
h2 .gold { color: var(--gold); }
.section-intro {
  font-size: 1rem; color: var(--muted); line-height: 1.75;
  max-width: 580px; margin-bottom: 48px;
}
.center { text-align: center; }
.section-intro.center { margin-left: auto; margin-right: auto; }

/* ── FEATURE CARDS ── */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feat-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px 26px; transition: transform .25s, box-shadow .25s, border-color .25s;
  box-shadow: var(--shadow);
}
.feat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.feat-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--gold-pale); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 18px;
}
.feat-card h3 { font-family: var(--font-head); font-size: 1.3rem; letter-spacing: 1px; color: var(--text); margin-bottom: 10px; }
.feat-card p { font-size: .875rem; color: var(--muted); line-height: 1.7; }

/* ── SERVICES LIST ── */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px 28px; transition: border-color .2s, transform .2s, box-shadow .2s;
  box-shadow: var(--shadow);
}
.service-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.service-card h3 { font-family: var(--font-head); font-size: 1.4rem; letter-spacing: 1px; color: var(--text); margin-bottom: 10px; }
.service-card p { font-size: .875rem; color: var(--muted); line-height: 1.7; margin-bottom: 14px; }
.service-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.service-tag {
  background: var(--gold-pale); border: 1px solid var(--border);
  color: #a07800; font-size: .72rem; font-weight: 600;
  padding: 3px 12px; border-radius: 20px;
}

/* ── STEPS ── */
.steps-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin-top: 48px; position: relative; }
.steps-grid::before {
  content: ''; position: absolute; top: 26px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(209,161,3,.2));
  opacity: .5; pointer-events: none;
}
.step { text-align: center; }
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--gold); color: #0B173D;
  font-family: var(--font-head); font-size: 1.5rem; letter-spacing: 1px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; box-shadow: 0 0 0 6px var(--gold-pale);
}
.step h4 { font-family: var(--font-head); font-size: 1.05rem; letter-spacing: 1px; color: var(--text); margin-bottom: 8px; }
.step p { font-size: .83rem; color: var(--muted); line-height: 1.65; }

/* ── PRICING CARDS ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 960px; margin: 0 auto; }
.price-card {
  background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 38px 30px; text-align: center; transition: transform .2s, border-color .2s;
  display: flex; flex-direction: column; box-shadow: var(--shadow);
}
.price-card:hover { transform: translateY(-4px); }
.price-card.featured {
  border-color: var(--gold);
  transform: scale(1.04);
  box-shadow: 0 12px 40px rgba(209,161,3,.25);
}
.price-plan { font-family: var(--font-head); font-size: .85rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.price-amount { font-family: var(--font-head); font-size: 2.6rem; letter-spacing: 2px; color: var(--text); line-height: 1.1; }
.price-period { font-size: .82rem; color: var(--muted); margin-bottom: 26px; line-height: 1.4; }
.price-perks { list-style: none; text-align: left; margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.price-perks li { font-size: .875rem; display: flex; align-items: flex-start; gap: 8px; color: var(--muted); line-height: 1.5; }
.price-perks li::before { content: '✦'; color: var(--gold); font-size: .7rem; flex-shrink: 0; margin-top: 3px; }
.price-note {
  font-size: .78rem; color: var(--muted); font-style: italic;
  border-top: 1px solid var(--border); padding-top: 18px; margin-top: 18px;
  text-align: left; line-height: 1.6;
}

/* ── TRUST SECTION ── */
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.trust-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px 24px; text-align: center;
  transition: border-color .2s; box-shadow: var(--shadow);
}
.trust-card:hover { border-color: var(--gold); }
.trust-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--gold-pale); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin: 0 auto 16px;
}
.trust-card h3 { font-family: var(--font-head); font-size: 1.2rem; letter-spacing: 1px; color: var(--text); margin-bottom: 10px; }
.trust-card p { font-size: .875rem; color: var(--muted); line-height: 1.7; }

/* ── CONTACT FORM ── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.contact-info h3 { font-family: var(--font-head); font-size: 1.6rem; letter-spacing: 1px; color: var(--text); margin-bottom: 16px; }
.contact-info p { font-size: .9rem; color: var(--muted); line-height: 1.75; margin-bottom: 24px; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 20px;
}
.contact-detail-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--gold-pale); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-detail-text strong { display: block; font-size: .88rem; color: var(--text); margin-bottom: 2px; }
.contact-detail-text span { font-size: .84rem; color: var(--muted); }
.form-card {
  background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 40px 36px; box-shadow: var(--shadow-lg);
}
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
label {
  display: block; font-size: .82rem; font-weight: 600; color: #8a6b00;
  letter-spacing: .4px; margin-bottom: 7px;
}
input, select, textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--border);
  border-radius: 8px; padding: 12px 14px;
  font-family: var(--font-body); font-size: .9rem; color: var(--text);
  transition: border-color .2s;
  -webkit-appearance: none; appearance: none;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-pale);
}
select { 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='%23D1A103' 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; }
textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: .78rem; color: var(--muted); margin-top: 14px; line-height: 1.6; }

/* ── FAQ ACCORDION ── */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: border-color .2s; box-shadow: var(--shadow);
}
.faq-item.open { border-color: var(--gold); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 26px; cursor: pointer;
  font-weight: 600; font-size: .95rem; color: var(--text);
  -webkit-user-select: none; user-select: none;
}
.faq-q .faq-arrow {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--gold-pale); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; color: var(--gold); flex-shrink: 0;
  transition: transform .25s, background .2s;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); background: var(--gold); color: #0B173D; }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .3s;
}
.faq-a-inner {
  padding: 0 26px 22px;
  font-size: .9rem; color: var(--muted); line-height: 1.75;
}
.faq-item.open .faq-a { max-height: 800px; }

/* ── ABOUT PAGE ── */
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.about-visual {
  background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 40px; text-align: center; position: relative; overflow: hidden;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column; align-items: center;
}
.about-visual::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle, rgba(209,161,3,.15) 0%, transparent 70%);
}
.about-initials {
  width: 100px; height: 100px; border-radius: 50%;
  background: var(--gold); color: #0B173D;
  font-family: var(--font-head); font-size: 2.5rem; letter-spacing: 2px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 0 0 6px var(--gold-pale), 0 0 0 8px var(--border);
}
.about-headshot {
  width: 180px; height: 180px; border-radius: 50%; object-fit: cover; object-position: center 10%;
  display: block; margin: 0 auto 20px;
  box-shadow: 0 0 0 4px var(--gold), 0 0 0 8px var(--border);
}
.about-name { font-family: var(--font-head); font-size: 1.6rem; letter-spacing: 2px; color: var(--text); margin-bottom: 6px; }
.about-title { font-size: .88rem; color: var(--gold-lt); font-style: italic; margin-bottom: 24px; }
.about-creds { display: flex; flex-direction: column; gap: 10px; text-align: left; }
.about-cred {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .84rem; color: var(--muted); line-height: 1.5;
}
.about-cred::before { content: '✦'; color: var(--gold); font-size: .65rem; flex-shrink: 0; margin-top: 3px; }
.about-text h3 { font-family: var(--font-head); font-size: 1.5rem; letter-spacing: 1px; color: var(--text); margin-bottom: 12px; }
.about-text p { font-size: .9rem; color: var(--muted); line-height: 1.8; margin-bottom: 20px; }
.mission-block {
  background: var(--gold-pale); border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 22px 24px; margin: 24px 0;
}
.mission-block p {
  font-family: var(--font-body); font-size: 1rem; font-weight: 500;
  color: var(--text); line-height: 1.8; margin: 0;
}

/* ── TIMELINE (About) ── */
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: ''; position: absolute; left: 8px; top: 8px; bottom: 8px;
  width: 2px; background: linear-gradient(to bottom, var(--gold), rgba(209,161,3,.2));
}
.timeline-item { position: relative; margin-bottom: 28px; }
.timeline-item::before {
  content: ''; position: absolute; left: -28px; top: 6px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 0 4px var(--gold-pale);
}
.timeline-year { font-family: var(--font-head); font-size: .85rem; letter-spacing: 1px; color: var(--gold); margin-bottom: 4px; }
.timeline-item h4 { font-weight: 700; font-size: .95rem; color: var(--text); margin-bottom: 6px; }
.timeline-item p { font-size: .85rem; color: var(--muted); line-height: 1.65; }

/* ── CTA STRIP ── */
.cta-strip {
  background: linear-gradient(135deg, #060E28 0%, #0B173D 100%);
  border-top: 1px solid rgba(209,161,3,0.2); border-bottom: 1px solid rgba(209,161,3,0.2);
  padding: 80px 5%; text-align: center;
  position: relative; overflow: hidden;
}
.cta-strip::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 600px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(209,161,3,.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-strip h2 { color: #ffffff; font-size: 2.8rem; margin-bottom: 14px; }
.cta-strip p { color: rgba(255,255,255,0.7); font-size: 1.05rem; margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── INTRO OFFER BANNER ── */
.offer-banner {
  background: var(--gold); border-radius: var(--radius);
  padding: 28px 32px; display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; margin-bottom: 48px;
  box-shadow: 0 8px 32px rgba(209,161,3,.3);
}
.offer-banner-text h3 { font-family: var(--font-head); font-size: 1.5rem; letter-spacing: 1px; color: #0B173D; margin-bottom: 4px; }
.offer-banner-text p { font-size: .88rem; color: rgba(11,23,61,.75); }

/* ── FOOTER ── */
footer {
  background: #060E28; border-top: 1px solid rgba(209,161,3,0.2);
  padding: 60px 5% 28px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 44px; }
.footer-brand p { font-size: .875rem; color: rgba(255,255,255,0.55); line-height: 1.75; margin: 14px 0 20px; max-width: 280px; }
.footer-col h5 { font-family: var(--font-head); font-size: .95rem; letter-spacing: 1.5px; color: var(--gold); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: .85rem; color: rgba(255,255,255,0.55); transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(209,161,3,0.15); padding-top: 22px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .78rem; color: rgba(255,255,255,0.4); flex-wrap: wrap; gap: 8px;
}
.footer-bottom a { color: var(--gold); }

/* ── HERO VISUAL PERSONAL ELEMENTS ── */
.visual-alex-row {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 16px;
}
.visual-alex-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--gold); color: #0B173D;
  font-family: var(--font-head); font-size: 1.3rem; letter-spacing: 1px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(209,161,3,0.25);
}
.visual-alex-name {
  font-family: var(--font-head); font-size: 1rem; letter-spacing: 1.5px;
  color: var(--text); line-height: 1;
}
.visual-alex-role {
  font-size: .75rem; color: var(--muted); margin-top: 3px;
}
.visual-quote {
  font-family: var(--font-body); font-size: .88rem; font-weight: 500;
  color: #7a6000; line-height: 1.65;
  background: var(--gold-pale); border-left: 3px solid var(--gold);
  padding: 12px 14px; border-radius: 0 8px 8px 0;
  margin-bottom: 20px;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; }
  .price-card.featured { transform: none; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid::before { display: none; }
  .about-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links {
    display: none; flex-direction: column;
    position: absolute; top: 74px; left: 0; right: 0;
    background: rgba(11,23,61,.98); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(209,161,3,0.2);
    padding: 20px 5% 28px; gap: 18px;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-actions .btn-outline,
  .nav-actions .btn-portal { display: none; }
  .nav-actions { gap: 6px; }
  .nav-hamburger { display: flex; }
  h2 { font-size: 2.2rem; }
  .page-header h1 { font-size: 2.4rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cred-items { flex-direction: column; align-items: center; }
  .cred-item { border-right: none; border-bottom: 1px solid rgba(209,161,3,0.2); width: 100%; justify-content: center; }
  .cred-item:last-child { border-bottom: none; }
}
@media (max-width: 480px) {
  section { padding: 60px 5%; }
  .page-header { padding: 52px 5% 44px; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ── NAV SCROLL SHADOW ── */
nav.scrolled {
  box-shadow: 0 4px 32px rgba(11,23,61,0.18);
}

/* ── PARENT LOGIN BUTTON ── */
.btn-portal {
  font-size: .8rem;
  color: rgba(255,255,255,0.7);
  padding: 8px 14px;
  white-space: nowrap;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 6px;
  transition: color .2s, border-color .2s;
}
.btn-portal:hover { color: var(--gold); border-color: var(--gold); }

/* ── HAMBURGER X ANIMATION ── */
.nav-hamburger.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.nav-hamburger span {
  transition: transform .25s ease, opacity .2s ease;
}

/* ── GOLD PULSE (hero CTA) — uses transform+opacity for GPU-composited perf ── */
.btn-gold-pulse {
  position: relative;
  isolation: isolate;
}
.btn-gold-pulse::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(209,161,3,0.45);
  z-index: -1;
  will-change: transform, opacity;
  animation: goldPulse 2.4s ease-out infinite;
}
@keyframes goldPulse {
  0%   { transform: scale(1);    opacity: 1; }
  70%  { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}

/* ── SCROLL REVEAL ── */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
.js .reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── STAGGER cards in grids ── */
.js .features-grid .reveal:nth-child(2) { transition-delay: .08s; }
.js .features-grid .reveal:nth-child(3) { transition-delay: .16s; }
.js .features-grid .reveal:nth-child(4) { transition-delay: .24s; }
.js .features-grid .reveal:nth-child(5) { transition-delay: .32s; }
.js .features-grid .reveal:nth-child(6) { transition-delay: .40s; }
.js .steps-grid .reveal:nth-child(2) { transition-delay: .08s; }
.js .steps-grid .reveal:nth-child(3) { transition-delay: .16s; }
.js .steps-grid .reveal:nth-child(4) { transition-delay: .24s; }
.js .pricing-grid .reveal:nth-child(2) { transition-delay: .08s; }
.js .pricing-grid .reveal:nth-child(3) { transition-delay: .16s; }
.js .pricing-grid .reveal:nth-child(4) { transition-delay: .24s; }
