

/* ═══════════════════════════════════════════
   SHARED CSS
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy: #0D1F44; --navy-mid: #122450; --gold: #D19D15; --gold-light: #e8b830;
  --cream: #F2EDDF; --white: #ffffff; --gray: #6b7280; --dark-gray: #1f2937; --light-bg: #ece8da;
}
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--dark-gray); overflow-x: hidden; }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(13,31,68,0.97); backdrop-filter: blur(8px); padding: 18px 40px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(209,157,21,0.25); height: 72px; }
.nav-logo { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--gold); text-decoration: none; display: flex; align-items: center; gap: 10px; }
.nav-logo svg { height: 52px; width: auto; flex-shrink: 0; }
.nav-logo span { color: var(--white); }
.nav-links { display: flex; gap: 18px; list-style: none; align-items: center; }
.nav-links a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta { background: var(--gold) !important; color: var(--navy) !important; padding: 9px 20px; border-radius: 4px; font-weight: 600 !important; }
.nav-cta:hover { background: var(--gold-light) !important; }
.nav-lang { border: 1px solid rgba(209,157,21,0.4) !important; padding: 6px 14px !important; border-radius: 100px !important; color: var(--gold) !important; }
.nav-lang:hover { background: rgba(209,157,21,0.12) !important; }
.nav-lang.active { background: rgba(209,157,21,0.15) !important; }
.nav-login { border: 1px solid rgba(13,31,68,0.25) !important; padding: 6px 14px !important; border-radius: 100px !important; font-weight: 600 !important; }
.nav-login:hover { background: rgba(13,31,68,0.06) !important; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }

/* PAGE HEADER */
.page-header { background: var(--navy); padding: 160px 40px 80px; position: relative; overflow: hidden; text-align: center; }
.page-header::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(209,157,21,0.08), transparent 70%); }
.page-header * { position: relative; z-index: 1; }
.page-header-tag { display: inline-block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; background: rgba(209,157,21,0.12); border: 1px solid rgba(209,157,21,0.3); padding: 6px 16px; border-radius: 100px; }
.page-header h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3.2rem); color: var(--white); line-height: 1.1; margin-bottom: 16px; }
.page-header h1 em { font-style: italic; color: var(--gold); }
.page-header p { color: rgba(255,255,255,0.6); font-size: 1rem; line-height: 1.65; max-width: 540px; margin: 0 auto; font-weight: 300; }

/* SHARED */
.section-tag { display: inline-block; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--navy); line-height: 1.2; }
.section-title.light { color: var(--white); }
.section-sub { color: var(--gray); font-size: 1rem; margin-top: 14px; max-width: 520px; line-height: 1.6; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-sub { margin-left: auto; margin-right: auto; }

.btn-gold { background: var(--gold); color: var(--navy); padding: 14px 32px; border-radius: 4px; text-decoration: none; font-weight: 700; font-size: 0.95rem; transition: background 0.2s, transform 0.15s; display: inline-block; border: none; cursor: pointer; font-family: 'DM Sans', sans-serif; }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--navy); padding: 14px 32px; border-radius: 4px; text-decoration: none; font-weight: 600; font-size: 0.95rem; border: 1.5px solid #d0c8b8; transition: border-color 0.2s, color 0.2s, transform 0.15s; display: inline-block; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-outline-light { background: transparent; color: var(--white); padding: 14px 32px; border-radius: 4px; text-decoration: none; font-weight: 600; font-size: 0.95rem; border: 1.5px solid rgba(255,255,255,0.3); transition: border-color 0.2s, color 0.2s, transform 0.15s; display: inline-block; }
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* GUARANTEE BANNER */
.guarantee-banner { background: var(--gold); padding: 13px 40px; position: sticky; top: 72px; left: 0; right: 0; z-index: 99; }
.guarantee-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; text-align: center; }
.guarantee-inner strong { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--navy); }
.guarantee-inner span { font-size: 0.88rem; color: rgba(13,31,68,0.75); }
.guarantee-inner span.trophy { font-size: 1.1rem; display: inline-block !important; visibility: visible !important; flex-shrink: 0; }

/* CTA STRIP */
.cta-strip { padding: 100px 40px; background: var(--navy); }
.cta-box { max-width: 860px; margin: 0 auto; background: rgba(255,255,255,0.04); border: 1px solid rgba(209,157,21,0.25); border-radius: 20px; padding: 64px; text-align: center; position: relative; overflow: hidden; }
.cta-box::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(209,157,21,0.1), transparent); }
.cta-box * { position: relative; z-index: 1; }
.cta-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--white); margin-bottom: 16px; line-height: 1.2; }
.cta-title em { font-style: italic; color: var(--gold); }
.cta-desc { color: rgba(255,255,255,0.6); font-size: 1rem; max-width: 480px; margin: 0 auto 36px; line-height: 1.6; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-phone { margin-top: 20px; color: rgba(255,255,255,0.45); font-size: 0.88rem; }
.cta-phone a { color: var(--gold); font-weight: 700; text-decoration: none; }

/* FOOTER */
footer { background: #060e1e; padding: 56px 40px 36px; border-top: 1px solid rgba(209,157,21,0.15); }
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--gold); margin-bottom: 12px; display: flex; align-items: center; gap: 9px; }
.footer-brand .logo svg { height: 48px; width: auto; flex-shrink: 0; }
.footer-brand .logo span { color: rgba(255,255,255,0.7); }
.footer-brand p { color: rgba(255,255,255,0.35); font-size: 0.82rem; line-height: 1.65; max-width: 260px; }
.footer-brand .footer-phone { color: var(--gold); font-weight: 700; text-decoration: none; font-size: 0.9rem; display: block; margin-top: 14px; }
.footer-col h4 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.footer-col a { display: block; color: rgba(255,255,255,0.4); text-decoration: none; font-size: 0.85rem; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { max-width: 1100px; margin: 0 auto; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.06); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: rgba(255,255,255,0.2); font-size: 0.75rem; }
.footer-bottom a { color: rgba(255,255,255,0.3); text-decoration: none; font-size: 0.75rem; }
.footer-bottom a:hover { color: var(--gold); }

@media (max-width: 1280px) {
  .nav-logo span { display: none; }
}
@media (max-width: 1100px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--navy); padding: 20px 24px; border-bottom: 1px solid rgba(209,157,21,0.2); gap: 16px; }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: flex; }
  .page-header { padding: 120px 24px 60px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cta-box { padding: 40px 24px; }
  .guarantee-banner { padding: 16px 24px; }
}
@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}


/* ═══════════════════════════════════════════
   FIXED HEADER: nav(72px) + banner(46px) = 118px total
   All scrollable content gets padding-top: 118px
═══════════════════════════════════════════ */

/* Override nav to be exactly 72px tall */
nav {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 200 !important;
  height: 72px !important;
  padding: 0 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  background: rgba(13,31,68,0.98) !important;
  backdrop-filter: blur(10px) !important;
  border-bottom: 1px solid rgba(209,157,21,0.25) !important;
}



/* Page wrapper scrolls, header is fixed */
#site-body {
  padding-top: 72px;
  min-height: 100vh;
}

/* Page views */
.page-view { display: none; }
.page-view.active { display: block; }

/* Override page-header top padding (already accounts for fixed header via #site-body) */
.page-header {
  padding-top: 80px !important;
  padding-bottom: 72px !important;
}

/* Override hero top padding */
.hero {
  padding-top: 120px !important;
  padding-bottom: 100px !important;
  min-height: calc(100vh - 72px) !important;
}

/* Mobile nav banner adjustments */
@media (max-width: 900px) {
  nav {
    padding: 0 20px !important;
    height: 64px !important;
  }
  .guarantee-banner {
    top: 64px !important;
    padding: 9px 16px !important;
  }
  #site-body {
    padding-top: 100px !important;
  }
  .guarantee-inner {
    gap: 8px;
  }
  .guarantee-inner strong { font-size: 0.85rem; }
}

/* ═══════════════════════════════════════════
   PAGE-SPECIFIC CSS
═══════════════════════════════════════════ */

/* === index page === */

/* HERO */
.hero { min-height: 100vh; background: var(--navy); display: flex; align-items: center; position: relative; overflow: hidden; padding: 160px 40px 80px; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 60% at 75% 50%, rgba(209,157,21,0.08) 0%, transparent 70%), radial-gradient(ellipse 40% 80% at 10% 80%, rgba(209,157,21,0.05) 0%, transparent 60%); }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(209,157,21,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(209,157,21,0.04) 1px, transparent 1px); background-size: 60px 60px; }
.hero-content { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; width: 100%; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(209,157,21,0.12); border: 1px solid rgba(209,157,21,0.3); color: var(--gold); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; padding: 7px 16px; border-radius: 100px; margin-bottom: 28px; }
.hero-badge::before { content: '★'; font-size: 0.6rem; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 4vw, 3.6rem); line-height: 1.1; color: var(--white); margin-bottom: 24px; }
.hero h1 em { font-style: italic; color: var(--gold); display: block; }
.hero-desc { color: rgba(255,255,255,0.65); font-size: 1rem; line-height: 1.7; margin-bottom: 32px; max-width: 440px; font-weight: 300; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
.hero-phone { color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.hero-phone a { color: var(--gold); text-decoration: none; font-weight: 600; font-size: 1rem; }
/* FORM */
.hero-form-panel { position: relative; z-index: 2; }
.steps-indicator { display: flex; align-items: center; justify-content: center; background: var(--navy-mid); border-radius: 16px 16px 0 0; padding: 16px 24px; border: 1px solid rgba(209,157,21,0.2); border-bottom: none; }
.si-step { display: flex; align-items: center; gap: 8px; font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.07em; flex: 1; justify-content: center; }
.si-step.active { color: var(--gold); }
.si-step.done { color: rgba(209,157,21,0.5); }
.si-dot { width: 24px; height: 24px; border-radius: 50%; background: rgba(255,255,255,0.08); border: 2px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; font-size: 0.7rem; flex-shrink: 0; }
.si-step.active .si-dot { background: var(--gold); border-color: var(--gold); color: var(--navy); font-weight: 800; }
.si-step.done .si-dot { background: rgba(209,157,21,0.25); border-color: var(--gold); color: var(--gold); }
.si-line { flex: 1; height: 1px; background: rgba(255,255,255,0.1); max-width: 32px; }
.progress-bar { height: 3px; background: rgba(255,255,255,0.1); overflow: hidden; }
.progress-fill { height: 100%; background: var(--gold); transition: width 0.4s ease; }
.form-card { background: var(--white); border-radius: 0 0 16px 16px; border: 1px solid rgba(209,157,21,0.15); border-top: none; padding: 36px 40px 40px; box-shadow: 0 24px 64px rgba(13,31,68,0.2); }
.form-section { display: none; }
.form-section.active { display: block; }
.form-section-title { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--navy); margin-bottom: 4px; }
.form-section-sub { color: var(--gray); font-size: 0.85rem; margin-bottom: 24px; line-height: 1.5; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.field-row.single { grid-template-columns: 1fr; }
.field { display: flex; flex-direction: column; gap: 5px; }
.field label { font-size: 0.75rem; font-weight: 600; color: #374151; letter-spacing: 0.04em; text-transform: uppercase; }
.field input, .field select { padding: 11px 14px; border: 1.5px solid #e5e0d5; border-radius: 8px; font-family: 'DM Sans', sans-serif; font-size: 0.9rem; color: #1f2937; background: var(--white); outline: none; transition: border-color 0.2s, box-shadow 0.2s; appearance: none; }
.field input:focus, .field select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(209,157,21,0.12); }
.field input::placeholder { color: #aaa; }
.score-picker { display: grid; grid-template-columns: repeat(5,1fr); gap: 8px; margin-bottom: 20px; }
.score-btn { padding: 10px 4px; border-radius: 8px; border: 2px solid #e5e0d5; background: var(--white); cursor: pointer; text-align: center; transition: all 0.2s; }
.score-btn:hover { border-color: var(--gold); }
.score-btn.selected { border-color: var(--gold); background: rgba(209,157,21,0.1); }
.score-range { font-size: 0.72rem; font-weight: 700; color: var(--navy); }
.score-label { font-size: 0.62rem; color: var(--gray); margin-top: 2px; }
.score-bar { height: 3px; border-radius: 2px; margin-top: 6px; }
.score-btn:nth-child(1) .score-bar { background: #ef4444; }
.score-btn:nth-child(2) .score-bar { background: #f97316; }
.score-btn:nth-child(3) .score-bar { background: #eab308; }
.score-btn:nth-child(4) .score-bar { background: #84cc16; }
.score-btn:nth-child(5) .score-bar { background: #22c55e; }
.check-group { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 20px; }
.check-btn { display: flex; align-items: center; gap: 8px; padding: 10px 12px; border-radius: 8px; border: 1.5px solid #e5e0d5; background: var(--white); cursor: pointer; font-size: 0.82rem; color: #374151; transition: all 0.2s; user-select: none; font-weight: 500; }
.check-btn:hover { border-color: var(--gold); }
.check-btn.selected { border-color: var(--gold); background: rgba(209,157,21,0.08); color: var(--navy); }
.consent-box { background: #f8f4ec; border-radius: 8px; padding: 12px 14px; font-size: 0.72rem; color: var(--gray); line-height: 1.5; margin-bottom: 20px; border: 1px solid #ddd5c0; }
.form-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 4px; }
.btn-back { background: none; border: 1.5px solid #ddd; color: #6b7280; padding: 10px 20px; border-radius: 8px; font-family: 'DM Sans', sans-serif; font-size: 0.85rem; font-weight: 600; cursor: pointer; transition: all 0.2s; }
.btn-back:hover { border-color: var(--navy); color: var(--navy); }
.btn-next { background: var(--gold); color: var(--navy); padding: 12px 28px; border-radius: 8px; border: none; font-family: 'Playfair Display', serif; font-size: 0.95rem; font-weight: 700; cursor: pointer; transition: background 0.2s, transform 0.15s; display: flex; align-items: center; gap: 8px; }
.btn-next:hover { background: var(--gold-light); transform: translateY(-2px); }
.field-label-sm { font-size: 0.75rem; font-weight: 700; color: #374151; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }
.field-label-sm span { font-weight: 400; text-transform: none; font-size: 0.7rem; color: #9ca3af; }
.success-screen { text-align: center; padding: 12px 0; }
.success-icon { width: 64px; height: 64px; background: rgba(209,157,21,0.12); border: 2px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin: 0 auto 20px; animation: popIn 0.5s cubic-bezier(.34,1.56,.64,1) both; }
@keyframes popIn { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.success-screen h2 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--navy); margin-bottom: 10px; }
.success-screen p { color: var(--gray); font-size: 0.88rem; line-height: 1.6; max-width: 340px; margin: 0 auto 24px; }
.next-steps { display: flex; flex-direction: column; gap: 10px; text-align: left; margin: 0 auto 24px; }
.next-step { display: flex; align-items: flex-start; gap: 12px; padding: 12px 16px; background: var(--cream); border-radius: 8px; border: 1px solid #e8e0d0; }
.ns-num { width: 26px; height: 26px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.ns-text { font-size: 0.82rem; color: #374151; line-height: 1.4; }
.ns-text strong { color: var(--navy); }
.btn-call { display: inline-flex; align-items: center; gap: 10px; background: var(--navy); color: var(--white); padding: 14px 28px; border-radius: 8px; text-decoration: none; font-weight: 700; font-size: 0.95rem; transition: background 0.2s; }
.btn-call:hover { background: #1a3060; }
/* PRICING PREVIEW */
.pricing-preview { padding: 100px 40px; background: var(--white); }
.pricing-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.plan-card { border: 1px solid #e0d8c8; border-radius: 16px; padding: 36px 30px; background: var(--white); display: flex; flex-direction: column; position: relative; transition: box-shadow 0.25s, transform 0.2s; }
.plan-card:hover { box-shadow: 0 16px 48px rgba(13,31,68,0.1); transform: translateY(-4px); }
.plan-card.featured { border: 2px solid var(--gold); }
.plan-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 18px; border-radius: 100px; white-space: nowrap; background: var(--gold); color: var(--navy); }
.plan-tier { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.plan-name { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--navy); margin-bottom: 16px; }
.plan-amount { font-family: 'Playfair Display', serif; font-size: 2.6rem; color: var(--navy); font-weight: 700; line-height: 1; }
.plan-amount sup { font-size: 1.2rem; vertical-align: top; margin-top: 6px; display: inline-block; }
.plan-period { font-size: 0.82rem; color: var(--gray); margin-top: 4px; margin-bottom: 16px; }
.plan-divider { height: 1px; background: #ede5d8; margin-bottom: 16px; }
.plan-desc { color: var(--gray); font-size: 0.87rem; line-height: 1.6; margin-bottom: 20px; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 24px; }
.plan-features li { display: flex; align-items: flex-start; gap: 8px; font-size: 0.84rem; color: #374151; }
.plan-features li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.plan-cta { display: block; text-align: center; padding: 13px 24px; border-radius: 8px; font-weight: 700; font-size: 0.9rem; text-decoration: none; transition: all 0.2s; }
.plan-cta.gold { background: var(--gold); color: var(--navy); }
.plan-cta.gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.plan-cta.outline { background: transparent; color: var(--navy); border: 1.5px solid #d0c8b8; }
.plan-cta.outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.pricing-more { text-align: center; margin-top: 40px; }
.pricing-more p { color: var(--gray); font-size: 0.92rem; margin-bottom: 16px; }
.no-fee-banner { max-width: 820px; margin: 0 auto 48px; background: #f9f3e3; border-left: 4px solid var(--gold); border-radius: 8px; padding: 18px 24px; display: flex; align-items: flex-start; gap: 14px; }
.no-fee-banner .no-fee-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.no-fee-banner p { margin: 0; color: var(--navy); font-size: 0.97rem; line-height: 1.6; }
.no-fee-banner strong { color: var(--navy); }
/* FEATURES */
.features-section { padding: 100px 40px; background: var(--navy); position: relative; overflow: hidden; }
.features-section::before { content:''; position:absolute; inset:0; background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(209,157,21,0.06), transparent); }
.features-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.feat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.feat-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(209,157,21,0.18); border-radius: 14px; padding: 26px 24px; transition: background 0.2s, border-color 0.2s; }
.feat-card:hover { background: rgba(209,157,21,0.07); border-color: rgba(209,157,21,0.35); }
.feat-icon { font-size: 1.6rem; margin-bottom: 12px; }
.feat-name { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--white); margin-bottom: 8px; }
.feat-desc { font-size: 0.83rem; color: rgba(255,255,255,0.55); line-height: 1.6; }
/* SERVICES */
.services { padding: 100px 40px; background: var(--cream); }
.services-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.service-card { border: 1px solid #e0d8c8; border-radius: 12px; padding: 36px 32px; transition: box-shadow 0.25s, transform 0.2s, border-color 0.25s; position: relative; overflow: hidden; background: var(--white); }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold); transform: scaleX(0); transition: transform 0.3s; transform-origin: left; }
.service-card:hover { box-shadow: 0 16px 48px rgba(13,31,68,0.1); transform: translateY(-4px); border-color: var(--gold); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 52px; height: 52px; background: rgba(209,157,21,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 20px; }
.service-name { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--navy); margin-bottom: 12px; }
.service-desc { color: var(--gray); font-size: 0.9rem; line-height: 1.65; }
/* HOW IT WORKS */
.how { padding: 100px 40px; background: var(--white); }
.how-inner { max-width: 1100px; margin: 0 auto; }
.steps-row { display: grid; grid-template-columns: repeat(5,1fr); gap: 0; position: relative; margin-top: 60px; }
.steps-row::before { content: ''; position: absolute; top: 36px; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, var(--gold) 0%, rgba(209,157,21,0.2) 100%); }
.step-col { text-align: center; padding: 0 12px; }
.step-circle { width: 72px; height: 72px; background: var(--navy); border: 3px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--gold); font-weight: 700; position: relative; z-index: 1; }
.step-name { font-weight: 700; font-size: 0.9rem; color: var(--navy); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.05em; }
.step-desc { font-size: 0.82rem; color: var(--gray); line-height: 1.5; }
/* WHY */
.why { padding: 100px 40px; background: var(--cream); }
.why-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-text .section-tag { display: block; }
.why-text h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem,3vw,2.5rem); color: var(--navy); line-height: 1.2; margin-bottom: 16px; }
.why-body { color: var(--gray); font-size: 1rem; line-height: 1.7; margin-bottom: 32px; }
.values-list { display: flex; flex-direction: column; gap: 16px; }
.value-item { display: flex; gap: 14px; align-items: flex-start; }
.value-dot { width: 10px; height: 10px; background: var(--gold); border-radius: 50%; margin-top: 6px; flex-shrink: 0; }
.value-label { font-weight: 700; color: var(--navy); font-size: 0.9rem; margin-bottom: 3px; }
.value-desc { font-size: 0.84rem; color: var(--gray); line-height: 1.5; }
.why-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.why-stat { background: var(--white); border: 1px solid #e0d8c8; border-radius: 12px; padding: 28px 24px; text-align: center; }
.why-stat:first-child { grid-column: span 2; }
.why-num { font-family: 'Playfair Display', serif; font-size: 2.8rem; color: var(--gold); font-weight: 700; line-height: 1; }
.why-label { color: var(--gray); font-size: 0.85rem; margin-top: 8px; }

@media (max-width: 900px) {
  .hero-content, .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .pricing-grid, .feat-grid, .services-grid { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr 1fr; }
  .steps-row::before { display: none; }
  .hero { padding: 140px 24px 60px; } .pricing-preview, .features-section, .services, .how, .why { padding: 60px 24px; }
  .score-picker { grid-template-columns: repeat(3,1fr); }
  .field-row { grid-template-columns: 1fr; }
}


/* === programs page === */

.plans { padding: 100px 40px; background: var(--white); }
.plans-inner { max-width: 1100px; margin: 0 auto; }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-bottom: 80px; }
.plan-card { border: 1px solid #e0d8c8; border-radius: 16px; padding: 40px 34px; background: var(--white); display: flex; flex-direction: column; position: relative; transition: box-shadow 0.25s, transform 0.2s; }
.plan-card:hover { box-shadow: 0 16px 48px rgba(13,31,68,0.1); transform: translateY(-4px); }
.plan-card.featured { border: 2px solid var(--gold); box-shadow: 0 16px 48px rgba(209,157,21,0.12); }
.plan-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 18px; border-radius: 100px; white-space: nowrap; }
.plan-badge.gold { background: var(--gold); color: var(--navy); }
.plan-badge.dark { background: var(--navy); color: var(--gold); border: 1px solid rgba(209,157,21,0.4); }
.plan-tier { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.plan-name { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--navy); margin-bottom: 20px; }
.plan-amount { font-family: 'Playfair Display', serif; font-size: 2.8rem; color: var(--navy); font-weight: 700; line-height: 1; }
.plan-amount sup { font-size: 1.2rem; vertical-align: top; margin-top: 8px; display: inline-block; }
.plan-period { font-size: 0.82rem; color: var(--gray); margin-top: 4px; margin-bottom: 20px; }
.plan-divider { height: 1px; background: #ede5d8; margin-bottom: 20px; }
.plan-desc { color: var(--gray); font-size: 0.9rem; line-height: 1.6; margin-bottom: 24px; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 32px; }
.plan-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.87rem; color: #374151; line-height: 1.4; }
.plan-features li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.plan-features li.highlight { color: var(--navy); font-weight: 600; }
.plan-features li.highlight::before { content: '+'; }
.plan-cta { display: block; text-align: center; padding: 14px 24px; border-radius: 8px; font-weight: 700; font-size: 0.9rem; text-decoration: none; transition: all 0.2s; cursor: pointer; border: none; font-family: 'DM Sans', sans-serif; }
.plan-cta.gold-btn { background: var(--gold); color: var(--navy); }
.plan-cta.gold-btn:hover { background: var(--gold-light); transform: translateY(-2px); }
.plan-cta.outline-btn { background: transparent; color: var(--navy); border: 1.5px solid #d0c8b8; }
.plan-cta.outline-btn:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* COMPARISON TABLE */
.comparison { padding: 80px 40px; background: var(--cream); }
.comparison-inner { max-width: 1000px; margin: 0 auto; }
.comp-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: 16px; overflow: hidden; box-shadow: 0 8px 32px rgba(13,31,68,0.08); }
.comp-table th { background: var(--navy); color: var(--white); padding: 18px 24px; font-size: 0.85rem; font-weight: 600; text-align: center; }
.comp-table th:first-child { text-align: left; background: #0a1a38; }
.comp-table th.featured-col { background: rgba(209,157,21,0.15); color: var(--gold); }
.comp-table td { padding: 14px 24px; font-size: 0.87rem; color: #374151; border-bottom: 1px solid #f0ead8; text-align: center; }
.comp-table td:first-child { text-align: left; font-weight: 500; color: var(--navy); background: #faf8f3; }
.comp-table td.featured-col { background: rgba(209,157,21,0.04); }
.comp-table tr:last-child td { border-bottom: none; }
.comp-table tr:hover td { background: #faf7f0; }
.comp-table tr:hover td:first-child { background: #f5f0e4; }
.comp-table tr:hover td.featured-col { background: rgba(209,157,21,0.07); }
.check { color: var(--gold); font-size: 1.1rem; font-weight: 700; }
.dash { color: #ccc; }
.comp-price { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--navy); }

/* SPECIALTY */
.specialty { padding: 80px 40px; background: var(--white); }
.specialty-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.spec-card { background: var(--navy); border-radius: 16px; padding: 36px 30px; position: relative; overflow: hidden; transition: transform 0.2s, box-shadow 0.2s; display: flex; flex-direction: column; }
.spec-card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(209,157,21,0.1), transparent); }
.spec-card * { position: relative; z-index: 1; }
.spec-card:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(13,31,68,0.25); }
.spec-tier { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(209,157,21,0.7); margin-bottom: 6px; }
.spec-name { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--white); margin-bottom: 16px; }
.spec-price { font-family: 'Playfair Display', serif; font-size: 2.4rem; color: var(--gold); font-weight: 700; line-height: 1; }
.spec-price sup { font-size: 1rem; vertical-align: top; margin-top: 6px; display: inline-block; }
.spec-period { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-bottom: 20px; margin-top: 4px; }
.spec-divider { height: 1px; background: rgba(209,157,21,0.2); margin-bottom: 18px; }
.spec-desc { color: rgba(255,255,255,0.6); font-size: 0.87rem; line-height: 1.65; margin-bottom: 20px; flex: 1; }
.spec-features { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 28px; }
.spec-features li { font-size: 0.84rem; color: rgba(255,255,255,0.75); display: flex; gap: 8px; }
.spec-features li::before { content: '✓'; color: var(--gold); flex-shrink: 0; font-weight: 700; }
.spec-cta { display: block; text-align: center; padding: 12px 20px; border-radius: 8px; border: 1.5px solid rgba(209,157,21,0.4); color: var(--gold); font-weight: 700; font-size: 0.88rem; text-decoration: none; transition: background 0.2s, border-color 0.2s; }
.spec-cta:hover { background: rgba(209,157,21,0.12); border-color: var(--gold); }

/* ADD-ONS */
.addons { padding: 80px 40px; background: var(--cream); }
.addons-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.addon-card { background: var(--white); border: 1px solid #e0d8c8; border-radius: 14px; padding: 30px 26px; transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s; }
.addon-card:hover { box-shadow: 0 12px 36px rgba(13,31,68,0.08); transform: translateY(-3px); border-color: var(--gold); }
.addon-icon { font-size: 2rem; margin-bottom: 14px; }
.addon-tag { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.addon-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--navy); margin-bottom: 10px; }
.addon-price { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.addon-price span { font-size: 0.8rem; font-weight: 400; color: var(--gray); font-family: 'DM Sans', sans-serif; }
.addon-desc { font-size: 0.85rem; color: var(--gray); line-height: 1.6; }

/* FEATURES GRID */
.all-features { padding: 80px 40px; background: var(--navy); }
.all-features-inner { max-width: 1100px; margin: 0 auto; }
.all-features .section-title { color: var(--white); }
.feat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.feat-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(209,157,21,0.18); border-radius: 14px; padding: 26px 24px; transition: background 0.2s, border-color 0.2s; }
.feat-card:hover { background: rgba(209,157,21,0.07); border-color: rgba(209,157,21,0.35); }
.feat-icon { font-size: 1.6rem; margin-bottom: 12px; }
.feat-name { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--white); margin-bottom: 8px; }
.feat-desc { font-size: 0.83rem; color: rgba(255,255,255,0.55); line-height: 1.6; }

@media (max-width: 900px) {
  .pricing-grid, .specialty-grid, .addons-grid, .feat-grid { grid-template-columns: 1fr; }
  .comp-table { display: none; }
  .plans, .specialty, .addons, .comparison, .all-features { padding: 60px 24px; }
}


/* === about page === */

/* MISSION */
.mission { padding: 100px 40px; background: var(--white); }
.mission-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.mission-text .section-tag { display: block; }
.mission-text h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem,3vw,2.6rem); color: var(--navy); line-height: 1.2; margin-bottom: 20px; }
.mission-text h2 em { font-style: italic; color: var(--gold); }
.mission-text p { color: var(--gray); font-size: 1rem; line-height: 1.75; margin-bottom: 16px; }
.mission-text .btn-gold { margin-top: 12px; }
.mission-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.m-stat { background: var(--cream); border: 1px solid #e0d8c8; border-radius: 14px; padding: 28px 24px; text-align: center; }
.m-stat-num { font-family: 'Playfair Display', serif; font-size: 2.8rem; color: var(--gold); font-weight: 700; line-height: 1; }
.m-stat-label { font-size: 0.82rem; color: var(--gray); margin-top: 8px; line-height: 1.4; }

/* VALUES */
.values { padding: 100px 40px; background: var(--cream); }
.values-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.value-card { background: var(--white); border: 1px solid #e0d8c8; border-radius: 14px; padding: 36px 30px; transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s; }
.value-card:hover { box-shadow: 0 12px 36px rgba(13,31,68,0.08); transform: translateY(-3px); border-color: var(--gold); }
.value-num { font-family: 'Playfair Display', serif; font-size: 2rem; color: rgba(209,157,21,0.25); font-weight: 700; margin-bottom: 12px; }
.value-title { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--navy); margin-bottom: 12px; }
.value-desc { font-size: 0.87rem; color: var(--gray); line-height: 1.65; }

/* TEAM */
.team { padding: 100px 40px; background: var(--white); }
.team-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.team-card { text-align: center; }
.team-avatar { width: 100px; height: 100px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--gold); font-weight: 700; border: 3px solid rgba(209,157,21,0.3); }
.team-name { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--navy); margin-bottom: 4px; }
.team-role { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.team-bio { font-size: 0.87rem; color: var(--gray); line-height: 1.65; }

/* STORY */
.story { padding: 100px 40px; background: var(--navy); position: relative; overflow: hidden; }
.story::before { content:''; position:absolute; inset:0; background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(209,157,21,0.06), transparent); }
.story-inner { max-width: 800px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.story-inner .section-tag { color: var(--gold); }
.story-inner h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem,3vw,2.6rem); color: var(--white); margin-bottom: 32px; }
.story-inner h2 em { font-style: italic; color: var(--gold); }
.story-inner p { color: rgba(255,255,255,0.65); font-size: 1rem; line-height: 1.8; margin-bottom: 20px; font-weight: 300; }
.story-inner p strong { color: var(--white); font-weight: 600; }

/* COMPLIANCE */
.compliance { padding: 80px 40px; background: var(--cream); }
.compliance-inner { max-width: 900px; margin: 0 auto; }
.comp-box { background: var(--white); border: 1px solid #e0d8c8; border-radius: 16px; padding: 48px; }
.comp-box h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--navy); margin-bottom: 16px; }
.comp-box p { color: var(--gray); font-size: 0.9rem; line-height: 1.75; margin-bottom: 14px; }
.comp-badges { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 24px; }
.comp-badge { background: rgba(209,157,21,0.08); border: 1px solid rgba(209,157,21,0.3); border-radius: 8px; padding: 10px 18px; font-size: 0.8rem; font-weight: 600; color: var(--navy); letter-spacing: 0.04em; }

/* TESTIMONIALS */
.testimonials { padding: 100px 40px; background: var(--white); }
.testi-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testi-card { background: var(--cream); border: 1px solid #e0d8c8; border-radius: 14px; padding: 30px 26px; }
.testi-stars { color: var(--gold); font-size: 1rem; margin-bottom: 14px; }
.testi-text { font-size: 0.9rem; color: #374151; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 40px; height: 40px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.testi-name { font-weight: 700; font-size: 0.88rem; color: var(--navy); }
.testi-detail { font-size: 0.78rem; color: var(--gray); }

@media (max-width: 900px) {
  .mission-inner { grid-template-columns: 1fr; gap: 48px; }
  .values-grid, .team-grid, .testi-grid { grid-template-columns: 1fr; }
  .mission, .values, .team, .story, .compliance, .testimonials { padding: 60px 24px; }
  .comp-box { padding: 32px 24px; }
}


/* === faq page === */

.faq-section { padding: 80px 40px; }
.faq-section:nth-child(odd) { background: var(--white); }
.faq-section:nth-child(even) { background: var(--cream); }
.faq-inner { max-width: 820px; margin: 0 auto; }
.faq-category { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.faq-cat-title { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--navy); margin-bottom: 40px; }
.faq-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid #e0d8c8; }
.faq-item { border-bottom: 1px solid #e0d8c8; }
.faq-question { width: 100%; background: none; border: none; text-align: left; padding: 22px 0; display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; cursor: pointer; font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 600; color: var(--navy); line-height: 1.4; transition: color 0.2s; }
.faq-question:hover { color: var(--gold); }
.faq-question.open { color: var(--gold); }
.faq-toggle { width: 28px; height: 28px; background: rgba(209,157,21,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.2rem; color: var(--gold); transition: transform 0.3s, background 0.2s; margin-top: 2px; }
.faq-question.open .faq-toggle { transform: rotate(45deg); background: rgba(209,157,21,0.2); }
.faq-answer { display: none; padding: 0 0 22px; color: var(--gray); font-size: 0.92rem; line-height: 1.75; }
.faq-answer.open { display: block; }
.faq-answer p { margin-bottom: 12px; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer a { color: var(--gold); text-decoration: none; font-weight: 600; }
.faq-answer ul { padding-left: 20px; margin-top: 8px; }
.faq-answer ul li { margin-bottom: 6px; }
.faq-answer strong { color: var(--navy); }

/* SEARCH BAR */
.faq-search { max-width: 820px; margin: 0 auto 0; padding: 0 40px; }
.search-wrap { position: relative; margin-bottom: 48px; }
.search-wrap input { width: 100%; padding: 16px 20px 16px 52px; border: 1.5px solid #e0d8c8; border-radius: 10px; font-family: 'DM Sans', sans-serif; font-size: 1rem; color: var(--dark-gray); background: var(--white); outline: none; transition: border-color 0.2s, box-shadow 0.2s; }
.search-wrap input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(209,157,21,0.1); }
.search-wrap input::placeholder { color: #aaa; }
.search-icon { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); font-size: 1.1rem; color: var(--gold); }

/* CONTACT PROMPT */
.faq-contact { padding: 80px 40px; background: var(--navy); }
.faq-contact-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.faq-contact h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem,3vw,2.2rem); color: var(--white); margin-bottom: 14px; }
.faq-contact h2 em { font-style: italic; color: var(--gold); }
.faq-contact p { color: rgba(255,255,255,0.6); font-size: 0.95rem; line-height: 1.65; margin-bottom: 32px; }
.contact-options { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.contact-option { background: rgba(255,255,255,0.05); border: 1px solid rgba(209,157,21,0.2); border-radius: 12px; padding: 24px 18px; text-align: center; text-decoration: none; transition: background 0.2s, border-color 0.2s, transform 0.2s; }
.contact-option:hover { background: rgba(209,157,21,0.08); border-color: rgba(209,157,21,0.4); transform: translateY(-2px); }
.contact-option-icon { font-size: 1.6rem; margin-bottom: 10px; }
.contact-option-label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.contact-option-val { font-size: 0.9rem; color: var(--white); font-weight: 500; }

@media (max-width: 900px) {
  .faq-section { padding: 60px 24px; }
  .faq-search { padding: 0 24px; }
  .faq-contact { padding: 60px 24px; }
  .contact-options { grid-template-columns: 1fr; }
}


/* === contact page === */

.contact-main { padding: 80px 40px; background: var(--white); }
.contact-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.6fr; gap: 72px; align-items: start; }

/* LEFT PANEL */
.contact-info h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--navy); margin-bottom: 16px; line-height: 1.2; }
.contact-info h2 em { font-style: italic; color: var(--gold); }
.contact-info p { color: var(--gray); font-size: 0.92rem; line-height: 1.7; margin-bottom: 36px; }
.contact-methods { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.contact-method { display: flex; align-items: flex-start; gap: 16px; }
.cm-icon { width: 46px; height: 46px; background: rgba(209,157,21,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.cm-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 3px; }
.cm-val { font-size: 0.95rem; color: var(--navy); font-weight: 600; text-decoration: none; }
.cm-val:hover { color: var(--gold); }
.cm-sub { font-size: 0.8rem; color: var(--gray); margin-top: 2px; }
.hours-box { background: var(--cream); border: 1px solid #e0d8c8; border-radius: 12px; padding: 24px; }
.hours-box h4 { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.hours-row { display: flex; justify-content: space-between; font-size: 0.87rem; color: #374151; padding: 7px 0; border-bottom: 1px solid #e8e0d0; }
.hours-row:last-child { border-bottom: none; }
.hours-row span { color: var(--navy); font-weight: 600; }

/* FORM PANEL */
.contact-form-wrap { background: var(--white); }
.steps-indicator { display: flex; align-items: center; justify-content: center; background: var(--navy-mid); border-radius: 16px 16px 0 0; padding: 16px 24px; border: 1px solid rgba(209,157,21,0.2); border-bottom: none; }
.si-step { display: flex; align-items: center; gap: 8px; font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.07em; flex: 1; justify-content: center; }
.si-step.active { color: var(--gold); }
.si-step.done { color: rgba(209,157,21,0.5); }
.si-dot { width: 24px; height: 24px; border-radius: 50%; background: rgba(255,255,255,0.08); border: 2px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; font-size: 0.7rem; flex-shrink: 0; }
.si-step.active .si-dot { background: var(--gold); border-color: var(--gold); color: var(--navy); font-weight: 800; }
.si-step.done .si-dot { background: rgba(209,157,21,0.25); border-color: var(--gold); color: var(--gold); }
.si-line { flex: 1; height: 1px; background: rgba(255,255,255,0.1); max-width: 32px; }
.progress-bar { height: 3px; background: #e8e0d0; overflow: hidden; }
.progress-fill { height: 100%; background: var(--gold); transition: width 0.4s ease; }
.form-card { background: var(--cream); border-radius: 0 0 16px 16px; border: 1px solid rgba(209,157,21,0.15); border-top: none; padding: 40px; box-shadow: 0 12px 40px rgba(13,31,68,0.08); }
.form-section { display: none; }
.form-section.active { display: block; }
.form-section-title { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--navy); margin-bottom: 4px; }
.form-section-sub { color: var(--gray); font-size: 0.87rem; margin-bottom: 28px; line-height: 1.5; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.field-row.single { grid-template-columns: 1fr; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 0.75rem; font-weight: 600; color: #374151; letter-spacing: 0.04em; text-transform: uppercase; }
.field input, .field select, .field textarea { padding: 12px 16px; border: 1.5px solid #e0d8c8; border-radius: 8px; font-family: 'DM Sans', sans-serif; font-size: 0.92rem; color: #1f2937; background: var(--white); outline: none; transition: border-color 0.2s, box-shadow 0.2s; appearance: none; }
.field textarea { resize: vertical; min-height: 100px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(209,157,21,0.1); }
.field input::placeholder, .field textarea::placeholder { color: #aaa; }
.score-picker { display: grid; grid-template-columns: repeat(5,1fr); gap: 8px; margin-bottom: 20px; }
.score-btn { padding: 10px 4px; border-radius: 8px; border: 2px solid #e0d8c8; background: var(--white); cursor: pointer; text-align: center; transition: all 0.2s; }
.score-btn:hover { border-color: var(--gold); }
.score-btn.selected { border-color: var(--gold); background: rgba(209,157,21,0.1); }
.score-range { font-size: 0.72rem; font-weight: 700; color: var(--navy); }
.score-label { font-size: 0.62rem; color: var(--gray); margin-top: 2px; }
.score-bar { height: 3px; border-radius: 2px; margin-top: 6px; }
.score-btn:nth-child(1) .score-bar { background: #ef4444; }
.score-btn:nth-child(2) .score-bar { background: #f97316; }
.score-btn:nth-child(3) .score-bar { background: #eab308; }
.score-btn:nth-child(4) .score-bar { background: #84cc16; }
.score-btn:nth-child(5) .score-bar { background: #22c55e; }
.check-group { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 20px; }
.check-btn { display: flex; align-items: center; gap: 8px; padding: 10px 12px; border-radius: 8px; border: 1.5px solid #e0d8c8; background: var(--white); cursor: pointer; font-size: 0.82rem; color: #374151; transition: all 0.2s; user-select: none; font-weight: 500; }
.check-btn:hover { border-color: var(--gold); }
.check-btn.selected { border-color: var(--gold); background: rgba(209,157,21,0.08); color: var(--navy); }
.consent-box { background: var(--white); border-radius: 8px; padding: 14px 16px; font-size: 0.72rem; color: var(--gray); line-height: 1.55; margin-bottom: 20px; border: 1px solid #e0d8c8; }
.form-nav { display: flex; justify-content: space-between; align-items: center; }
.btn-back { background: none; border: 1.5px solid #d0c8b8; color: var(--gray); padding: 11px 22px; border-radius: 8px; font-family: 'DM Sans', sans-serif; font-size: 0.88rem; font-weight: 600; cursor: pointer; transition: all 0.2s; }
.btn-back:hover { border-color: var(--navy); color: var(--navy); }
.btn-next { background: var(--gold); color: var(--navy); padding: 13px 28px; border-radius: 8px; border: none; font-family: 'Playfair Display', serif; font-size: 0.95rem; font-weight: 700; cursor: pointer; transition: background 0.2s, transform 0.15s; display: flex; align-items: center; gap: 8px; }
.btn-next:hover { background: var(--gold-light); transform: translateY(-2px); }
.field-label-sm { font-size: 0.75rem; font-weight: 700; color: #374151; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }
.field-label-sm span { font-weight: 400; text-transform: none; font-size: 0.7rem; color: #9ca3af; }
.success-screen { text-align: center; padding: 20px 0; }
.success-icon { width: 72px; height: 72px; background: rgba(209,157,21,0.1); border: 2px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin: 0 auto 24px; animation: popIn 0.5s cubic-bezier(.34,1.56,.64,1) both; }
@keyframes popIn { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.success-screen h2 { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--navy); margin-bottom: 12px; }
.success-screen p { color: var(--gray); font-size: 0.92rem; line-height: 1.65; max-width: 380px; margin: 0 auto 28px; }
.next-steps { display: flex; flex-direction: column; gap: 12px; text-align: left; margin: 0 auto 28px; }
.next-step { display: flex; align-items: flex-start; gap: 12px; padding: 14px 18px; background: var(--white); border-radius: 8px; border: 1px solid #e0d8c8; }
.ns-num { width: 26px; height: 26px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.ns-text { font-size: 0.85rem; color: #374151; line-height: 1.4; }
.ns-text strong { color: var(--navy); }
.btn-call-success { display: inline-flex; align-items: center; gap: 10px; background: var(--navy); color: var(--white); padding: 14px 28px; border-radius: 8px; text-decoration: none; font-weight: 700; font-size: 0.95rem; transition: background 0.2s; }
.btn-call-success:hover { background: #1a3060; }

/* MAP / AVAILABILITY */
.availability { padding: 80px 40px; background: var(--cream); }
.availability-inner { max-width: 1100px; margin: 0 auto; }
.avail-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.avail-card { background: var(--white); border: 1px solid #e0d8c8; border-radius: 12px; padding: 24px 20px; text-align: center; }
.avail-icon { font-size: 1.6rem; margin-bottom: 10px; }
.avail-title { font-weight: 700; font-size: 0.9rem; color: var(--navy); margin-bottom: 6px; }
.avail-desc { font-size: 0.8rem; color: var(--gray); line-height: 1.5; }

@media (max-width: 900px) {
  .contact-main { padding: 60px 24px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .score-picker { grid-template-columns: repeat(3,1fr); }
  .field-row { grid-template-columns: 1fr; }
  .availability { padding: 60px 24px; }
  .avail-grid { grid-template-columns: 1fr 1fr; }
}


/* === blog page === */

.blog-main { padding: 80px 40px; background: var(--white); }
.blog-inner { max-width: 1100px; margin: 0 auto; }

/* FEATURED */
.featured-post { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; margin-bottom: 80px; padding-bottom: 80px; border-bottom: 1px solid #e0d8c8; }
.featured-img { background: var(--navy); border-radius: 16px; aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; font-size: 4rem; position: relative; overflow: hidden; }
.featured-img::before { content:''; position:absolute; inset:0; background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(209,157,21,0.1), transparent); }
.featured-tag { display: inline-block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); background: rgba(209,157,21,0.1); border: 1px solid rgba(209,157,21,0.25); padding: 4px 12px; border-radius: 100px; margin-bottom: 14px; }
.featured-title { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem,2.5vw,2rem); color: var(--navy); line-height: 1.2; margin-bottom: 14px; text-decoration: none; display: block; transition: color 0.2s; }
.featured-title:hover { color: var(--gold); }
.featured-excerpt { color: var(--gray); font-size: 0.92rem; line-height: 1.7; margin-bottom: 20px; }
.post-meta { display: flex; align-items: center; gap: 16px; font-size: 0.78rem; color: #9ca3af; }
.post-meta span { font-weight: 600; color: var(--navy); }
.read-more { color: var(--gold); font-weight: 700; font-size: 0.88rem; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s; }
.read-more:hover { gap: 10px; }

/* GRID */
.blog-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-btn { padding: 8px 18px; border-radius: 100px; border: 1.5px solid #e0d8c8; background: transparent; font-family: 'DM Sans', sans-serif; font-size: 0.82rem; font-weight: 600; color: var(--navy); cursor: pointer; transition: all 0.2s; }
.filter-btn:hover, .filter-btn.active { background: var(--gold); border-color: var(--gold); color: var(--navy); }

.posts-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.post-card { display: flex; flex-direction: column; border: 1px solid #e0d8c8; border-radius: 14px; overflow: hidden; background: var(--white); transition: box-shadow 0.2s, transform 0.2s; }
.post-card:hover { box-shadow: 0 12px 36px rgba(13,31,68,0.09); transform: translateY(-3px); }
.post-thumb { background: var(--navy); aspect-ratio: 21/9; display: flex; align-items: center; justify-content: center; font-size: 4.5rem; position: relative; }
.post-thumb::before { content:''; position:absolute; inset:0; background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(209,157,21,0.08), transparent); }
.post-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.post-tag { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.post-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--navy); line-height: 1.3; margin-bottom: 10px; text-decoration: none; display: block; flex: 1; transition: color 0.2s; }
.post-title:hover { color: var(--gold); }
.post-excerpt { font-size: 0.84rem; color: var(--gray); line-height: 1.6; margin-bottom: 16px; }
.post-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 14px; border-top: 1px solid #f0ead8; }
.post-date { font-size: 0.75rem; color: #9ca3af; }

/* NEWSLETTER */
.newsletter { padding: 80px 40px; background: var(--cream); }
.nl-box { max-width: 600px; margin: 0 auto; text-align: center; }
.nl-box h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--navy); margin-bottom: 12px; }
.nl-box h2 em { font-style: italic; color: var(--gold); }
.nl-box p { color: var(--gray); font-size: 0.92rem; line-height: 1.65; margin-bottom: 28px; }
.nl-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; }
.nl-input { flex: 1; padding: 13px 18px; border: 1.5px solid #e0d8c8; border-radius: 8px; font-family: 'DM Sans', sans-serif; font-size: 0.92rem; outline: none; transition: border-color 0.2s; }
.nl-input:focus { border-color: var(--gold); }
.nl-input::placeholder { color: #aaa; }
.nl-note { font-size: 0.75rem; color: #9ca3af; margin-top: 12px; }

@media (max-width: 900px) {
  .blog-main { padding: 60px 24px; }
  .featured-post { grid-template-columns: 1fr; gap: 32px; }
  .posts-grid { grid-template-columns: 1fr; }
  .newsletter { padding: 60px 24px; }
  .nl-form { flex-direction: column; }
}



/* ═══════════════════════════════════════════
   MINI CONTACT SECTION
═══════════════════════════════════════════ */

/* ── MINI CONTACT (on every page) ── */
.mini-contact { padding: 80px 40px; background: var(--navy); position: relative; overflow: hidden; }
.mini-contact::before { content:''; position:absolute; inset:0; background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(209,157,21,0.07), transparent); }
.mini-contact-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
.mc-tag { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.mc-title { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem,2.5vw,2.2rem); color: var(--white); line-height: 1.2; margin-bottom: 16px; }
.mc-title em { font-style: italic; color: var(--gold); }
.mc-desc { color: rgba(255,255,255,0.6); font-size: 0.95rem; line-height: 1.7; margin-bottom: 32px; }
.mc-methods { display: flex; flex-direction: column; gap: 16px; }
.mc-method { display: flex; align-items: center; gap: 16px; text-decoration: none; padding: 16px 20px; background: rgba(255,255,255,0.05); border: 1px solid rgba(209,157,21,0.2); border-radius: 10px; transition: background 0.2s, border-color 0.2s; }
.mc-method:hover { background: rgba(209,157,21,0.1); border-color: rgba(209,157,21,0.4); }
.mc-icon { font-size: 1.4rem; flex-shrink: 0; }
.mc-method-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 3px; }
.mc-method-val { font-size: 0.95rem; color: var(--white); font-weight: 600; }
.mc-form-card { background: var(--white); border-radius: 16px; padding: 36px; }
.mc-form-title { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--navy); margin-bottom: 24px; }
.mc-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.mc-field label { font-size: 0.72rem; font-weight: 700; color: #374151; letter-spacing: 0.06em; text-transform: uppercase; }
.mc-field input, .mc-field select { padding: 12px 16px; border: 1.5px solid #e0d8c8; border-radius: 8px; font-family: 'DM Sans', sans-serif; font-size: 0.92rem; color: #1f2937; background: var(--white); outline: none; transition: border-color 0.2s, box-shadow 0.2s; appearance: none; }
.mc-field input:focus, .mc-field select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(209,157,21,0.1); }
.mc-field input::placeholder { color: #aaa; }
.mc-btn { width: 100%; background: var(--gold); color: var(--navy); border: none; padding: 14px; border-radius: 8px; font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; cursor: pointer; transition: background 0.2s, transform 0.15s; margin-bottom: 12px; }
.mc-btn:hover { background: var(--gold-light); transform: translateY(-2px); }
.mc-note { font-size: 0.78rem; color: var(--gray); text-align: center; }
.mc-note a { color: var(--gold); font-weight: 700; text-decoration: none; }
@media (max-width: 900px) {
  .mini-contact { padding: 60px 24px; }
  .mini-contact-inner { grid-template-columns: 1fr; gap: 40px; }
}


/* HERO MOTTO */
.hero-motto {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: var(--gold);
  letter-spacing: 0.02em;
  margin-bottom: 18px;
  margin-top: -4px;
  opacity: 0.92;
}

/* Footer inside scrollable area */
footer { margin-top: 0; }

