:root {
  --ink: #0f2540;          /* dark navy text (Mint-style) */
  --ink-soft: #41566f;
  --purple: #7c3aed;
  --purple-light: #a855f7;
  --purple-dark: #5b21b6;
  --purple-bg: #f5f3ff;
  --purple-tint: #ede9fe;
  --black: #0a0a0a;
  --white: #ffffff;
  --gray-50: #f7f9fc;
  --gray-100: #eef2f7;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gold: #f59e0b;
  --green: #10b981;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --shadow-sm: 0 2px 12px rgba(15,37,64,0.06);
  --shadow: 0 8px 30px rgba(15,37,64,0.08);
  --shadow-lg: 0 18px 50px rgba(15,37,64,0.14);
  --grad: linear-gradient(135deg, #6366f1 0%, #7c3aed 55%, #a855f7 100%);
  --grad-soft: linear-gradient(135deg, #f5f3ff 0%, #faf5ff 100%);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4, h5 { color: var(--ink); line-height: 1.15; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--gray-100);
  padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 74px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { height: 46px; width: auto; border-radius: 8px; }
.nav-logo .nav-logo-text { font-size: 1.25rem; font-weight: 800; color: var(--ink); letter-spacing: 1px; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { color: var(--ink-soft); text-decoration: none; font-size: 0.92rem; font-weight: 600; transition: color 0.2s; }
.nav-links a:hover { color: var(--purple); }
.nav-call { display: inline-flex; align-items: center; gap: 7px; background: var(--purple-bg); color: var(--purple-dark) !important; padding: 9px 16px; border-radius: 100px; font-weight: 700 !important; }
.nav-cta { background: var(--grad); color: var(--white) !important; padding: 11px 24px; border-radius: 100px; font-weight: 700 !important; box-shadow: 0 6px 18px rgba(124,58,237,0.35); transition: transform 0.2s !important; }
.nav-cta:hover { transform: translateY(-1px); color: var(--white) !important; }

/* ── BUTTONS ── */
.btn-primary { background: var(--grad); color: var(--white); padding: 16px 34px; border-radius: 100px; font-size: 1rem; font-weight: 700; text-decoration: none; border: none; cursor: pointer; transition: all 0.2s; display: inline-block; box-shadow: 0 8px 22px rgba(124,58,237,0.32); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(124,58,237,0.45); }
.btn-secondary { background: var(--white); color: var(--ink); padding: 16px 34px; border-radius: 100px; font-size: 1rem; font-weight: 700; text-decoration: none; border: 2px solid var(--gray-200); cursor: pointer; transition: all 0.2s; display: inline-block; }
.btn-secondary:hover { border-color: var(--purple); color: var(--purple); }

/* ── HERO ── */
.hero { background: var(--grad-soft); position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -120px; right: -120px; width: 480px; height: 480px; background: radial-gradient(circle, rgba(124,58,237,0.18), transparent 65%); border-radius: 50%; }
.hero-inner { max-width: 1200px; margin: 0 auto; padding: 84px 24px; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--white); border: 1px solid var(--purple-tint); color: var(--purple-dark); font-size: 0.8rem; font-weight: 700; padding: 7px 16px; border-radius: 100px; margin-bottom: 22px; box-shadow: var(--shadow-sm); }
.hero h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); font-weight: 800; letter-spacing: -1.2px; margin-bottom: 20px; }
.hero h1 .highlight { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-sub { font-size: 1.12rem; color: var(--ink-soft); margin-bottom: 30px; max-width: 500px; }
.hero-stars { display: flex; align-items: center; gap: 10px; margin-bottom: 30px; }
.stars { color: var(--gold); font-size: 1.2rem; letter-spacing: 2px; }
.hero-stars span { color: var(--ink-soft); font-size: 0.92rem; }
.hero-stars strong { color: var(--ink); }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual { position: relative; }
.hero-visual img { border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); width: 100%; object-fit: cover; aspect-ratio: 4/5; }
.hero-float { position: absolute; bottom: 20px; left: -20px; background: var(--white); border-radius: var(--radius); padding: 14px 20px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px; }
.hero-float .hf-num { font-size: 1.4rem; font-weight: 800; color: var(--purple); }
.hero-float .hf-label { font-size: 0.78rem; color: var(--ink-soft); }

/* ── PROOF BAR ── */
.proof-bar { background: var(--ink); padding: 16px 24px; display: flex; align-items: center; justify-content: center; gap: 36px; flex-wrap: wrap; }
.proof-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.92); font-size: 0.88rem; font-weight: 600; }
.proof-item .dot { width: 6px; height: 6px; background: var(--purple-light); border-radius: 50%; }

/* ── SECTIONS ── */
section { padding: 88px 24px; }
.container { max-width: 1200px; margin: 0 auto; }
.section-label { font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1.8px; color: var(--purple); margin-bottom: 12px; }
.section-title { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 800; letter-spacing: -0.8px; margin-bottom: 16px; }
.section-sub { font-size: 1.05rem; color: var(--ink-soft); max-width: 600px; }
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* ── SERVICES ── */
.services { background: var(--gray-50); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 52px; }
.service-card { background: var(--white); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100); transition: all 0.25s; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.service-icon { width: 60px; height: 60px; background: var(--grad); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.7rem; margin-bottom: 20px; }
.service-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.service-card p { font-size: 0.92rem; color: var(--ink-soft); }

/* ── PROCESS / DEIONIZED ── */
.process-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; margin-top: 36px; }
.process-visual { background: var(--ink); border-radius: var(--radius-xl); padding: 48px 40px; color: var(--white); position: relative; overflow: hidden; }
.process-visual::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 15%, rgba(124,58,237,0.4), transparent 60%); }
.process-visual .pv-inner { position: relative; z-index: 1; }
.process-visual .pv-icon { font-size: 3rem; margin-bottom: 16px; }
.process-visual h3 { color: var(--white); font-size: 1.6rem; font-weight: 800; margin-bottom: 12px; }
.process-visual p { color: rgba(255,255,255,0.78); font-size: 0.96rem; }
.process-steps { display: flex; flex-direction: column; gap: 22px; }
.process-step { display: flex; gap: 16px; }
.process-step .num { width: 42px; height: 42px; border-radius: 14px; background: var(--purple-bg); color: var(--purple-dark); display: flex; align-items: center; justify-content: center; font-weight: 800; flex-shrink: 0; }
.process-step h4 { font-size: 1.08rem; font-weight: 700; margin-bottom: 4px; }
.process-step p { font-size: 0.92rem; color: var(--ink-soft); }

/* ── PLANS (homepage marketing cards) ── */
.plans { background: var(--grad-soft); }
.plan-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px; margin-top: 52px; align-items: stretch; }
.plan-card { background: var(--white); border-radius: var(--radius-xl); padding: 38px 32px; position: relative; box-shadow: var(--shadow); border: 2px solid transparent; display: flex; flex-direction: column; text-align: center; }
.plan-card.featured { border-color: var(--purple); box-shadow: var(--shadow-lg); }
.plan-badge { position: absolute; top: -16px; left: 50%; transform: translateX(-50%); background: var(--ink); color: var(--white); font-size: 0.72rem; font-weight: 800; padding: 7px 18px; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.5px; white-space: nowrap; }
.plan-name { font-size: 0.82rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--purple); margin-bottom: 14px; }
.plan-off { font-size: 2.8rem; font-weight: 900; color: var(--ink); letter-spacing: -1px; }
.plan-off-sub { font-size: 0.85rem; font-weight: 700; letter-spacing: 1px; color: var(--ink-soft); text-transform: uppercase; margin-bottom: 22px; }
.plan-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; text-align: left; }
.plan-list li { font-size: 0.9rem; color: var(--ink-soft); display: flex; gap: 10px; align-items: flex-start; }
.plan-list li .ck { color: var(--green); font-weight: 800; flex-shrink: 0; }
.plan-list li .cx { color: var(--gray-300); font-weight: 800; flex-shrink: 0; }
.plan-card .btn-primary { margin-top: auto; width: 100%; }
.plan-card.featured .plan-name { color: var(--purple); }

/* ── MEMBERSHIP BENEFITS ── */
.club-benefits { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; margin-top: 52px; }
.club-benefit { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); }
.club-benefit .cb-icon { width: 52px; height: 52px; background: var(--purple-bg); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 14px; }
.club-benefit h4 { font-size: 1.02rem; font-weight: 700; margin-bottom: 6px; }
.club-benefit p { color: var(--ink-soft); font-size: 0.88rem; }

/* ── WHY US ── */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; margin-top: 52px; }
.why-item { text-align: center; padding: 24px 18px; }
.why-icon { width: 64px; height: 64px; margin: 0 auto 16px; background: var(--purple-bg); border-radius: 18px; display: flex; align-items: center; justify-content: center; font-size: 1.9rem; }
.why-item h4 { font-size: 1.02rem; font-weight: 700; margin-bottom: 8px; }
.why-item p { font-size: 0.88rem; color: var(--ink-soft); }

/* ── GALLERY ── */
.gallery { background: var(--gray-50); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; margin-top: 52px; }
.gallery-grid img { border-radius: var(--radius-lg); aspect-ratio: 4/3; object-fit: cover; width: 100%; box-shadow: var(--shadow-sm); }
.gallery-ph { border-radius: var(--radius-lg); aspect-ratio: 4/3; background: var(--grad); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.9); font-size: 0.85rem; font-weight: 600; text-align: center; padding: 20px; }

/* ── REVIEWS ── */
.reviews { background: var(--white); }
.reviews-head { text-align: center; }
.reviews-rating { display: inline-flex; align-items: center; gap: 14px; margin: 24px 0 8px; padding: 12px 22px; background: var(--gray-50); border-radius: 100px; }
.reviews-rating .stars { font-size: 1.1rem; }
.reviews-rating .rr-text { font-size: 0.92rem; color: var(--ink-soft); font-weight: 600; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-top: 48px; }
.review-card { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); }
.review-top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--grad); display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: 0.95rem; }
.review-name { font-weight: 700; font-size: 0.92rem; }
.review-meta { font-size: 0.76rem; color: var(--gray-400); }
.review-stars { color: var(--gold); font-size: 0.95rem; letter-spacing: 2px; margin-bottom: 10px; }
.review-text { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.65; }
.reviews-cta { text-align: center; margin-top: 44px; }
.google-btn { display: inline-flex; align-items: center; gap: 10px; background: var(--white); border: 2px solid var(--gray-200); color: var(--ink); padding: 14px 28px; border-radius: 100px; font-weight: 700; font-size: 0.9rem; text-decoration: none; transition: all 0.2s; }
.google-btn:hover { border-color: var(--purple); color: var(--purple); }

/* ── AREAS ── */
.areas-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; margin-top: 52px; }
.area-card { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius); padding: 22px; text-align: center; transition: all 0.2s; text-decoration: none; color: inherit; display: block; box-shadow: var(--shadow-sm); }
.area-card:hover { border-color: var(--purple-light); transform: translateY(-3px); box-shadow: var(--shadow); }
.area-card .area-icon { font-size: 1.6rem; margin-bottom: 8px; }
.area-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.area-card p { font-size: 0.76rem; color: var(--purple); font-weight: 600; }

/* ── FAQ ── */
.faq-list { max-width: 780px; margin: 52px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; background: var(--white); }
.faq-q { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 24px; font-weight: 700; font-size: 0.96rem; cursor: pointer; transition: background 0.2s; }
.faq-q:hover { background: var(--gray-50); }
.faq-q .arrow { font-size: 1.2rem; transition: transform 0.3s; color: var(--purple); flex-shrink: 0; }
.faq-item.open .faq-q .arrow { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a p { padding: 0 24px 20px; font-size: 0.9rem; color: var(--ink-soft); line-height: 1.7; }

/* ── CTA BAND ── */
.cta-band { background: var(--grad); padding: 80px 24px; text-align: center; }
.cta-band h2 { color: var(--white); font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,0.9); margin-bottom: 32px; font-size: 1.05rem; }
.cta-btn-white { background: var(--white); color: var(--purple-dark); padding: 17px 42px; border-radius: 100px; font-size: 1rem; font-weight: 800; text-decoration: none; display: inline-block; transition: all 0.2s; box-shadow: var(--shadow-lg); }
.cta-btn-white:hover { transform: translateY(-2px); }

/* ── FOOTER ── */
footer { background: var(--ink); color: rgba(255,255,255,0.6); padding: 60px 24px 32px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand .logo img { height: 50px; border-radius: 8px; }
.footer-brand .logo span { font-size: 1.25rem; font-weight: 800; color: var(--white); letter-spacing: 1px; }
.footer-brand p { font-size: 0.86rem; line-height: 1.7; }
footer h5 { color: var(--white); font-size: 0.85rem; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; }
footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
footer ul li a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.86rem; transition: color 0.2s; }
footer ul li a:hover { color: var(--white); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 0.8rem; }

/* ── FLOATING CTA ── */
.float-call { position: fixed; bottom: 24px; right: 24px; z-index: 99; background: var(--grad); color: var(--white); padding: 18px 34px; border-radius: 100px; font-weight: 700; font-size: 1.08rem; text-decoration: none; box-shadow: 0 10px 32px rgba(124,58,237,0.55); display: flex; align-items: center; gap: 9px; transition: all 0.2s; }
.float-call:hover { transform: translateY(-2px) scale(1.03); }

/* ── CITY PAGES ── */
.city-hero { background: var(--grad-soft); padding: 84px 24px 72px; position: relative; overflow: hidden; }
.city-hero::before { content: ''; position: absolute; top: -120px; right: -100px; width: 420px; height: 420px; background: radial-gradient(circle, rgba(124,58,237,0.16), transparent 65%); border-radius: 50%; }
.city-hero .container { position: relative; z-index: 1; }
.breadcrumb { font-size: 0.82rem; color: var(--ink-soft); margin-bottom: 20px; }
.breadcrumb a { color: var(--purple); text-decoration: none; }
.city-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; letter-spacing: -1px; margin-bottom: 18px; max-width: 800px; }
.city-hero h1 .highlight { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.city-hero p { font-size: 1.1rem; color: var(--ink-soft); max-width: 620px; margin-bottom: 30px; }
.city-body { padding: 72px 24px; }
.city-body .container { max-width: 820px; }
.city-body h2 { font-size: 1.65rem; font-weight: 800; margin: 38px 0 14px; letter-spacing: -0.5px; }
.city-body h2:first-child { margin-top: 0; }
.city-body p { color: var(--ink-soft); margin-bottom: 16px; }
.city-body ul { margin: 0 0 20px 22px; color: var(--ink-soft); }
.city-body ul li { margin-bottom: 8px; }
.neighborhood-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0; }
.neighborhood-tags span { background: var(--purple-bg); color: var(--purple-dark); font-size: 0.82rem; font-weight: 600; padding: 7px 15px; border-radius: 100px; }

/* ── NAV "OUR SERVICES" DROPDOWN ── */
.nav-dd { position: relative; }
.nav-dd > a .dd-arrow { font-size: 0.7em; }
.nav-dd-menu { display: none; position: absolute; top: 100%; left: -16px; background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius); box-shadow: var(--shadow-lg); list-style: none; padding: 10px; min-width: 256px; z-index: 150; }
.nav-dd:hover .nav-dd-menu, .nav-dd:focus-within .nav-dd-menu { display: block; }
.nav-dd-menu li a { display: block; padding: 9px 14px; border-radius: 10px; font-size: 0.88rem; }
.nav-dd-menu li a:hover { background: var(--purple-bg); color: var(--purple-dark); }

/* ── SERVICE PAGE HERO (Mint-style photo hero) ── */
.svc-hero { background-color: var(--ink); background-size: cover; background-position: center; padding: 170px 24px 110px; position: relative; }
.svc-hero .breadcrumb, .svc-hero .breadcrumb a { color: rgba(255,255,255,0.78); }
.svc-hero h1 { color: var(--white); font-size: clamp(2.3rem, 5.5vw, 3.9rem); font-weight: 800; letter-spacing: -1.5px; margin-bottom: 22px; max-width: 780px; }
.svc-hero p { color: rgba(255,255,255,0.92); font-size: 1.1rem; max-width: 640px; margin-bottom: 36px; }

/* ── HOMEPAGE FULL-BLEED HERO (Mint-style: LEFT-aligned content, extends .svc-hero) ── */
.home-hero { min-height: min(76vh, 780px); display: flex; align-items: center; padding: 110px 24px 120px; }
.home-hero .container { width: 100%; display: flex; flex-direction: column; align-items: flex-start; text-align: left; }
.home-hero h1 { max-width: none; text-shadow: 0 0 30px rgba(0,0,0,0.8); }
.home-hero p { max-width: 760px; }
.home-hero .hero-btns { justify-content: flex-start; }
.hero-rating { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 26px; }
.hero-rating .hr-stars { background: rgba(255,255,255,0.3); color: var(--gold); padding: 7px 14px; border-radius: 100px; font-size: 1rem; letter-spacing: 3px; line-height: 1; }
.hero-rating a { color: var(--white); font-size: 0.92rem; font-weight: 600; text-decoration: none; }
.hero-rating a:hover { text-decoration: underline; }
.hero-rating svg { background: var(--white); border-radius: 50%; padding: 2px; }
@media (max-width: 860px) { .home-hero { min-height: 0; padding: 80px 20px 90px; } }

/* ── SAVE BIG membership (shared with service pages) ── */
.savebig { background: linear-gradient(180deg, #ffffff 0%, var(--purple-bg) 100%); text-align: center; }
.savebig-title { font-size: clamp(2.6rem, 6vw, 4rem); font-weight: 900; letter-spacing: -1.5px; }
.savebig-sub { font-size: clamp(1.2rem, 3vw, 1.8rem); font-weight: 700; color: var(--purple); margin-bottom: 8px; }
.savebig .video-wrap { position: relative; padding-bottom: 52%; height: 0; max-width: 900px; margin: 40px auto 8px; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); background: var(--ink); }
.savebig .video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.savebig .video-note { font-size: 0.82rem; color: var(--ink-soft); margin-bottom: 20px; }

/* ── BIG REVIEWS (shared) ── */
.reviews-bigtitle { font-size: clamp(2.4rem, 6vw, 3.8rem) !important; }
.rb-kicker { display: block; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.reviews-grid.big { grid-template-columns: repeat(auto-fit, minmax(420px, 1fr)); gap: 28px; }
.reviews-grid.big .review-card { padding: 36px; border-radius: var(--radius-xl); }
.reviews-grid.big .review-avatar { width: 56px; height: 56px; font-size: 1.1rem; }
.reviews-grid.big .review-name { font-size: 1.05rem; }
.reviews-grid.big .review-stars { font-size: 1.15rem; }
.reviews-grid.big .review-text { font-size: 1.05rem; line-height: 1.7; }
.google-embed-slot { max-width: 1100px; margin: 40px auto 0; }
@media (max-width: 640px) { .reviews-grid.big { grid-template-columns: 1fr; } }

/* ── SEO/DESCRIPTION CONTENT (shared) ── */
.seo-content { background: var(--gray-50); }
.seo-content .container { max-width: 860px; }
.seo-content h2 { font-size: clamp(1.5rem, 3.4vw, 2.1rem); font-weight: 800; letter-spacing: -0.5px; margin: 36px 0 14px; }
.seo-content h2:first-of-type { margin-top: 0; }
.seo-content p { color: var(--ink-soft); margin-bottom: 16px; }
.seo-content ul, .seo-content ol { margin: 0 0 20px 22px; color: var(--ink-soft); }
.seo-content ul li, .seo-content ol li { margin-bottom: 8px; }
.seo-content strong { color: var(--ink); }
.seo-content a { color: var(--purple); font-weight: 600; text-decoration: none; }
.seo-content a:hover { text-decoration: underline; }
.seo-content a.btn-primary { color: var(--white); }

/* ── 4-STEP PROCESS (Mint-style photo cards) ── */
.steps { text-align: center; }
.steps-title { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 900; letter-spacing: -1px; line-height: 1.05; }
.steps-sub { color: var(--purple); font-weight: 800; letter-spacing: 2.5px; font-size: clamp(0.95rem, 2.2vw, 1.3rem); text-transform: uppercase; margin: 12px 0 48px; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-bottom: 48px; }
.step-card { position: relative; aspect-ratio: 1/1; border-radius: var(--radius-lg); overflow: hidden; background: var(--grad); box-shadow: var(--shadow); }
.step-hint { position: absolute; bottom: 12px; left: 0; right: 0; text-align: center; color: rgba(255,255,255,0.85); font-size: 0.7rem; font-weight: 600; padding: 0 10px; }
.step-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.step-label { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; text-align: center; padding: 16px; background: rgba(10,18,32,0.32); color: var(--white); font-weight: 800; font-style: italic; font-size: clamp(1.15rem, 1.8vw, 1.55rem); letter-spacing: 0.5px; text-shadow: 0 2px 14px rgba(0,0,0,0.5); }
@media (max-width: 1000px) { .steps-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .steps-grid { grid-template-columns: 1fr; } }

/* ── NUMBERED FAQ (Mint-style, service pages) ── */
.nfaq-list { max-width: 860px; margin: 48px auto 0; display: flex; flex-direction: column; gap: 14px; text-align: left; }
.nfaq-item { border: 1px solid var(--gray-200); border-radius: var(--radius-lg); background: var(--white); overflow: hidden; }
.nfaq-q { display: flex; align-items: center; gap: 18px; padding: 22px 26px; cursor: pointer; font-weight: 700; font-size: 1rem; transition: background 0.2s; }
.nfaq-q:hover { background: var(--gray-50); }
.nfaq-num { font-size: 1.45rem; font-weight: 900; color: var(--purple); opacity: 0.35; min-width: 44px; flex-shrink: 0; }
.nfaq-q .arrow { margin-left: auto; font-size: 1.2rem; transition: transform 0.3s; color: var(--purple); flex-shrink: 0; }
.nfaq-item.open .nfaq-q .arrow { transform: rotate(180deg); }
.nfaq-item .faq-a p { padding: 0 26px 22px 88px; }
@media (max-width: 560px) { .nfaq-item .faq-a p { padding-left: 26px; } }

/* ── SERVICE PAGE SIDEBAR (all-services rail beside description, Mint-style) ── */
.seo-content .container.svc-detail-wrap { max-width: 1200px; display: flex; flex-direction: column; gap: 44px; }
.svc-detail-main { min-width: 0; flex-grow: 1; }
.svc-side { min-width: 280px; }
.svc-side-list { position: sticky; top: 100px; display: flex; flex-direction: column; list-style: none; margin: 0; padding: 0; }
.svc-side-list li { margin: 0; }
.seo-content a.svc-side-link { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 17px 0; border-bottom: 1px solid var(--gray-200); color: var(--ink); font-weight: 700; text-decoration: none; }
.seo-content a.svc-side-link:hover { text-decoration: none; }
.svc-side-link .svc-side-label { display: flex; align-items: center; min-width: 0; }
.svc-side-link .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--purple); margin-right: 11px; flex-shrink: 0; }
.svc-side-link .arr { color: rgba(124,58,237,0.4); flex-shrink: 0; transition: transform 0.2s, color 0.2s; }
.svc-side-link:hover .arr { transform: translateX(4px); color: var(--purple); }
@media (min-width: 920px) {
  .seo-content .container.svc-detail-wrap { flex-direction: row; justify-content: space-between; gap: 64px; }
  .svc-detail-main { order: 1; max-width: 680px; }
  .svc-side { order: 2; width: 400px; flex-shrink: 0; }
}

/* ── CLICKABLE SERVICE CARDS ── */
a.svc-photo-card { display: block; text-decoration: none; color: inherit; }
.svc-more { display: inline-block; margin-top: 10px; color: var(--purple); font-weight: 700; font-size: 0.85rem; }

/* ── CTA BAND buttons row ── */
.cta-band .cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-btn-ghost { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.7); padding: 15px 40px; border-radius: 100px; font-size: 1rem; font-weight: 800; text-decoration: none; display: inline-block; transition: all 0.2s; }
.cta-btn-ghost:hover { background: rgba(255,255,255,0.12); }

/* ── HOMEPAGE SERVICES MOSAIC (Mint-style photo-card grid: 2 big + 4 quarter + 3 third) ── */
.mosaic-section { background: var(--white); text-align: center; }
.mosaic { display: grid; grid-template-columns: repeat(12, 1fr); gap: 14px; margin-top: 44px; text-align: center; }
.mcard { position: relative; grid-column: span 12; height: 380px; border-radius: var(--radius-lg); overflow: hidden; display: block; text-decoration: none; background: var(--grad); box-shadow: var(--shadow-sm); }
.mcard-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; background-size: cover; background-position: center; transform: scale(1.08); transition: transform 0.5s ease; }
.mcard-veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,16,28,0.18) 0%, rgba(10,16,28,0.52) 100%); transition: background 0.3s; }
.mcard-label { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; padding: 22px; }
.mcard-label h3 { color: var(--white); font-size: 1.8rem; font-weight: 800; letter-spacing: -0.5px; line-height: 1.15; text-shadow: 0 2px 16px rgba(0,0,0,0.6); }
.mcard.feat .mcard-label h3 { font-size: 2.4rem; }
.mcard-label p { color: rgba(255,255,255,0.95); font-size: 0.88rem; line-height: 1.5; max-width: 92%; opacity: 0; transform: translateY(8px); transition: opacity 0.3s, transform 0.3s; text-shadow: 0 1px 10px rgba(0,0,0,0.6); }
.mcard:hover .mcard-img { transform: scale(1.16); }
.mcard:hover .mcard-veil { background: linear-gradient(180deg, rgba(10,16,28,0.32) 0%, rgba(10,16,28,0.66) 100%); }
.mcard:hover .mcard-label p { opacity: 1; transform: none; }
@media (min-width: 640px) { .mcard { grid-column: span 6; } }
@media (min-width: 1000px) {
  .mcard.feat { grid-column: span 6; height: 460px; }
  .mcard.quarter { grid-column: span 3; }
  .mcard.third { grid-column: span 4; }
  .mcard.quarter .mcard-label h3 { font-size: 1.55rem; }
}

/* ── FEATURED TESTIMONIAL BAND (Mint-style: full-width brand color, one big quote) ── */
.testimonial-band { background: var(--grad); padding: 110px 24px; text-align: center; position: relative; overflow: hidden; }
.testimonial-band::before { content: ''; position: absolute; top: -160px; right: -120px; width: 520px; height: 520px; background: radial-gradient(circle, rgba(255,255,255,0.14), transparent 65%); border-radius: 50%; }
.testimonial-band .container { position: relative; z-index: 1; max-width: 880px; }
.tb-quote { color: var(--white); font-size: clamp(1.15rem, 2.4vw, 1.55rem); font-weight: 500; line-height: 1.65; }
.tb-stars { color: #facc15; font-size: 1.15rem; letter-spacing: 4px; margin-top: 34px; }
.tb-author { color: var(--white); font-weight: 700; font-size: 1.12rem; margin-top: 10px; }

/* ── CTA BAND photo variant (Mint-style: tall, fixed background photo) ── */
.cta-band.cta-photo { position: relative; min-height: 68vh; display: flex; flex-direction: column; align-items: center; justify-content: center; background-color: var(--ink); background-size: cover; background-position: center; background-attachment: fixed; }
.cta-band.cta-photo h2 { font-size: clamp(2.1rem, 4.6vw, 3.2rem); text-shadow: 0 2px 20px rgba(0,0,0,0.5); }
.cta-band.cta-photo p { font-size: 1.12rem; max-width: 640px; margin-left: auto; margin-right: auto; text-shadow: 0 1px 12px rgba(0,0,0,0.55); }
@media (max-width: 1024px) { .cta-band.cta-photo { background-attachment: scroll; min-height: 0; padding: 100px 24px; } }

/* ── UTIL ── */
.hidden { display: none !important; }

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 52px 20px; }
  .hero-visual { max-width: 440px; }
  .process-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  nav .nav-links { display: none; }
  .proof-bar { gap: 16px; }
  .plan-card.featured { transform: none; }
}

/* ── FLOATING GLASS NAV + PREMIUM HERO (homepage only: .glass-nav / .home-hero) ── */
.glass-nav {
  position: fixed; top: 22px; left: 50%; transform: translateX(-50%);
  width: min(1280px, 93vw); height: 72px; padding: 0 20px;
  display: flex; align-items: center;
  /* Self-contained dark glass — readable over photo AND over white content (no scroll-state swap) */
  background: rgba(15,18,40,0.42);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 30px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.18);
  z-index: 100;
  animation: gnavIn 1.1s ease both;
}
@keyframes gnavIn { from { opacity: 0; transform: translate(-50%, -14px); } to { opacity: 1; transform: translate(-50%, 0); } }

/* Logo — premium brand lockup: circle icon + gradient wordmark */
.glass-nav .nav-logo { flex-shrink: 0; margin-right: auto; display: flex; align-items: center; gap: 12px; text-decoration: none; }
.glass-nav .nav-logo-circle {
  display: inline-block;
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(255,255,255,0.97) url('logo-mark.png') center center / 94% no-repeat;
  box-shadow: 0 6px 18px rgba(124,58,237,0.3), inset 0 0 0 1.5px rgba(255,255,255,0.7);
}

/* Premium gradient wordmark — Stripe/Linear feel, vivid on dark photo */
.glass-nav .nav-logo-text {
  font-size: 1.55rem; font-weight: 900; letter-spacing: 0.05em;
  background: linear-gradient(110deg, #ffffff 0%, #e9d5ff 20%, #c4b5fd 50%, #a78bfa 75%, #8b5cf6 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  filter: drop-shadow(0 2px 8px rgba(124,58,237,0.45));
  line-height: 1;
}

/* Nav links — all right of logo, lighter & airier */
.glass-nav .nav-links { display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; }
.glass-nav .nav-links > li > a {
  position: relative;
  display: inline-flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.95); text-decoration: none;
  font-size: 0.92rem; font-weight: 600;
  padding: 9px 18px;
  border-radius: 100px;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.glass-nav .nav-links > li > a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.35);
}

/* Mint-style down chevron for the Our Services dropdown trigger */
.glass-nav .dd-arrow {
  display: inline-block; width: 11px; height: 11px;
  font-size: 0; line-height: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>") center / contain no-repeat;
  transition: transform 0.25s ease;
}
.glass-nav .nav-dd:hover .dd-arrow { transform: rotate(180deg); }

/* Call Us — slim purple pill, first link after logo */
.glass-nav .nav-call-pill {
  background: var(--purple) !important; color: var(--white) !important;
  padding: 7px 16px !important; border-radius: 100px !important;
  font-weight: 700 !important; font-size: 0.88rem !important;
  box-shadow: 0 4px 14px rgba(124,58,237,0.4);
  transition: all 0.25s ease !important;
  margin-right: 10px;
}
.glass-nav .nav-call-pill:hover { background: var(--purple-dark) !important; transform: translateY(-1px) !important; box-shadow: 0 7px 22px rgba(124,58,237,0.55) !important; }

/* Services dropdown */
.glass-nav .nav-dd { position: relative; }
/* Invisible hover-bridge so the cursor can cross from the trigger to the menu without losing :hover */
.glass-nav .nav-dd::after { content: ""; position: absolute; top: 100%; left: 0; right: 0; height: 14px; }
.glass-nav .nav-dd-menu {
  display: none; position: absolute; top: calc(100% + 14px); left: 0; min-width: 240px;
  background: rgba(15,18,40,0.55);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 20px;
  padding: 10px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.35);
  list-style: none; z-index: 10;
  opacity: 0; transform: translateY(-6px); pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.glass-nav .nav-dd:hover .nav-dd-menu, .glass-nav .nav-dd:focus-within .nav-dd-menu {
  display: block; opacity: 1; transform: translateY(0); pointer-events: auto;
}
.glass-nav .nav-dd-menu li a { display: block; padding: 10px 14px; border-radius: 12px; color: rgba(255,255,255,0.94); font-size: 0.9rem; font-weight: 600; text-decoration: none; transition: background 0.15s, color 0.15s; }
.glass-nav .nav-dd-menu li a:hover { background: rgba(255,255,255,0.1); color: var(--white); }

.glass-nav .nav-burger { display: none; }
.glass-nav .gnav-mobile { display: none; }

@media (max-width: 1000px) {
  .glass-nav { height: 64px; padding: 0 8px 0 16px; }
  .glass-nav .nav-links { display: none; }
  .glass-nav .nav-logo { margin-right: 0; }
  .glass-nav .nav-burger {
    display: inline-flex; flex-direction: column; gap: 5px; margin-left: auto;
    background: none; border: 0; cursor: pointer; padding: 12px;
  }
  .glass-nav .nav-burger span { width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s ease; }
  .glass-nav.scrolled .nav-burger span { background: var(--ink); }
  .glass-nav.open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .glass-nav.open .nav-burger span:nth-child(2) { opacity: 0; }
  .glass-nav.open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .glass-nav .gnav-mobile {
    position: absolute; top: calc(100% + 10px); left: 0; right: 0;
    display: flex; flex-direction: column; gap: 4px; padding: 18px;
    background: rgba(10,16,28,0.88);
    -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.14); border-radius: 24px;
    box-shadow: 0 18px 50px rgba(0,0,0,0.35);
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: all 0.3s ease;
  }
  .glass-nav.open .gnav-mobile { opacity: 1; visibility: visible; transform: none; }
  .glass-nav .gnav-mobile a { color: rgba(255,255,255,0.94); text-decoration: none; font-weight: 600; padding: 12px 16px; border-radius: 14px; transition: background 0.2s ease; }
  .glass-nav .gnav-mobile a:hover { background: rgba(255,255,255,0.08); }
  .glass-nav .gnav-mobile .gm-call { border: 1px solid rgba(255,255,255,0.25); border-radius: 100px; text-align: center; margin-top: 8px; }
  .glass-nav .gnav-mobile .gm-quote { background: var(--grad); border-radius: 100px; text-align: center; font-weight: 700; box-shadow: 0 8px 24px rgba(124,58,237,0.45); }
}
section[id] { scroll-margin-top: 96px; }

/* ── HERO: Mint proportions — LEFT-ALIGNED content block, ~45% width ── */
.home-hero { min-height: 92vh; padding: 170px 24px 130px; position: relative; }
.home-hero .container { max-width: 1280px; align-items: flex-start !important; text-align: left !important; }

/* Mint-style Google review badge — slim dark pill, gold stars, full-color Google G */
/* Mint badge: NO dark wrapper pill — just a light translucent pill behind the stars, plain white text, bare Google G */
.home-hero .hero-rating {
  gap: 13px; padding: 0; margin-bottom: 28px;
  background: none;
  -webkit-backdrop-filter: none; backdrop-filter: none;
  border: none; border-radius: 0;
  box-shadow: none;
  animation: heroUp 1.3s ease 0.2s both;
  height: auto;
}
/* Stars in their own light translucent rounded pill — like Mint */
.home-hero .hero-rating .hr-stars {
  background: rgba(255,255,255,0.16);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  padding: 8px 15px; border-radius: 100px;
  display: inline-flex; align-items: center; gap: 4px;
}
/* Kill the per-icon white circle from the base .hero-rating svg rule — stars & G sit bare */
.home-hero .hero-rating svg { background: none; padding: 0; border-radius: 0; }
.home-hero .hero-rating .hr-stars svg { width: 18px; height: 18px; }
.home-hero .hero-rating a { font-size: 1.02rem; font-weight: 600; line-height: 1; color: #fff; text-shadow: 0 1px 8px rgba(0,0,0,0.55); }
.home-hero .hero-rating > svg { width: 24px; height: 24px; }

/* Headline — bigger, tighter, left-aligned, max ~720px (about 45% on desktop) */
.home-hero h1 {
  font-size: clamp(2.4rem, 5.4vw, 4.8rem);
  font-weight: 800; line-height: 1.05; letter-spacing: -0.025em;
  margin-bottom: 22px; max-width: 720px;
  animation: heroUp 1.3s ease 0.45s both;
}

/* Description — left aligned, max ~520px so it wraps like Mint */
.home-hero p {
  font-size: 1.02rem; line-height: 1.65;
  max-width: 520px; margin-bottom: 34px;
  margin-left: 0 !important; margin-right: 0 !important;
  color: rgba(255,255,255,0.94);
  animation: heroUp 1.3s ease 0.7s both;
}

.home-hero .hero-btns { animation: heroUp 1.3s ease 0.95s both; justify-content: flex-start !important; }
.home-hero .btn-primary {
  padding: 16px 34px; font-size: 0.98rem; border-radius: 100px;
  font-weight: 700; letter-spacing: 0.02em;
  box-shadow: 0 8px 26px rgba(124,58,237,0.4), inset 0 1px 0 rgba(255,255,255,0.25);
  transition: all 0.3s ease;
}
.home-hero .btn-primary:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 14px 38px rgba(124,58,237,0.55), inset 0 1px 0 rgba(255,255,255,0.25); }
@keyframes heroUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@media (max-width: 860px) { .home-hero { min-height: 86vh; padding: 140px 20px 100px; } .home-hero h1 { font-size: clamp(2.1rem, 9vw, 3rem); } }
@media (prefers-reduced-motion: reduce) {
  .glass-nav, .home-hero .hero-rating, .home-hero h1, .home-hero p, .home-hero .hero-btns { animation: none; }
}
