*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #1B2A6B;
  --navy-dark: #111C4E;
  --navy-light: #253580;
  --white: #FFFFFF;
  --black: #000000;
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --light-bg: #F4F6FB;
  --text-dark: #0D1533;
  --text-mid: #3A4A7A;
  --text-muted: #6B7AA0;
  --border: rgba(27,42,107,0.15);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text-dark); background: var(--white); line-height: 1.6; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(17,28,78,0.97);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3rem; height: 72px;
  border-bottom: 1px solid rgba(201,168,76,0.3);
}
.nav-logo img {
  height: 44px;
  filter: brightness(0) invert(1) drop-shadow(0 1px 2px rgba(0,0,0,0.25));
}
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links > li { position: relative; }
.nav-links a {
  color: rgba(255,255,255,0.82); text-decoration: none;
  font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
.nav-cta {
  background: var(--gold); color: var(--navy-dark);
  padding: 9px 22px; border-radius: 4px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  text-decoration: none; transition: background 0.2s;
}
.nav-cta:hover { background: var(--gold-light); }

/* Dropdown */
.nav-dropdown > a::after { content: '\25BE'; margin-left: 5px; font-size: 10px; display: inline-block; }
.nav-dropdown-menu {
  list-style: none;
  position: absolute; top: 100%; left: -1rem; margin-top: 14px;
  min-width: 280px; background: var(--navy-dark);
  border: 1px solid rgba(201,168,76,0.3); border-radius: 6px;
  padding: 0.5rem 0; box-shadow: 0 16px 34px rgba(0,0,0,0.4);
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown-menu li a {
  display: block; padding: 11px 20px;
  font-size: 13px; font-weight: 600; letter-spacing: 0; text-transform: none;
  color: rgba(255,255,255,0.8); border-left: 2px solid transparent;
}
.nav-dropdown-menu li a:hover { background: rgba(201,168,76,0.1); color: var(--gold-light); border-left-color: var(--gold); }

/* Mobile toggle */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; transition: 0.2s; }

/* HERO */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #2A3E8F 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 120px 2rem 80px;
  position: relative; overflow: hidden;
}
.hero.hero-sub { min-height: 46vh; padding: 140px 2rem 70px; }
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-badge {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.5);
  color: var(--gold-light);
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 18px; border-radius: 20px; margin-bottom: 1.5rem;
  position: relative; z-index: 1;
}
.hero h1, .hero-slide-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 900; color: var(--white); line-height: 1.12;
  max-width: 820px; margin-bottom: 1.5rem; position: relative; z-index: 1;
}
.hero h1 span, .hero-slide-content h1 span { color: var(--gold-light); }
.hero p, .hero-slide-content p {
  font-size: 1.15rem; color: rgba(255,255,255,0.78);
  max-width: 620px; margin: 0 auto 2.5rem; line-height: 1.75;
  position: relative; z-index: 1;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; position: relative; z-index: 1; }
.btn-primary {
  background: var(--gold); color: var(--navy-dark);
  padding: 14px 32px; border-radius: 4px;
  font-size: 15px; font-weight: 700; letter-spacing: 0.04em;
  text-decoration: none; border: none; cursor: pointer; display: inline-block;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--white);
  padding: 14px 32px; border-radius: 4px;
  font-size: 15px; font-weight: 600; letter-spacing: 0.04em;
  text-decoration: none; border: 1.5px solid rgba(255,255,255,0.45); cursor: pointer; display: inline-block;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.hero-stats {
  display: flex; gap: 3rem; margin-top: 4rem;
  padding-top: 3rem; border-top: 1px solid rgba(255,255,255,0.12);
  flex-wrap: wrap; justify-content: center; position: relative; z-index: 1;
}
.stats-bar {
  background: var(--navy-dark); display: flex; gap: 3rem;
  padding: 2.5rem 2rem; flex-wrap: wrap; justify-content: center;
  border-top: 1px solid rgba(201,168,76,0.25);
}
.stat { text-align: center; }
.stat-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--gold-light); }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.6); letter-spacing: 0.05em; text-transform: uppercase; }

/* Breadcrumb / page eyebrow used on sub-page heroes */
.hero-crumb { position: relative; z-index: 1; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 1rem; }
.hero-crumb a { color: rgba(255,255,255,0.5); text-decoration: none; }
.hero-crumb a:hover { color: var(--gold-light); }

/* HERO SLIDESHOW */
.hero-slideshow {
  position: relative; min-height: 100vh; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 120px 2rem 100px;
  background-size: cover; background-position: center;
  opacity: 0; visibility: hidden; z-index: 1;
  transition: opacity 1.1s ease;
}
.hero-slide.active { opacity: 1; visibility: visible; z-index: 2; }
.hero-slide::before {
  /* Navy gradient wash so text stays legible over any photo, plus the SGS dot texture */
  content: ''; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(135deg, rgba(17,28,78,0.94) 0%, rgba(27,42,107,0.88) 55%, rgba(42,62,143,0.82) 100%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-slide .hero-slide-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transform: scale(1.08); transition: transform 7s ease;
  z-index: 0;
}
.hero-slide.active .hero-slide-bg { transform: scale(1); }
.hero-slide-content { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }

.hero-dots {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 5;
}
.hero-dot {
  width: 10px; height: 10px; border-radius: 50%; padding: 0; border: none; cursor: pointer;
  background: rgba(255,255,255,0.35); transition: background 0.2s, transform 0.2s;
}
.hero-dot:hover { background: rgba(255,255,255,0.6); }
.hero-dot.active { background: var(--gold); transform: scale(1.3); }

.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.35);
  background: rgba(17,28,78,0.4); color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
  transition: background 0.2s, border-color 0.2s;
}
.hero-arrow:hover { background: rgba(17,28,78,0.7); border-color: var(--gold-light); }
.hero-arrow.prev { left: 22px; }
.hero-arrow.next { right: 22px; }

@media (max-width: 640px) {
  .hero-arrow { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide, .hero-slide .hero-slide-bg { transition: none; }
}

/* SECTIONS */
section { padding: 90px 2rem; }
.container { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700; color: var(--navy-dark); line-height: 1.2; margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.05rem; color: var(--text-muted); max-width: 600px; line-height: 1.75;
}

/* TRUST BAR */
.trust-bar {
  background: var(--navy-dark); padding: 28px 2rem;
  display: flex; align-items: center; justify-content: center; gap: 3rem;
  flex-wrap: wrap;
}
.trust-item { color: rgba(255,255,255,0.65); font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.trust-divider { width: 1px; height: 20px; background: rgba(255,255,255,0.2); }

/* WHY US */
.why-us { background: var(--light-bg); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 3rem; align-items: start; }
.why-text p { font-size: 1.05rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 1.25rem; }
.president-card {
  background: var(--navy);
  border-radius: 8px; padding: 2rem;
  border-left: 4px solid var(--gold);
}
.president-card h3 { font-family: var(--font-display); font-size: 1.3rem; color: var(--white); margin-bottom: 0.5rem; }
.president-card .title { font-size: 13px; color: var(--gold-light); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 1rem; }
.president-card p { font-size: 0.95rem; color: rgba(255,255,255,0.75); line-height: 1.75; }
.president-stat { display: flex; align-items: center; gap: 1rem; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.15); }
.president-stat-num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--gold-light); }
.president-stat-label { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.4; }

/* EBOOK BANNER */
.ebook-banner { background: linear-gradient(135deg, #0D1533 0%, var(--navy) 100%); padding: 70px 2rem; }
.ebook-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.ebook-text { flex: 1; min-width: 280px; }
.ebook-text .section-label { color: var(--gold-light); }
.ebook-text h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--white); margin-bottom: 1rem; line-height: 1.2; }
.ebook-text p { color: rgba(255,255,255,0.72); font-size: 1rem; line-height: 1.75; max-width: 480px; }
.ebook-cta { flex-shrink: 0; text-align: center; }
.ebook-price { font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: var(--gold-light); }
.ebook-price-label { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 1.25rem; text-transform: uppercase; letter-spacing: 0.08em; }
.btn-ebook {
  display: inline-block; background: var(--gold); color: var(--navy-dark);
  padding: 16px 40px; border-radius: 4px; font-size: 16px; font-weight: 700; letter-spacing: 0.05em;
  text-decoration: none; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s; box-shadow: 0 0 0 4px rgba(201,168,76,0.25);
}
.btn-ebook:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 0 0 6px rgba(201,168,76,0.3); }
.ebook-note { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 0.75rem; }

/* SERVICES */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.service-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 2rem;
  transition: border-color 0.2s, transform 0.2s; position: relative; overflow: hidden;
}
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--navy); transition: background 0.2s; }
.service-card:hover { border-color: var(--navy); transform: translateY(-3px); }
.service-card:hover::before { background: var(--gold); }
.service-icon { width: 48px; height: 48px; background: var(--light-bg); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.service-icon svg { width: 24px; height: 24px; fill: var(--navy); }
.service-card h3 { font-family: var(--font-display); font-size: 1.15rem; color: var(--navy-dark); margin-bottom: 0.75rem; }
.service-card p { font-size: 0.93rem; color: var(--text-muted); line-height: 1.7; }
.service-card a.card-link { display: inline-block; margin-top: 1rem; font-size: 13px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--navy); text-decoration: none; }
.service-card a.card-link:hover { color: var(--gold); }

/* Detailed service section (used on Services.aspx) */
.service-detail { padding: 70px 2rem; border-top: 1px solid var(--border); scroll-margin-top: 90px; }
.service-detail:nth-child(even) { background: var(--light-bg); }
.service-detail p { color: var(--text-mid); font-size: 1rem; line-height: 1.8; margin-bottom: 1.25rem; max-width: 760px; }
.service-detail ul { list-style: none; max-width: 760px; margin-top: 1.5rem; }
.service-detail ul li { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.6rem 0; font-size: 0.95rem; color: var(--text-mid); border-bottom: 1px solid var(--border); }
.service-detail ul li:last-child { border-bottom: none; }
.service-detail ul li::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 7px; }

/* MICRO PURCHASE */
.micro { background: var(--light-bg); }
.micro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-top: 3rem; }
.micro-list { list-style: none; }
.micro-list li { display: flex; align-items: flex-start; gap: 0.85rem; padding: 0.85rem 0; border-bottom: 1px solid var(--border); font-size: 0.95rem; color: var(--text-mid); line-height: 1.6; }
.micro-list li:last-child { border-bottom: none; }
.micro-bullet { width: 22px; height: 22px; background: var(--navy); border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.micro-bullet::after { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }
.micro-highlight { background: var(--navy); border-radius: 8px; padding: 2.5rem; border-left: 4px solid var(--gold); }
.micro-highlight h3 { font-family: var(--font-display); font-size: 1.4rem; color: var(--white); margin-bottom: 1rem; }
.micro-highlight p { color: rgba(255,255,255,0.75); font-size: 0.97rem; line-height: 1.8; margin-bottom: 1.25rem; }

/* CONSULTING */
.consulting { background: var(--white); }
.consult-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.consult-card { background: var(--white); border: 1.5px solid var(--border); border-radius: 10px; padding: 2rem; text-align: center; transition: border-color 0.2s, transform 0.2s; position: relative; }
.consult-card:hover { border-color: var(--navy); transform: translateY(-3px); }
.consult-card.featured { border: 2px solid var(--navy); box-shadow: 0 4px 24px rgba(27,42,107,0.12); }
.consult-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--navy-dark); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 14px; border-radius: 20px; white-space: nowrap; }
.consult-card h3 { font-family: var(--font-display); font-size: 1.1rem; color: var(--navy-dark); margin-bottom: 0.5rem; }
.consult-card .duration { font-size: 12px; color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1rem; }
.consult-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1.5rem; }
.consult-price { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; color: var(--navy); margin-bottom: 0.25rem; }
.savings { font-size: 12px; color: #2E7D32; font-weight: 700; margin-bottom: 1.25rem; }
.btn-book { display: inline-block; width: 100%; background: var(--navy); color: var(--white); padding: 12px 20px; border-radius: 4px; font-size: 14px; font-weight: 700; letter-spacing: 0.04em; text-decoration: none; border: none; cursor: pointer; transition: background 0.2s; }
.btn-book:hover { background: var(--navy-light); }
.consult-card.featured .btn-book { background: var(--gold); color: var(--navy-dark); }
.consult-card.featured .btn-book:hover { background: var(--gold-light); }

/* TESTIMONIALS */
.testimonials { background: var(--navy-dark); padding: 90px 2rem; }
.testimonials .section-label { color: var(--gold-light); }
.testimonials .section-title { color: var(--white); }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.testi-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; padding: 2rem; transition: background 0.2s; }
.testi-card:hover { background: rgba(255,255,255,0.1); }
.testi-quote { font-size: 2rem; color: var(--gold); line-height: 1; margin-bottom: 1rem; }
.testi-card p { font-size: 0.92rem; color: rgba(255,255,255,0.72); line-height: 1.75; margin-bottom: 1.5rem; }
.testi-author h4 { font-size: 0.95rem; font-weight: 700; color: var(--white); }
.testi-author span { font-size: 12px; color: var(--gold-light); }

/* BLOG */
.blog { background: var(--light-bg); }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.blog-card { background: var(--white); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; transition: transform 0.2s; }
.blog-card:hover { transform: translateY(-3px); }
.blog-card-body { padding: 1.5rem; }
.blog-date { font-size: 12px; color: var(--text-muted); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.5rem; }
.blog-card h3 { font-family: var(--font-display); font-size: 1.05rem; color: var(--navy-dark); margin-bottom: 0.75rem; line-height: 1.4; }
.blog-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1rem; }
.blog-card a { font-size: 13px; font-weight: 700; color: var(--navy); text-decoration: none; letter-spacing: 0.04em; text-transform: uppercase; }
.blog-card a:hover { color: var(--gold); }

/* CTA SECTION */
.cta-section { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%); padding: 90px 2rem; text-align: center; }
.cta-section h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 3rem); color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.72); font-size: 1.05rem; max-width: 560px; margin: 0 auto 2.5rem; }

/* FOOTER */
footer { background: var(--black); padding: 60px 2rem 30px; color: rgba(255,255,255,0.55); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; max-width: 1100px; margin: 0 auto 3rem; }
.footer-brand img { height: 48px; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 300px; }
.footer-col h4 { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-contact-item { font-size: 0.9rem; margin-bottom: 0.6rem; }
.footer-contact-item a { color: rgba(255,255,255,0.55); text-decoration: none; }
.footer-contact-item a:hover { color: var(--gold-light); }
.footer-bottom { max-width: 1100px; margin: 0 auto; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; font-size: 12px; flex-wrap: wrap; gap: 1rem; }

@media (max-width: 768px) {
  nav { padding: 0 1.25rem; }
  .nav-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; top: 72px; left: 0; right: 0;
    background: var(--navy-dark); flex-direction: column; align-items: stretch;
    padding: 0.5rem 1.5rem 1.5rem; gap: 0; border-bottom: 1px solid rgba(201,168,76,0.3);
    max-height: calc(100vh - 72px); overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links > li { width: 100%; }
  .nav-links a { display: block; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-dropdown-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    display: none; border: none; box-shadow: none; background: rgba(255,255,255,0.04);
    margin-top: 0; padding-left: 1rem; border-radius: 0;
  }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .nav-dropdown.open > a::after { transform: rotate(180deg); display: inline-block; }
  .nav-cta { margin-top: 0.75rem; text-align: center; }
  .why-grid, .micro-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .ebook-inner { flex-direction: column; text-align: center; }
  .ebook-text p { margin: 0 auto 1.5rem; }
}
