/* ================================================================
   Chic & Dapper — Shopify-Style Design System
   Palette: Navy #1B2A4A · Gold #C9A84C · Cream #FAF9F6 · Dark #0D1824
   Fonts: Cormorant Garamond (display) · DM Sans (body)
   ================================================================ */

:root {
  --navy:       #1B2A4A;
  --navy-deep:  #0D1824;
  --navy-mid:   #243658;
  --gold:       #C9A84C;
  --gold-light: #E2C26E;
  --gold-pale:  #F5EDD4;
  --white:      #FFFFFF;
  --cream:      #FAF9F6;
  --gray-50:    #F7F6F3;
  --gray-100:   #EEECE8;
  --gray-200:   #DDD9D1;
  --gray-400:   #9E9890;
  --gray-600:   #6B6560;
  --gray-800:   #3A3632;
  --text:       #1A1816;
  --radius:     10px;
  --radius-sm:  6px;
  --radius-lg:  16px;
  --shadow-sm:  0 1px 4px rgba(0,0,0,0.06);
  --shadow:     0 4px 20px rgba(0,0,0,0.08);
  --shadow-md:  0 8px 40px rgba(0,0,0,0.12);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.16);
  --transition: 0.22s ease;
  --max-w:      1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 600; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
p  { color: var(--gray-600); line-height: 1.7; }
a  { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

/* ── Layout ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
section { padding: 5.5rem 0; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.section-header { text-align: center; margin-bottom: 4rem; }
.section-header p { max-width: 520px; margin: 0.75rem auto 0; font-size: 1.05rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy-deep);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.4);
}
.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--cream);
  color: var(--navy);
  transform: translateY(-1px);
}
.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.25);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}
.btn-dark {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-dark:hover {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 0.95rem;
}
.btn-sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.82rem;
}

/* ── Announcement Bar ── */
.announcement-bar {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.88);
  text-align: center;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.55rem 1rem;
  letter-spacing: 0.03em;
}
.announcement-bar a { color: var(--gold-light); font-weight: 600; }
.announcement-bar a:hover { color: var(--white); }

/* ── Navigation ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  gap: 1.5rem;
}
.nav-logo { display: flex; flex-direction: column; line-height: 1; text-decoration: none; align-items: flex-start; margin-right: auto; }
.nav-logo img { display: block; height: 74px; width: auto; }
.nav-logo .brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.01em;
}
.nav-logo .tagline-sm {
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
}
.nav-links { display: flex; gap: 0; list-style: none; }
.nav-links a {
  display: block;
  padding: 0.4rem 1rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-800);
  transition: color var(--transition);
  letter-spacing: 0.01em;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta { display: flex; gap: 0.6rem; align-items: center; }
.nav-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.35rem;
  color: var(--navy);
  flex-shrink: 0;
}
.nav-mobile {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  padding: 1.25rem 1.5rem 1.5rem;
}
.nav-mobile.open { display: block; }
.nav-mobile ul { list-style: none; }
.nav-mobile ul li { border-bottom: 1px solid var(--gray-50); }
.nav-mobile ul li a {
  display: block;
  padding: 0.9rem 0;
  font-size: 1rem;
  color: var(--gray-800);
  font-weight: 500;
}
.nav-mobile .mobile-cta { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.6rem; }

/* ── Hero (Shopify-style) ── */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201,168,76,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(36,54,88,0.8) 0%, transparent 60%),
    linear-gradient(160deg, #0D1824 0%, #1B2A4A 45%, #1e3260 100%);
}

/* Subtle fabric texture overlay */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 2px,
      rgba(255,255,255,0.012) 2px,
      rgba(255,255,255,0.012) 4px
    );
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
  padding: 3rem 0 1.5rem;
}

.hero-badge-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
}
.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.8)} }

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 600;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.25rem;
  max-width: 460px;
  line-height: 1.75;
}

.hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 1.25rem; }

.hero-trust {
  display: flex;
  gap: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}
.trust-stat { display: flex; flex-direction: column; }
.trust-stat .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.trust-stat .label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.2rem;
  letter-spacing: 0.03em;
}

/* Hero right — app mockup */
.hero-visual { display: flex; justify-content: center; align-items: flex-start; padding-top: 1.5rem; }
.app-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  width: 300px;
  text-align: center;
  backdrop-filter: blur(16px);
  position: relative;
}
.app-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 25px;
  background: linear-gradient(135deg, rgba(201,168,76,0.25), transparent 60%);
  z-index: -1;
  pointer-events: none;
}
.app-card-icon { font-size: 3.5rem; margin-bottom: 1rem; display: block; }
.app-card h3 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}
.app-card p { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-bottom: 1.75rem; }
.app-store-btns { display: flex; flex-direction: column; gap: 0.6rem; }
.app-store-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 0.7rem 1rem;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 500;
  transition: all var(--transition);
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
}
.app-store-btn:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(201,168,76,0.5);
  color: var(--white);
}
.app-store-btn svg { flex-shrink: 0; width: 18px; height: 18px; }

/* Rating pill inside card */
.app-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(27,42,74,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 100px;
  padding: 0.3rem 0.7rem;
  font-size: 0.75rem;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 1rem;
}

/* ── Trust Ticker ── */
.trust-ticker {
  background: var(--cream);
  border-bottom: 1px solid var(--gray-100);
  overflow: hidden;
  padding: 0.9rem 0;
  position: relative;
  margin-top: -3rem;
}
.trust-ticker::before,
.trust-ticker::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 1;
}
.trust-ticker::before { left: 0; background: linear-gradient(90deg, var(--cream), transparent); }
.trust-ticker::after  { right: 0; background: linear-gradient(270deg, var(--cream), transparent); }

.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 28s linear infinite;
  width: max-content;
}
.ticker-track:hover { animation-play-state: paused; }

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 2.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.ticker-item .ticker-icon { font-size: 1rem; }
.ticker-sep { color: var(--gold); font-size: 1.2rem; }

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Service Product Cards ── */
.services-shop { background: var(--white); }
.services-shop .section-header { text-align: left; margin-bottom: 2.5rem; }
.services-shop .section-header p { max-width: none; margin: 0.5rem 0 0; }

.services-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.product-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-100);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.product-card-img {
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}

/* Unique gradient per service */
.product-card:nth-child(1) .product-card-img { background: linear-gradient(135deg, #1B2A4A 0%, #2d4a7a 100%); }
.product-card:nth-child(2) .product-card-img { background: linear-gradient(135deg, #2D1B4E 0%, #5b3a8a 100%); }
.product-card:nth-child(3) .product-card-img { background: linear-gradient(135deg, #0D3B2E 0%, #1a6b52 100%); }
.product-card:nth-child(4) .product-card-img { background: linear-gradient(135deg, #4A1B1B 0%, #8B3A3A 100%); }
.product-card:nth-child(5) .product-card-img { background: linear-gradient(135deg, #1B3A4A 0%, #2d6a8a 100%); }

.product-card-img img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.05); }

.price-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.3rem 0.65rem;
  border-radius: 100px;
  letter-spacing: 0.03em;
  font-family: 'DM Sans', sans-serif;
}

.product-card-body {
  padding: 1.25rem 1.4rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card-body h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  color: var(--navy);
}
.product-card-body p {
  font-size: 0.84rem;
  line-height: 1.6;
  color: var(--gray-600);
  flex: 1;
  margin-bottom: 1.1rem;
}
.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.product-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
}
.product-price span { font-size: 0.78rem; font-weight: 500; color: var(--gray-400); font-family: 'DM Sans', sans-serif; }

/* ── Feature Strip (2-up alternating) ── */
.feature-strip {
  padding: 5.5rem 0;
}
.feature-strip.bg-cream { background: var(--cream); }
.feature-strip.bg-navy  { background: var(--navy); }

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.feature-row.reverse .feature-text { order: 2; }
.feature-row.reverse .feature-visual { order: 1; }

.feature-visual {
  border-radius: var(--radius-lg);
  aspect-ratio: 5/4;
  overflow: hidden;
  position: relative;
}
.feature-visual-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  background: linear-gradient(135deg, var(--navy) 0%, #243658 100%);
}
.feature-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.feature-text .section-eyebrow { margin-bottom: 0.75rem; }
.feature-text h2 { margin-bottom: 1rem; }
.feature-text p { font-size: 1rem; line-height: 1.8; margin-bottom: 1.5rem; }

.feature-text.on-dark h2 { color: var(--white); }
.feature-text.on-dark p  { color: rgba(255,255,255,0.65); }
.feature-text.on-dark .section-eyebrow { color: var(--gold-light); }
.feature-text.on-dark .section-eyebrow::before,
.feature-text.on-dark .section-eyebrow::after { background: var(--gold-light); }

.checklist { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.75rem; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--gray-600);
}
.checklist li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 800;
  font-size: 0.85rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}
.checklist.on-dark li { color: rgba(255,255,255,0.7); }

/* ── How It Works ── */
.how-it-works { background: var(--cream); }

.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  margin-bottom: 4rem;
}
.steps-row::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.66% + 1.5rem);
  right: calc(16.66% + 1.5rem);
  height: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  opacity: 0.4;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-card-img {
  margin: -1.5rem -1.25rem 1.25rem;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.step-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.step-number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  position: relative;
  z-index: 1;
}
.step-card h3 { font-size: 0.95rem; margin-bottom: 0.4rem; }
.step-card p { font-size: 0.82rem; }

/* Video embed */
.video-wrap { text-align: center; }
.video-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: block;
}
.video-responsive {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid var(--gray-100);
}
.video-responsive iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ── Popular Pricing Preview ── */
.pricing-preview { background: var(--navy); padding: 5.5rem 0; }
.pricing-preview .section-header h2 { color: var(--white); }
.pricing-preview .section-header p { color: rgba(255,255,255,0.6); }
.pricing-preview .section-eyebrow { color: var(--gold-light); }
.pricing-preview .section-eyebrow::before,
.pricing-preview .section-eyebrow::after { background: var(--gold-light); }

.price-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.price-chip {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 0.55rem 1.1rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  transition: all var(--transition);
}
.price-chip:hover {
  background: rgba(27,42,74,0.08);
  border-color: rgba(201,168,76,0.4);
  color: var(--gold-light);
}
.price-chip .chip-cat {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  font-weight: 400;
}
.price-chip .chip-price {
  font-weight: 700;
  color: var(--gold);
}

/* ── Testimonials ── */
.testimonials { background: var(--white); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testi-card {
  background: var(--cream);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
}
.testi-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gold-pale);
  transform: translateY(-3px);
}
.testi-card::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: var(--gold-pale);
  line-height: 1;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-weight: 700;
}

.testi-stars { display: flex; gap: 2px; margin-bottom: 1rem; }
.testi-stars span { color: var(--gold); font-size: 0.85rem; }

.testi-card blockquote {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--gray-800);
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testi-author { display: flex; align-items: center; gap: 0.75rem; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  border: 2px solid var(--gold-pale);
}
.testi-name { font-weight: 700; font-size: 0.9rem; color: var(--navy); }
.testi-role { font-size: 0.75rem; color: var(--gray-400); }

/* ── Promise Section ── */
.promise-section { background: var(--cream); }

.promise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.promise-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
}
.promise-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--gold-pale);
}
.promise-icon-wrap {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1.25rem;
  transition: transform var(--transition);
}
.promise-card:hover .promise-icon-wrap { transform: scale(1.08); }
.promise-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.promise-card p { font-size: 0.84rem; }

/* ── CTA Band ── */
.cta-band {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(201,168,76,0.08) 0%, transparent 70%);
}
.cta-band .container { position: relative; }
.cta-band h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-band p { color: rgba(255,255,255,0.65); margin-bottom: 2.25rem; font-size: 1.05rem; }
.cta-band .btn-group { display: flex; justify-content: center; gap: 0.75rem; flex-wrap: wrap; }

/* Sticky mobile download bar */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 0.85rem 1.25rem;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  backdrop-filter: blur(8px);
}
.sticky-mobile-cta p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  margin: 0;
}
.sticky-mobile-cta strong { color: var(--white); }
.sticky-mobile-cta .btn { flex-shrink: 0; }

/* ── Footer ── */
footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.5);
  padding: 4rem 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}
.footer-brand .brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 700;
  display: block;
  margin-bottom: 0.25rem;
}
.footer-brand .tagline {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  display: block;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.4);
  max-width: 280px;
  margin-bottom: 1.25rem;
}
.footer-social { display: flex; gap: 0.6rem; }
.footer-social a {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.footer-col h5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 100%);
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg, transparent, transparent 2px,
    rgba(255,255,255,0.01) 2px, rgba(255,255,255,0.01) 4px
  );
}
.page-hero .container { position: relative; text-align: center; }
.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(255,255,255,0.65); margin-top: 0.75rem; font-size: 1.05rem; }
.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}
.page-hero .breadcrumb a { color: var(--gold); }
.page-hero .breadcrumb span { color: rgba(255,255,255,0.25); }

/* ── Services detail page ── */
.service-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4.5rem 0;
  border-bottom: 1px solid var(--gray-100);
}
.service-detail-card:last-child { border-bottom: none; }
.service-detail-card.reverse .service-detail-text { order: 2; }
.service-detail-card.reverse .service-detail-visual { order: 1; }
.service-detail-visual {
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  font-size: 6rem;
  overflow: hidden;
}
.service-detail-visual { position: relative; }
.service-detail-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top; }
.service-highlights { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 1.5rem; }
.highlight-item {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.88rem; color: var(--gray-600);
}
.highlight-item::before { content: '✓'; color: var(--gold); font-weight: 800; flex-shrink: 0; }

/* ── Pricing page ── */
.pricing-section { padding: 5rem 0; }
.pricing-info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 3rem;
}
.info-card {
  background: var(--cream);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex; align-items: flex-start; gap: 0.75rem;
}
.info-card-icon { font-size: 1.4rem; flex-shrink: 0; }
.info-card-title { font-weight: 700; font-size: 0.88rem; color: var(--navy); }
.info-card-desc { font-size: 0.8rem; color: var(--gray-600); margin-top: 0.2rem; }

.search-bar { margin-bottom: 1.5rem; }
.search-input {
  width: 100%;
  padding: 0.8rem 1rem 0.8rem 2.75rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: var(--white) url("data:image/svg+xml,%3Csvg width='16' height='16' fill='none' stroke='%239E9890' stroke-width='2' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3C/svg%3E") 0.85rem center no-repeat;
}
.search-input:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(27,42,74,0.08); }

.filter-bar {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem;
}
.filter-btn {
  padding: 0.45rem 1.1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 100px;
  background: var(--white);
  font-size: 0.82rem; font-weight: 500;
  cursor: pointer; color: var(--gray-600);
  transition: all var(--transition);
  font-family: 'DM Sans', sans-serif;
}
.filter-btn:hover { border-color: var(--navy); color: var(--navy); }
.filter-btn.active { background: var(--navy); border-color: var(--navy); color: var(--white); }

.table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow); }
.pricing-table { width: 100%; border-collapse: collapse; background: var(--white); }
.pricing-table thead tr { background: var(--navy); }
.pricing-table th {
  padding: 1rem 1.5rem;
  text-align: left;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.pricing-table td {
  padding: 0.9rem 1.5rem;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--gray-50);
  color: var(--text);
}
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tbody tr:hover { background: var(--cream); }
.price-cell { font-weight: 700; color: var(--navy); font-size: 1rem; }
.category-badge {
  display: inline-block;
  background: var(--cream);
  color: var(--gray-600);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  border: 1px solid var(--gray-100);
}
.no-results { text-align: center; padding: 3rem; color: var(--gray-400); display: none; }

/* ── FAQ ── */
.faq-list { list-style: none; }
.faq-item { border-bottom: 1px solid var(--gray-100); }
.faq-question {
  width: 100%; background: none; border: none;
  text-align: left; padding: 1.35rem 0;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-family: 'DM Sans', sans-serif;
  font-size: 0.98rem; font-weight: 600; color: var(--text);
  gap: 1rem; transition: color var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-question.open { color: var(--navy); }
.faq-icon {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1.5px solid var(--gray-200); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--gray-400); transition: all var(--transition);
}
.faq-question.open .faq-icon {
  background: var(--navy); border-color: var(--navy);
  color: var(--white); transform: rotate(45deg);
}
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer.open { max-height: 300px; }
.faq-answer p { padding-bottom: 1.25rem; line-height: 1.8; font-size: 0.94rem; }

/* ── Contact ── */
.contact-section { padding: 5.5rem 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; }
.contact-info h2 { margin-bottom: 0.75rem; }
.contact-info > p { margin-bottom: 2rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.75rem; }
.contact-detail-icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: var(--cream); border: 1px solid var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-detail-body .label {
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--gray-400); font-weight: 700; margin-bottom: 0.2rem;
}
.contact-detail-body .value { font-size: 0.92rem; color: var(--text); font-weight: 500; }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; margin-top: 1.5rem; border: 1px solid var(--gray-100); }
.map-embed iframe { width: 100%; height: 220px; border: none; display: block; }

.contact-form-wrap {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--gray-100);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 700; color: var(--gray-800); margin-bottom: 0.4rem; letter-spacing: 0.02em; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif; font-size: 0.92rem; color: var(--text);
  background: var(--white); transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--navy); box-shadow: 0 0 0 3px rgba(27,42,74,0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none; background: #d1fae5; border: 1px solid #6ee7b7;
  border-radius: var(--radius-sm); padding: 1rem;
  color: #065f46; font-size: 0.88rem; margin-top: 1rem;
}

/* ── Admin ── */
.admin-login {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: var(--navy-deep);
}
.login-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 3rem; width: 100%; max-width: 400px;
  box-shadow: var(--shadow-lg); text-align: center;
}
.login-card h2 { margin-bottom: 0.5rem; }
.login-card p { font-size: 0.88rem; margin-bottom: 2rem; }
.admin-panel { display: none; }
.admin-panel.visible { display: block; }
.admin-nav { background: var(--navy); padding: 1rem 0; }
.admin-nav-inner { display: flex; align-items: center; justify-content: space-between; }
.admin-nav .brand { color: var(--white); font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; }
.admin-nav .badge { font-size: 0.7rem; background: var(--gold); color: var(--navy); padding: 0.2rem 0.6rem; border-radius: 4px; font-weight: 800; }
.gcs-bar { background: rgba(255,255,255,0.05); border-top: 1px solid rgba(255,255,255,0.08); padding: 0.6rem 0; }
.gcs-bar-inner { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
#gcs-connect-btn {
  font-size: 0.8rem; padding: 0.4rem 1rem;
  border: 1px solid rgba(255,255,255,0.25); border-radius: 6px;
  background: transparent; color: rgba(255,255,255,0.75);
  cursor: pointer; font-family: 'DM Sans', sans-serif; transition: all 0.2s;
}
#gcs-connect-btn:hover { background: rgba(255,255,255,0.1); }
#gcs-connect-btn.connected { border-color: #6ee7b7; color: #6ee7b7; }
#gcs-status { font-size: 0.78rem; color: rgba(255,255,255,0.4); }
.admin-tabs {
  display: flex; gap: 0.25rem; background: var(--gray-50);
  padding: 0.25rem; border-radius: var(--radius-sm);
  overflow-x: auto; margin-bottom: 2rem;
}
.admin-tab {
  padding: 0.55rem 1.1rem; border: none; background: none;
  border-radius: 4px; font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem; font-weight: 500; cursor: pointer;
  color: var(--gray-600); transition: all var(--transition); white-space: nowrap;
}
.admin-tab.active { background: var(--white); color: var(--navy); box-shadow: 0 1px 4px rgba(0,0,0,0.1); font-weight: 700; }
.admin-content { display: none; }
.admin-content.active { display: block; }
.admin-section { background: var(--white); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100); margin-bottom: 1.5rem; }
.admin-section h3 { margin-bottom: 1.5rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--gray-100); }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { text-align: left; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-400); padding: 0.6rem 1rem; border-bottom: 1px solid var(--gray-100); font-weight: 700; }
.admin-table td { padding: 0.75rem 1rem; border-bottom: 1px solid var(--gray-50); font-size: 0.88rem; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table input { border: 1px solid var(--gray-200); border-radius: 4px; padding: 0.35rem 0.6rem; font-size: 0.88rem; font-family: 'DM Sans', sans-serif; width: 100%; outline: none; }
.admin-table input:focus { border-color: var(--navy); }
.btn-icon { background: none; border: none; cursor: pointer; padding: 0.3rem; color: var(--gray-400); transition: color var(--transition); }
.btn-icon:hover { color: #dc2626; }
.admin-save-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--navy); padding: 1rem;
  display: flex; align-items: center; justify-content: space-between;
  transform: translateY(100%); transition: transform var(--transition); z-index: 200;
}
.admin-save-bar.visible { transform: translateY(0); }
.admin-save-bar span { color: rgba(255,255,255,0.7); font-size: 0.88rem; }
.status-pill {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.78rem; padding: 0.25rem 0.75rem; border-radius: 100px;
}
.status-pill.success { background: #d1fae5; color: #065f46; }
.status-pill.error   { background: #fee2e2; color: #991b1b; }
.status-pill.loading { background: var(--gray-100); color: var(--gray-600); }
.admin-input { width: 100%; padding: 0.6rem 0.9rem; border: 1.5px solid var(--gray-200); border-radius: 6px; font-family: 'DM Sans', sans-serif; font-size: 0.9rem; color: var(--text); outline: none; transition: border-color 0.2s; }
.admin-input:focus { border-color: var(--navy); box-shadow: 0 0 0 2px rgba(27,42,74,0.08); }
.admin-textarea { width: 100%; padding: 0.6rem 0.9rem; border: 1.5px solid var(--gray-200); border-radius: 6px; font-family: 'DM Sans', sans-serif; font-size: 0.9rem; color: var(--text); resize: vertical; outline: none; transition: border-color 0.2s; }
.admin-textarea:focus { border-color: var(--navy); box-shadow: 0 0 0 2px rgba(27,42,74,0.08); }
.drop-zone { border: 2px dashed var(--gray-200); border-radius: var(--radius); padding: 2.5rem 2rem; text-align: center; cursor: pointer; transition: all 0.2s; background: var(--cream); }
.drop-zone:hover, .drop-zone.drag-over { border-color: var(--navy); background: #eef0f5; }
.drop-zone-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.drop-zone p { color: var(--gray-600); font-size: 0.88rem; margin-bottom: 0.25rem; }
.file-label { color: var(--gold); font-weight: 600; cursor: pointer; text-decoration: underline; }
.images-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; }
.image-card { border: 1px solid var(--gray-100); border-radius: var(--radius-sm); overflow: hidden; background: var(--white); transition: box-shadow 0.2s; }
.image-card:hover { box-shadow: var(--shadow); }
.image-thumb { aspect-ratio: 4/3; background: var(--cream); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.image-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.image-card-body { padding: 0.75rem; }
.image-name { font-size: 0.78rem; font-weight: 600; color: var(--text); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; margin-bottom: 0.15rem; }
.image-size { font-size: 0.7rem; color: var(--gray-400); margin-bottom: 0.5rem; }
.image-url-wrap { margin-bottom: 0.5rem; }
.image-url-input { width: 100%; font-size: 0.7rem; padding: 0.3rem 0.5rem; border: 1px solid var(--gray-100); border-radius: 4px; color: var(--gray-600); background: var(--cream); outline: none; cursor: text; }
.image-actions { display: flex; align-items: center; justify-content: space-between; }
#upload-progress { display: flex; flex-direction: column; gap: 0.4rem; }

/* ── Animations ── */
@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
[data-animate] { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
[data-animate].in-view { opacity: 1; transform: translateY(0); }
[data-animate]:nth-child(2) { transition-delay: 0.08s; }
[data-animate]:nth-child(3) { transition-delay: 0.16s; }
[data-animate]:nth-child(4) { transition-delay: 0.24s; }
[data-animate]:nth-child(5) { transition-delay: 0.32s; }

/* ── Utilities ── */
.text-center { text-align: center; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── Membership Page ── */
.membership-hero { padding: 5.5rem 0; }
.membership-hero h1 em { font-style: italic; color: var(--gold); }

.membership-hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.mh-stat { text-align: center; }
.mh-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.mh-label {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 0.25rem;
}
.mh-sep {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* Plan cards */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.plan-card {
  background: var(--white);
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-pale);
}
.plan-card.plan-featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), var(--shadow-md);
}

.plan-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.9rem;
  border-radius: 100px;
  white-space: nowrap;
}

.plan-tier {
  display: flex;
  justify-content: center;
  margin-bottom: 0.75rem;
}
.plan-tier svg {
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.18));
}

.plan-name { font-size: 1.5rem; margin-bottom: 0.1rem; }

.plan-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  margin: 0.4rem 0 0.2rem;
}
.plan-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.plan-period { font-size: 0.88rem; color: var(--gray-400); }
.plan-annual-note { font-size: 0.78rem; color: var(--gray-400); margin-bottom: 1.5rem; }
.plan-divider { height: 1px; background: var(--gray-100); margin-bottom: 1.5rem; }

.plan-features {
  list-style: none;
  flex: 1;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--gray-600);
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--gray-50);
}
.plan-features li:last-child { border-bottom: none; }
.plan-features .chk { color: var(--gold); font-weight: 800; flex-shrink: 0; margin-top: 0.05rem; }

.plan-best-for {
  font-size: 0.78rem;
  color: var(--gray-400);
  text-align: center;
  margin-bottom: 0.5rem;
}
.plan-best-for strong { color: var(--navy); }

.plan-cta { width: 100%; justify-content: center; }

/* Annual fee box */
.annual-fee-box {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2.5rem 3rem;
  max-width: 860px;
  margin: 0 auto 2rem;
  position: relative;
  overflow: hidden;
}
.annual-fee-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(201,168,76,0.08) 0%, transparent 70%);
}
.annual-fee-box > * { position: relative; }
.annual-fee-box h3 { color: var(--white); text-align: center; margin-bottom: 0.5rem; }
.annual-fee-subtitle {
  color: rgba(255,255,255,0.6);
  text-align: center;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}
.annual-fee-perks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.annual-fee-perk { text-align: left; }
.afp-icon { font-size: 1.75rem; margin-bottom: 0.55rem; display: block; }
.afp-title { font-weight: 700; font-size: 0.88rem; color: var(--gold-light); margin-bottom: 0.3rem; }
.afp-desc { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* Overage note */
.overage-note {
  background: var(--cream);
  border: 1px solid var(--gray-100);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1rem 1.25rem;
  font-size: 0.85rem;
  color: var(--gray-600);
  max-width: 860px;
  margin: 0 auto;
  line-height: 1.65;
}
.overage-note strong { color: var(--navy); }

/* Covered items */
.covered-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}
.covered-section-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.csl-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  flex-shrink: 0;
}
.csl-check { background: var(--navy); color: var(--gold); }
.csl-pct   { background: var(--gold); color: var(--navy-deep); }
.covered-section-label h3 { font-size: 1.15rem; }

.covered-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}
.covered-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  transition: all var(--transition);
}
.covered-card:hover { border-color: var(--gold-pale); box-shadow: var(--shadow-sm); }
.covered-card-icon { font-size: 1.35rem; flex-shrink: 0; }
.covered-card-title { font-weight: 700; font-size: 0.88rem; color: var(--navy); margin-bottom: 0.15rem; }
.covered-card-desc { font-size: 0.78rem; color: var(--gray-600); line-height: 1.5; }

/* Specialty box */
.specialty-box {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.specialty-box p { font-size: 0.9rem; margin-bottom: 1.25rem; line-height: 1.7; }
.specialty-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.25rem; }
.specialty-tag {
  background: var(--gold-pale);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
}
.specialty-note {
  font-size: 0.8rem;
  color: var(--gray-400);
  padding-top: 1.1rem;
  border-top: 1px solid var(--gray-100);
  margin-bottom: 0;
  line-height: 1.65;
}

/* FAQ contact box */
.faq-contact-box {
  margin-top: 3.5rem;
  background: var(--cream);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
}
.faq-contact-box h3 { margin-bottom: 0.75rem; }
.faq-contact-box p { margin-bottom: 1.5rem; }

/* FAQ Tab navigation */
.faq-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--gray-100);
  margin-bottom: 2.5rem;
}
.faq-tab-btn {
  padding: 0.7rem 1.75rem;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-600);
  cursor: pointer;
  transition: all var(--transition);
}
.faq-tab-btn:hover { color: var(--navy); }
.faq-tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .services-product-grid { grid-template-columns: repeat(2, 1fr); }
  .promise-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .plan-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .annual-fee-perks { grid-template-columns: 1fr; gap: 1.5rem; }
  .annual-fee-box { padding: 2rem 1.5rem; }
  .covered-section-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .covered-grid { grid-template-columns: 1fr 1fr; }
  .mh-sep { display: none; }
  .hero-content { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .hero-sub { margin: 0 auto 2rem; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { display: none; }
  .steps-row { grid-template-columns: 1fr; }
  .steps-row::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .feature-row { grid-template-columns: 1fr; gap: 2.5rem; }
  .feature-row.reverse .feature-text, .feature-row.reverse .feature-visual { order: unset; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .service-detail-card { grid-template-columns: 1fr; gap: 2rem; }
  .service-detail-card.reverse .service-detail-text,
  .service-detail-card.reverse .service-detail-visual { order: unset; }
}

@media (max-width: 640px) {
  .plan-grid { max-width: none; }
  .covered-grid { grid-template-columns: 1fr; }
  section { padding: 4rem 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-menu-btn { display: flex; }
  .services-product-grid { grid-template-columns: 1fr; }
  .promise-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .sticky-mobile-cta { display: flex; }
  body { padding-bottom: 72px; }
  .pricing-table th:nth-child(2),
  .pricing-table td:nth-child(2) { display: none; }
}
