/* ============================================================
 ClaimDone Theme — Main CSS
 Design inspired by d1marketing.com.au
 ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
 --header-h: 72px;
 --bg: #0a0a0a;
 --bg-2: #0f0f0f;
 --bg-3: #141414;
 --card: #1a1a1a;
 --card-hover: #1f1f1f;
 --border: #2a2a2a;
 --border-light: #333;

 --purple: #7a00df;
 --purple-hover: #6200b0;
 --purple-light: #a855f7;
 --purple-glow: rgba(122,0,223,0.25);

 --white: #ffffff;
 --text: #e8e8e8;
 --text-muted: #a1a1aa;
 --text-dim: #6b6b73;

 --green: #22c55e;
 --red: #ef4444;

 --radius-sm: 6px;
 --radius: 12px;
 --radius-lg: 20px;
 --radius-pill: 9999px;

 --shadow: 0 4px 24px rgba(0,0,0,0.4);
 --shadow-glow: 0 0 40px rgba(122,0,223,0.3);

 --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
 --font-display: 'Sora', 'Inter', sans-serif;

 --max-w: 1200px;
 --transition: 0.2s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
 font-family: var(--font-sans);
 background: var(--bg);
 color: var(--text);
 line-height: 1.6;
 -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ---------- Container ---------- */
.cd-container {
 width: 100%;
 max-width: var(--max-w);
 margin: 0 auto;
 padding: 0 24px;
 overflow-wrap: break-word;
 word-break: break-word;
}

/* ---------- Buttons ---------- */
.cd-btn {
 display: inline-flex;
 align-items: center;
 gap: 8px;
 padding: 14px 28px;
 border-radius: var(--radius-pill);
 font-family: var(--font-sans);
 font-size: 15px;
 font-weight: 600;
 cursor: pointer;
 transition: all var(--transition);
 border: 2px solid transparent;
 white-space: nowrap;
}
.cd-btn--primary {
 background: var(--purple);
 color: var(--white);
 border-color: var(--purple);
}
.cd-btn--primary:hover {
 background: var(--purple-hover);
 border-color: var(--purple-hover);
 transform: translateY(-1px);
 box-shadow: 0 8px 24px rgba(122,0,223,0.4);
}
.cd-btn--ghost {
 background: transparent;
 color: var(--text);
 border-color: var(--border-light);
}
.cd-btn--ghost:hover {
 border-color: var(--purple-light);
 color: var(--purple-light);
}
.cd-btn--outline {
 background: transparent;
 color: var(--purple-light);
 border-color: var(--purple);
}
.cd-btn--outline:hover {
 background: var(--purple);
 color: var(--white);
}
.cd-btn--lg { padding: 16px 36px; font-size: 16px; }
.cd-btn--xl { padding: 20px 48px; font-size: 18px; }

/* ---------- Gradient text ---------- */
.cd-gradient-text {
 background: linear-gradient(135deg, #7a00df 0%, #a855f7 50%, #c084fc 100%);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
}

/* ---------- Section headers ---------- */
.cd-section-header {
 text-align: center;
 margin-bottom: 64px;
}
.cd-eyebrow {
 display: inline-block;
 font-size: 12px;
 font-weight: 700;
 letter-spacing: 2px;
 text-transform: uppercase;
 color: var(--purple-light);
 margin-bottom: 16px;
 padding: 6px 16px;
 border: 1px solid rgba(168,85,247,0.3);
 border-radius: var(--radius-pill);
 background: rgba(122,0,223,0.1);
}
.cd-section-header h2 {
 font-family: var(--font-display);
 font-size: clamp(32px, 4vw, 52px);
 font-weight: 800;
 line-height: 1.15;
 color: var(--white);
 margin-bottom: 20px;
}
.cd-section-header p {
 font-size: 18px;
 color: var(--text-muted);
 max-width: 560px;
 margin: 0 auto;
 line-height: 1.7;
}

/* ============================================================
 HEADER
 ============================================================ */
.cd-header {
 position: fixed;
 top: 0; left: 0; right: 0;
 z-index: 1000;
 background: rgba(10,10,10,0.85);
 -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
 border-bottom: 1px solid var(--border);
 transition: background var(--transition);
}
.cd-header__inner {
 display: flex;
 align-items: center;
 justify-content: space-between;
 height: 72px;
 gap: 32px;
}
.cd-header__logo {
 display: flex;
 align-items: center;
 gap: 0;
 font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
 font-size: 22px;
 font-weight: 800;
 color: #0f172a;
 text-decoration: none;
 flex-shrink: 0;
}
.cd-logo-mark {
 font-size: 20px;
}
.cd-logo-text span { color: var(--purple-light); }

/* ════════════════════════════════════════════════════════════════════
   BRAND LOGO — Concept 02 (wordmark "claimdone." with gradient check-dot)
   Used everywhere on the site via the cd_logo() PHP helper.
   ════════════════════════════════════════════════════════════════════ */
.cd-logo {
 display: inline-flex;
 align-items: baseline;
 gap: 2px;
 font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
 font-weight: 800;
 letter-spacing: -0.04em;
 line-height: 1;
 white-space: nowrap;
 text-transform: lowercase;
 color: inherit;
}
.cd-logo--glyph { gap: 0; }
.cd-logo__wordmark {
 color: inherit;
 font-weight: 800;
 letter-spacing: -0.045em;
}
.cd-logo__glyph {
 display: inline-block;
 vertical-align: baseline;
 transform: translateY(0.08em);
 flex-shrink: 0;
}
/* Header anchor wrapping the lockup */
.cd-header__logo .cd-logo {
 transition: opacity 0.2s ease;
}
.cd-header__logo:hover .cd-logo { opacity: 0.85; }

.cd-header__nav {
 display: flex;
 align-items: center;
 gap: 22px;
 flex-shrink: 1;
 min-width: 0;
}
.cd-header__nav a {
 font-size: 14px;
 font-weight: 500;
 color: var(--text-muted);
 transition: color var(--transition);
 white-space: nowrap;
 text-decoration: none;
}
.cd-header__nav a:hover { color: var(--white); }

/* New-feature chip inside header nav — doubles as the Contract Reviewer CTA */
.cd-header__nav a.cd-nav-new {
 display: inline-flex;
 align-items: center;
 gap: 6px;
 padding: 6px 12px;
 background: linear-gradient(135deg, rgba(176, 132, 240, 0.22), rgba(122, 0, 223, 0.18));
 border: 1px solid rgba(176, 132, 240, 0.45);
 border-radius: 999px;
 color: #e8d9ff;
 font-weight: 600;
 white-space: nowrap;
 transition: all var(--transition);
}
.cd-header__nav a.cd-nav-new:hover {
 background: linear-gradient(135deg, rgba(176, 132, 240, 0.32), rgba(122, 0, 223, 0.28));
 border-color: rgba(176, 132, 240, 0.7);
 color: #fff;
}
.cd-header__nav a.cd-nav-new .cd-nav-new__price {
 display: inline-flex;
 align-items: center;
 padding: 2px 7px;
 background: rgba(255, 255, 255, 0.18);
 border-radius: 999px;
 font-size: 12px;
 font-weight: 800;
 color: #fff;
}

@media (max-width: 1200px) {
 .cd-header__inner { gap: 20px; }
 .cd-header__nav { gap: 16px; }
 .cd-header__nav a.cd-nav-new { padding: 5px 10px; font-size: 13px; }
 .cd-header__nav a.cd-nav-new .cd-nav-new__price { font-size: 11px; padding: 1px 6px; }
}
/* 2026-06-05: "How It Works" was overlapping the phone number on medium-
   desktop widths. At ≤1100px hide the lower-priority nav text and
   shrink gaps further so the primary CTAs + phone fit cleanly. */
@media (max-width: 1100px) {
 .cd-header__nav a[href*="how-it-works"] { display: none; }
 .cd-header__nav a[href$="/services"] { display: none; }
}
@media (max-width: 1080px) {
 .cd-header__inner { gap: 16px; }
 .cd-header__nav { gap: 14px; }
}

.cd-header__cta {
 display: flex;
 align-items: center;
 gap: 8px;
 flex-shrink: 0;
}

/* ── Header phone — clean text + icon, no pill background ─────────── */
.cd-header__phone {
 display: inline-flex;
 align-items: center;
 gap: 7px;
 padding: 4px 0;
 margin: 0 4px 0 8px;
 color: #0f172a;
 text-decoration: none;
 line-height: 1.2;
 transition: color 0.2s ease;
 flex-shrink: 0;
 white-space: nowrap;
}
.cd-header__phone:hover { color: #7c3aed; }
.cd-header__phone:hover svg { color: #7c3aed; }
.cd-header__phone svg { color: #64748b; flex-shrink: 0; transition: color 0.2s ease; }
.cd-header__phone-num {
 color: inherit;
 font-weight: 700;
 font-size: 14px;
 letter-spacing: 0.2px;
}

/* Mobile drawer phone CTA */
.cd-drawer__phone {
 display: inline-flex !important;
 align-items: center;
 gap: 10px;
 padding: 14px 18px !important;
 margin-top: 6px;
 background: linear-gradient(135deg, rgba(34, 197, 94, 0.10), rgba(124, 58, 237, 0.05)) !important;
 border: 1px solid rgba(34, 197, 94, 0.30);
 border-radius: 12px;
 color: #166534 !important;
 font-weight: 700 !important;
 font-size: 15px;
}
.cd-drawer__phone svg { color: #16a34a; }

/* Hide the header phone on phones — the drawer carries the CTA there */
@media (max-width: 768px) {
 .cd-header__phone { display: none; }
}

.cd-hamburger {
 display: none;
 flex-direction: column;
 justify-content: center;
 align-items: center;
 gap: 6px;
 background: none;
 border: none;
 cursor: pointer;
 padding: 12px;
 min-width: 48px;
 min-height: 48px;
 margin: -12px -12px -12px 0;
 border-radius: 8px;
 transition: background 0.15s;
 touch-action: manipulation;
 -webkit-tap-highlight-color: transparent;
}
.cd-hamburger:active { background: rgba(255,255,255,0.08); }
.cd-hamburger span {
 display: block;
 width: 26px;
 height: 2px;
 background: var(--white);
 border-radius: 2px;
 transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1),
 opacity 0.2s ease,
 width 0.2s ease;
 transform-origin: center;
}

/* ═══════════════════════════════════════════════════════════
 RIGHT-SIDE APP DRAWER
 ═══════════════════════════════════════════════════════════ */

.cd-drawer {
 display: none; /* show only on mobile via media query */
 position: fixed;
 top: 0; right: 0;
 width: 82vw;
 max-width: 320px;
 height: 100%;
 height: 100dvh;
 background: #0f0f0f;
 border-left: 1px solid rgba(255,255,255,0.07);
 flex-direction: column;
 z-index: 1100;
 /* Slide in from right */
 transform: translateX(100%);
 visibility: hidden;
 transition: transform 0.28s cubic-bezier(0.4,0,0.2,1),
 visibility 0s linear 0.28s;
 overflow: hidden;
 box-shadow: -8px 0 40px rgba(0,0,0,0.6);
}
.cd-drawer.is-open {
 transform: translateX(0);
 visibility: visible;
 transition: transform 0.28s cubic-bezier(0.4,0,0.2,1),
 visibility 0s linear 0s;
}

/* Drawer header row */
.cd-drawer__head {
 display: flex;
 align-items: center;
 justify-content: space-between;
 padding: 0 20px;
 height: 60px;
 border-bottom: 1px solid rgba(255,255,255,0.07);
 flex-shrink: 0;
}
.cd-drawer__logo {
 display: flex;
 align-items: center;
 gap: 6px;
 font-family: var(--font-display);
 font-size: 18px;
 font-weight: 800;
 color: var(--white);
 text-decoration: none;
}
.cd-drawer__bolt { color: var(--purple-light); font-size: 16px; }

.cd-drawer__close {
 display: flex;
 align-items: center;
 justify-content: center;
 width: 40px; height: 40px;
 background: rgba(255,255,255,0.06);
 border: none;
 border-radius: 8px;
 color: var(--text);
 cursor: pointer;
 touch-action: manipulation;
 -webkit-tap-highlight-color: transparent;
 transition: background 0.15s, color 0.15s;
 flex-shrink: 0;
}
.cd-drawer__close:active,
.cd-drawer__close:hover { background: rgba(255,255,255,0.12); color: var(--white); }

/* Nav links */
.cd-drawer__nav {
 flex: 1;
 overflow-y: auto;
 overscroll-behavior: contain;
 padding: 8px 0;
}
.cd-drawer__nav a {
 display: flex;
 align-items: center;
 gap: 14px;
 padding: 0 24px;
 height: 58px;
 font-size: 16px;
 font-weight: 500;
 color: rgba(255,255,255,0.75);
 border-bottom: 1px solid rgba(255,255,255,0.05);
 text-decoration: none;
 touch-action: manipulation;
 -webkit-tap-highlight-color: transparent;
 transition: background 0.1s, color 0.1s;
}
.cd-drawer__nav a:last-child { border-bottom: none; }
.cd-drawer__nav a:active { background: rgba(122,0,223,0.12); color: var(--white); }
.cd-drawer__icon { font-size: 18px; width: 24px; text-align: center; opacity: 0.7; }

/* Drawer footer */
.cd-drawer__foot {
 padding: 16px 20px calc(16px + env(safe-area-inset-bottom, 0px));
 border-top: 1px solid rgba(255,255,255,0.07);
 display: flex;
 flex-direction: column;
 gap: 10px;
 flex-shrink: 0;
}
.cd-drawer__foot-link {
 display: flex;
 align-items: center;
 gap: 10px;
 height: 48px;
 font-size: 15px;
 font-weight: 500;
 color: rgba(255,255,255,0.6);
 text-decoration: none;
 touch-action: manipulation;
 -webkit-tap-highlight-color: transparent;
 transition: color 0.12s;
}
.cd-drawer__foot-link:active { color: var(--white); }
.cd-drawer__foot-link--dim { font-size: 14px; color: rgba(255,255,255,0.35); }
.cd-drawer__cta {
 width: 100%;
 justify-content: center;
 min-height: 52px;
 font-size: 15px;
 font-weight: 700;
 border-radius: 12px;
 margin-top: 4px;
}

/* ── Backdrop overlay ── */
.cd-nav-overlay {
 position: fixed;
 inset: 0;
 background: rgba(0,0,0,0.65);
 z-index: 1099;
 opacity: 0;
 visibility: hidden;
 pointer-events: none;
 transition: opacity 0.28s ease, visibility 0s linear 0.28s;
 -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
 -webkit-backdrop-filter: blur(3px);
}
.cd-nav-overlay.is-visible {
 opacity: 1;
 visibility: visible;
 pointer-events: auto;
 transition: opacity 0.28s ease, visibility 0s linear 0s;
}

/* Lock body scroll when drawer open */
body.nav-open { overflow: hidden; }

/* ═══════════════════════════════════════════════════════════
 MAIN CONTENT — clear fixed header
 ═══════════════════════════════════════════════════════════ */
/* Fixed header compensation. When a promo banner is present at the top of
 the body it already takes normal-flow space (pushing main down), so we
 only need to add the portion of the header height that the banner doesn't
 already cover. On mobile the banner wraps and often fully covers the
 header height, so main gets near-zero extra padding. */
.cd-main {
 padding-top: var(--header-h);
}
body:has(.cd-promo-banner) .cd-main {
 padding-top: max(0px, calc(var(--header-h) - 44px));
}
@media (max-width: 768px) {
 body:has(.cd-promo-banner) .cd-main { padding-top: 0; }
}

/* ============================================================
 HERO
 ============================================================ */
.cd-hero {
 padding: 40px 0 100px;
 text-align: center;
 position: relative;
 overflow: hidden;
}
.cd-hero::before {
 content: '';
 position: absolute;
 top: -200px; left: 50%;
 transform: translateX(-50%);
 width: 800px;
 height: 800px;
 background: radial-gradient(circle, rgba(122,0,223,0.15) 0%, transparent 70%);
 pointer-events: none;
}
.cd-hero__badge {
 display: inline-block;
 font-size: 13px;
 font-weight: 600;
 color: var(--text-muted);
 background: var(--card);
 border: 1px solid var(--border);
 border-radius: var(--radius-pill);
 padding: 8px 20px;
 margin-bottom: 32px;
}
.cd-hero__heading {
 font-family: var(--font-display);
 font-size: clamp(42px, 6vw, 80px);
 font-weight: 900;
 line-height: 1.05;
 color: var(--white);
 margin-bottom: 28px;
 letter-spacing: -2px;
}
.cd-hero__sub {
 font-size: clamp(16px, 2vw, 20px);
 color: var(--text-muted);
 max-width: 640px;
 margin: 0 auto 48px;
 line-height: 1.7;
}
.cd-hero__actions {
 display: flex;
 justify-content: center;
 gap: 16px;
 flex-wrap: wrap;
 margin-bottom: 64px;
}
.cd-hero__proof {
 display: flex;
 justify-content: center;
 align-items: center;
 gap: 0;
 flex-wrap: wrap;
 background: var(--card);
 border: 1px solid var(--border);
 border-radius: var(--radius-lg);
 padding: 24px 40px;
 max-width: 760px;
 margin: 0 auto;
}
.cd-hero__proof-item {
 display: flex;
 flex-direction: column;
 align-items: center;
 gap: 4px;
 padding: 0 36px;
}
.cd-hero__proof-item strong {
 font-size: 28px;
 font-weight: 800;
 color: var(--white);
 font-family: var(--font-display);
}
.cd-hero__proof-item span {
 font-size: 12px;
 color: var(--text-dim);
 text-transform: uppercase;
 letter-spacing: 0.5px;
}
.cd-hero__proof-divider {
 width: 1px;
 height: 40px;
 background: var(--border);
}

/* ============================================================
 VS DIY
 ============================================================ */
.cd-vsdiy {
 padding: 100px 0;
 background: var(--bg-2);
 border-top: 1px solid var(--border);
 border-bottom: 1px solid var(--border);
}
.cd-vsdiy .cd-section-header { margin-bottom: 48px; }
.cd-vsdiy .cd-section-header em { font-style: normal; color: var(--purple-light); }
.cd-vsdiy__inner {
 display: grid;
 grid-template-columns: 1fr auto 1fr;
 gap: 32px;
 align-items: stretch;
 max-width: 960px;
 margin: 0 auto;
}
.cd-vsdiy__item {
 background: var(--card);
 border: 1px solid var(--border);
 border-radius: var(--radius-lg);
 padding: 32px;
 display: flex;
 flex-direction: column;
}
.cd-vsdiy__header {
 display: flex;
 align-items: center;
 justify-content: space-between;
 margin-bottom: 6px;
}
.cd-vsdiy__badge {
 display: inline-flex;
 align-items: center;
 gap: 5px;
 font-size: 11px;
 font-weight: 700;
 text-transform: uppercase;
 letter-spacing: 0.8px;
 padding: 4px 10px;
 border-radius: var(--radius-pill);
}
.cd-vsdiy__badge--bad {
 background: rgba(239,68,68,0.12);
 color: var(--red);
}
.cd-vsdiy__badge--good {
 background: rgba(122,0,223,0.15);
 color: var(--purple-light);
}
.cd-vsdiy__price {
 font-family: var(--font-display);
 font-size: 20px;
 font-weight: 800;
}
.cd-vsdiy__price--bad {
 color: var(--text-dim);
 text-decoration: line-through;
 text-decoration-color: var(--red);
}
.cd-vsdiy__price--good { color: var(--purple-light); }
.cd-vsdiy__label {
 display: block;
 font-size: 20px;
 font-weight: 700;
 color: var(--white);
 margin-bottom: 24px;
}
.cd-vsdiy--bad .cd-vsdiy__label { color: var(--text-muted); }
.cd-vsdiy--good {
 border-color: rgba(122,0,223,0.4);
 background: linear-gradient(160deg, rgba(122,0,223,0.08) 0%, var(--card) 50%);
 box-shadow: 0 0 48px rgba(122,0,223,0.12);
}
.cd-vsdiy__item ul {
 display: flex;
 flex-direction: column;
 gap: 20px;
 flex: 1;
}
.cd-vsdiy__item li {
 display: flex;
 align-items: flex-start;
 gap: 14px;
 font-size: 15px;
 color: var(--text);
 line-height: 1.4;
}
.cd-vsdiy__item li strong {
 display: block;
 font-weight: 600;
 color: var(--white);
 margin-bottom: 2px;
}
.cd-vsdiy__desc {
 display: block;
 font-size: 13px;
 color: var(--text-muted);
 line-height: 1.4;
}
.cd-vsdiy--bad .cd-vsdiy__desc { color: var(--text-dim); }
.cd-vsdiy__icon {
 flex-shrink: 0;
 width: 36px;
 height: 36px;
 display: flex;
 align-items: center;
 justify-content: center;
 border-radius: 10px;
 margin-top: 1px;
}
.cd-vsdiy__icon--bad {
 background: rgba(239,68,68,0.1);
 color: var(--red);
 border: 1px solid rgba(239,68,68,0.15);
}
.cd-vsdiy__icon--good {
 background: rgba(122,0,223,0.12);
 color: var(--purple-light);
 border: 1px solid rgba(122,0,223,0.2);
}
.cd-vsdiy__vs {
 display: flex;
 align-items: center;
 justify-content: center;
}
.cd-vsdiy__vs span {
 font-family: var(--font-display);
 font-size: 14px;
 font-weight: 800;
 color: var(--text-dim);
 background: var(--bg-3);
 border: 1px solid var(--border);
 border-radius: var(--radius-pill);
 width: 40px;
 height: 40px;
 display: flex;
 align-items: center;
 justify-content: center;
 letter-spacing: 1px;
}

/* ============================================================
 SERVICES
 ============================================================ */
.cd-services {
 padding: 100px 0;
 background: var(--bg);
}
.cd-services__category {
 font-family: var(--font-display);
 font-size: 18px;
 font-weight: 800;
 color: var(--purple-light);
 text-transform: uppercase;
 letter-spacing: 1.5px;
 margin: 48px 0 20px;
 padding-bottom: 12px;
 border-bottom: 1px solid var(--border);
}
.cd-services__category:first-of-type { margin-top: 0; }
.cd-services__grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 24px;
 margin-bottom: 16px;
}
.cd-service-card {
 display: flex;
 flex-direction: column;
 background: var(--card);
 border: 1px solid var(--border);
 border-radius: var(--radius);
 padding: 32px;
 transition: all 0.3s ease;
 position: relative;
 overflow: hidden;
 cursor: pointer;
}
.cd-service-card:hover {
 background: var(--card-hover);
 border-color: var(--purple);
 transform: translateY(-4px);
 box-shadow: 0 12px 40px rgba(122,0,223,0.2);
}
.cd-service-card--featured {
 border-color: var(--purple);
 background: linear-gradient(145deg, var(--card) 0%, rgba(122,0,223,0.08) 100%);
}
.cd-service-card--bundle {
 background: linear-gradient(145deg, var(--card) 0%, rgba(168,85,247,0.06) 100%);
}
.cd-service-card__badge {
 position: absolute;
 top: 16px; right: 16px;
 font-size: 11px;
 font-weight: 700;
 text-transform: uppercase;
 letter-spacing: 1px;
 color: var(--white);
 background: var(--purple);
 border-radius: var(--radius-pill);
 padding: 4px 12px;
}
.cd-service-card__icon { font-size: 22px; margin-bottom: 16px; }
.cd-service-card h3 {
 font-family: var(--font-display);
 font-size: 20px;
 font-weight: 700;
 color: var(--white);
 margin-bottom: 12px;
}
.cd-service-card p {
 font-size: 14px;
 color: var(--text-muted);
 line-height: 1.7;
 flex: 1;
 margin-bottom: 20px;
}
.cd-service-card__price {
 font-size: 14px;
 color: var(--text-dim);
 margin-bottom: 16px;
}
.cd-service-card__price strong {
 font-size: 22px;
 font-weight: 800;
 color: var(--white);
}
.cd-service-card__cta {
 font-size: 14px;
 font-weight: 600;
 color: var(--purple-light);
 margin-top: auto;
}
.cd-service-card:hover .cd-service-card__cta { color: var(--white); }

/* ============================================================
 HOW IT WORKS
 ============================================================ */
.cd-how {
 padding: 100px 0;
 background: var(--bg-2);
 border-top: 1px solid var(--border);
 border-bottom: 1px solid var(--border);
}
.cd-how__steps {
 display: flex;
 flex-direction: column;
 gap: 0;
 max-width: 800px;
 margin: 0 auto;
}
.cd-how__step {
 display: grid;
 grid-template-columns: 80px 1fr;
 gap: 32px;
 align-items: start;
 padding: 48px 0;
}
.cd-how__connector {
 width: 1px;
 height: 40px;
 background: linear-gradient(to bottom, var(--purple), var(--border));
 margin-left: 39px;
}
.cd-how__step-num {
 font-family: var(--font-display);
 font-size: 48px;
 font-weight: 900;
 color: var(--purple);
 line-height: 1;
 opacity: 0.8;
}
.cd-how__step-content h3 {
 font-family: var(--font-display);
 font-size: 24px;
 font-weight: 700;
 color: var(--white);
 margin-bottom: 12px;
 margin-top: 8px;
}
.cd-how__step-content p {
 font-size: 16px;
 color: var(--text-muted);
 line-height: 1.7;
 margin-bottom: 20px;
}
.cd-how__step-list { display: flex; flex-direction: column; gap: 8px; }
.cd-how__step-list li {
 font-size: 14px;
 color: var(--text-dim);
 padding-left: 20px;
 position: relative;
}
.cd-how__step-list li::before {
 content: '';
 position: absolute;
 left: 0;
 color: var(--green);
 font-weight: 700;
}

/* ============================================================
 PRICING
 ============================================================ */
.cd-pricing { padding: 100px 0; background: var(--bg); }
.cd-pricing__grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 24px;
 max-width: 1000px;
 margin: 0 auto 40px;
}
.cd-pricing-card {
 background: var(--card);
 border: 1px solid var(--border);
 border-radius: var(--radius);
 padding: 40px 32px;
 display: flex;
 flex-direction: column;
 gap: 16px;
 position: relative;
 transition: all 0.3s;
}
.cd-pricing-card--featured {
 border-color: var(--purple);
 box-shadow: var(--shadow-glow);
 background: linear-gradient(145deg, var(--card), rgba(122,0,223,0.08));
}
.cd-pricing-card__badge {
 position: absolute;
 top: -14px; left: 50%;
 transform: translateX(-50%);
 font-size: 11px;
 font-weight: 700;
 text-transform: uppercase;
 letter-spacing: 1px;
 color: var(--white);
 background: var(--purple);
 border-radius: var(--radius-pill);
 padding: 5px 16px;
 white-space: nowrap;
}
.cd-pricing-card__name {
 font-size: 14px;
 font-weight: 600;
 text-transform: uppercase;
 letter-spacing: 1px;
 color: var(--text-dim);
}
.cd-pricing-card__price {
 font-family: var(--font-display);
 font-size: 48px;
 font-weight: 900;
 color: var(--white);
 line-height: 1;
}
.cd-pricing-card__price span {
 font-size: 16px;
 font-weight: 400;
 color: var(--text-dim);
 vertical-align: top;
 margin-top: 8px;
 display: inline-block;
}
.cd-pricing-card__price s {
 font-size: 24px;
 color: var(--text-dim);
 text-decoration: line-through;
 margin-right: 8px;
}
.cd-pricing-card__price strong {
 font-size: 48px;
}
.cd-pricing-card__desc {
 font-size: 14px;
 color: var(--text-muted);
 padding-bottom: 16px;
 border-bottom: 1px solid var(--border);
}
.cd-pricing-card__features {
 display: flex;
 flex-direction: column;
 gap: 10px;
 flex: 1;
 margin-bottom: 8px;
}
.cd-pricing-card__features li {
 font-size: 14px;
 color: var(--text);
}
.cd-pricing-card .cd-btn { justify-content: center; }
.cd-pricing__note {
 text-align: center;
 font-size: 14px;
 color: var(--text-dim);
 max-width: 560px;
 margin: 0 auto;
 background: var(--card);
 border: 1px solid var(--border);
 border-radius: var(--radius);
 padding: 16px 24px;
}

/* ============================================================
 TRUST
 ============================================================ */
.cd-trust {
 padding: 100px 0;
 background: var(--bg-2);
 border-top: 1px solid var(--border);
 border-bottom: 1px solid var(--border);
}
.cd-trust__grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 32px;
}
.cd-trust__item {
 padding: 32px;
 background: var(--card);
 border: 1px solid var(--border);
 border-radius: var(--radius);
}
.cd-trust__icon { font-size: 20px; margin-bottom: 12px; }
.cd-trust__item h3 {
 font-size: 18px;
 font-weight: 700;
 color: var(--white);
 margin-bottom: 12px;
}
.cd-trust__item p {
 font-size: 14px;
 color: var(--text-muted);
 line-height: 1.7;
}

/* ============================================================
 CTA BAND
 ============================================================ */
.cd-cta-band {
 padding: 120px 0;
 background: var(--bg);
 text-align: center;
 position: relative;
 overflow: hidden;
}
.cd-cta-band::before {
 content: '';
 position: absolute;
 bottom: -200px; left: 50%;
 transform: translateX(-50%);
 width: 600px;
 height: 600px;
 background: radial-gradient(circle, rgba(122,0,223,0.12) 0%, transparent 70%);
 pointer-events: none;
}
.cd-cta-band h2 {
 font-family: var(--font-display);
 font-size: clamp(36px, 5vw, 64px);
 font-weight: 900;
 color: var(--white);
 margin-bottom: 20px;
 letter-spacing: -1px;
}
.cd-cta-band p {
 font-size: 18px;
 color: var(--text-muted);
 max-width: 520px;
 margin: 0 auto 48px;
 line-height: 1.7;
}
.cd-cta-band__sub {
 margin-top: 20px;
 font-size: 13px;
 color: var(--text-dim);
}

/* ============================================================
 DISCLAIMER BAR
 ============================================================ */
.cd-disclaimer-bar {
 background: var(--bg-3);
 border-top: 1px solid var(--border);
 padding: 20px 0;
}
.cd-disclaimer-bar p {
 font-size: 12px;
 color: var(--text-dim);
 text-align: center;
 line-height: 1.6;
 max-width: 860px;
 margin: 0 auto;
}

/* ============================================================
 FOOTER
 ============================================================ */
.cd-footer {
 background: var(--bg-3);
 border-top: 1px solid var(--border);
 padding: 80px 0 0;
}
.cd-footer__top {
 display: grid;
 grid-template-columns: 280px 1fr;
 gap: 80px;
 padding-bottom: 60px;
 border-bottom: 1px solid var(--border);
}
.cd-footer__brand p {
 font-size: 14px;
 color: var(--text-muted);
 line-height: 1.8;
 margin: 20px 0 24px;
}
/* Phone callout in the footer brand column */
.cd-footer__phone {
 display: inline-flex;
 align-items: center;
 gap: 14px;
 padding: 14px 18px;
 margin: 0 0 22px;
 border: 1px solid rgba(34, 197, 94, 0.30);
 border-radius: 14px;
 background: linear-gradient(135deg, rgba(34, 197, 94, 0.10), rgba(124, 58, 237, 0.05));
 color: #f0f0f4;
 text-decoration: none;
 transition: all 0.2s ease;
 max-width: 280px;
}
.cd-footer__phone:hover {
 transform: translateY(-1px);
 border-color: rgba(34, 197, 94, 0.55);
 box-shadow: 0 6px 16px rgba(34, 197, 94, 0.15);
}
.cd-footer__phone-icon {
 flex-shrink: 0;
 width: 40px; height: 40px;
 background: rgba(34, 197, 94, 0.20);
 border-radius: 50%;
 display: inline-flex;
 align-items: center;
 justify-content: center;
 color: #4ade80;
}
.cd-footer__phone div { display: flex; flex-direction: column; line-height: 1.25; }
.cd-footer__phone-label {
 font-size: 11px;
 letter-spacing: 0.5px;
 text-transform: uppercase;
 color: #94a3b8;
 font-weight: 600;
}
.cd-footer__phone strong {
 font-size: 18px;
 font-weight: 800;
 color: #f0f0f4;
 letter-spacing: 0.3px;
 margin: 1px 0;
}
.cd-footer__phone-hours {
 font-size: 11px;
 color: #94a3b8;
}

.cd-footer__trust {
 display: flex;
 gap: 16px;
 flex-wrap: wrap;
}
.cd-footer__trust span {
 font-size: 12px;
 color: var(--text-dim);
 background: var(--card);
 border: 1px solid var(--border);
 border-radius: var(--radius-pill);
 padding: 6px 14px;
}
.cd-footer__links {
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 gap: 32px;
}
.cd-footer__col h4 {
 font-size: 12px;
 font-weight: 700;
 text-transform: uppercase;
 letter-spacing: 1.5px;
 color: var(--text-dim);
 margin-bottom: 20px;
}
.cd-footer__col a {
 display: block;
 font-size: 14px;
 color: var(--text-muted);
 padding: 6px 0;
 transition: color var(--transition);
}
.cd-footer__col a:hover { color: var(--white); }
.cd-footer__bottom {
 padding: 28px 0;
 text-align: center;
}
.cd-footer__bottom p {
 font-size: 13px;
 color: var(--text-dim);
 margin-bottom: 8px;
}
.cd-footer__disclaimer {
 font-size: 11px !important;
 max-width: 700px;
 margin: 0 auto !important;
 line-height: 1.6;
}

/* ============================================================
 PROSE / CONTENT PAGES
 ============================================================ */
.cd-prose { padding: 140px 0 80px; }
.cd-page-content h1 {
 font-family: var(--font-display);
 font-size: clamp(28px, 5vw, 42px);
 font-weight: 800;
 color: var(--white);
 margin-bottom: 32px;
 line-height: 1.2;
}
.cd-page-content h2 {
 font-family: var(--font-display);
 font-size: clamp(20px, 3vw, 28px);
 font-weight: 700;
 color: var(--white);
 margin: 48px 0 16px;
 line-height: 1.3;
 padding-bottom: 10px;
 border-bottom: 1px solid var(--border);
}
.cd-page-content h3 {
 font-size: clamp(17px, 2.5vw, 20px);
 font-weight: 700;
 color: var(--white);
 margin: 32px 0 12px;
}
.cd-page-content p { color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.cd-page-content ul,
.cd-page-content ol {
 color: var(--text-muted);
 line-height: 1.8;
 margin-bottom: 20px;
 padding-left: 24px;
}
.cd-page-content ul { list-style: disc; }
.cd-page-content ol { list-style: decimal; }
.cd-page-content li { margin-bottom: 8px; }
.cd-page-content strong { color: var(--white); font-weight: 600; }
.cd-page-content em { font-style: italic; }
.cd-page-content a { color: var(--purple-light); text-decoration: none; }
.cd-page-content a:hover { text-decoration: underline; }

/* Responsive tables */
.cd-page-content table {
 width: 100%;
 border-collapse: collapse;
 margin-bottom: 24px;
 font-size: 14px;
 color: var(--text-muted);
 display: block;
 overflow-x: auto;
 -webkit-overflow-scrolling: touch;
}
.cd-page-content th {
 background: rgba(255,255,255,0.05);
 color: var(--white);
 font-weight: 600;
 text-align: left;
 padding: 10px 14px;
 border: 1px solid var(--border);
 white-space: nowrap;
}
.cd-page-content td {
 padding: 10px 14px;
 border: 1px solid var(--border);
 vertical-align: top;
}
.cd-page-content tr:nth-child(even) td { background: rgba(255,255,255,0.02); }

/* ============================================================
 INNER HERO (inner page banner)
 ============================================================ */
.cd-inner-hero {
 padding: 120px 0 80px;
 background: linear-gradient(180deg, rgba(122,0,223,0.08) 0%, transparent 100%);
 border-bottom: 1px solid var(--border);
 text-align: center;
}
.cd-inner-hero .cd-eyebrow { margin-bottom: 16px; }
.cd-inner-hero h1 {
 font-family: var(--font-display);
 font-size: clamp(32px, 5vw, 56px);
 font-weight: 800;
 color: var(--white);
 line-height: 1.15;
 margin-bottom: 20px;
}
.cd-inner-hero p {
 font-size: 18px;
 color: var(--text-muted);
 max-width: 640px;
 margin: 0 auto;
 line-height: 1.7;
}

/* ============================================================
 PRICING (standalone page — 4-col grid + compare table)
 ============================================================ */
.cd-pricing--standalone { padding: 80px 0; }

.cd-pricing__grid--4 {
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 gap: 24px;
 margin-bottom: 80px;
}

.cd-pricing-card {
 background: var(--card);
 border: 1px solid var(--border);
 border-radius: var(--radius-lg);
 padding: 32px 28px;
 display: flex;
 flex-direction: column;
 gap: 16px;
 position: relative;
 transition: border-color var(--transition), transform var(--transition);
}
.cd-pricing-card:hover {
 border-color: var(--purple);
 transform: translateY(-4px);
}
.cd-pricing-card--featured {
 border-color: var(--purple);
 background: linear-gradient(135deg, rgba(122,0,223,0.12) 0%, var(--card) 60%);
}
.cd-pricing-card--bundle {
 background: linear-gradient(135deg, rgba(122,0,223,0.1) 0%, var(--card) 70%);
 border-color: var(--purple);
}
.cd-pricing-card__badge {
 position: absolute;
 top: -14px;
 left: 50%;
 transform: translateX(-50%);
 background: var(--purple);
 color: var(--white);
 font-size: 11px;
 font-weight: 700;
 letter-spacing: 0.08em;
 text-transform: uppercase;
 padding: 4px 16px;
 border-radius: var(--radius-pill);
 white-space: nowrap;
}
.cd-pricing-card__icon { font-size: 20px; }
.cd-pricing-card__name {
 font-weight: 700;
 font-size: 16px;
 color: var(--white);
}
.cd-pricing-card__price {
 font-family: var(--font-display);
 font-size: 36px;
 font-weight: 800;
 color: var(--white);
}
.cd-pricing-card__price s { color: var(--text-dim); font-size: 24px; margin-right: 8px; }
.cd-pricing-card__price strong { color: var(--purple-light); }
.cd-pricing-card__desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.cd-pricing-card__features {
 list-style: none;
 display: flex;
 flex-direction: column;
 gap: 8px;
 flex: 1;
}
.cd-pricing-card__features li { font-size: 14px; color: var(--text-muted); }
.cd-pricing-card .cd-btn { margin-top: auto; text-align: center; }

/* Compare table */
.cd-pricing__compare { max-width: 860px; margin: 0 auto; }
.cd-pricing__compare h3 {
 font-family: var(--font-display);
 font-size: 28px;
 font-weight: 700;
 color: var(--white);
 text-align: center;
 margin-bottom: 32px;
}
.cd-compare-table {
 background: var(--card);
 border: 1px solid var(--border);
 border-radius: var(--radius-lg);
 overflow: hidden;
}
.cd-compare-row {
 display: grid;
 grid-template-columns: 2fr 1fr 1fr;
 align-items: center;
 border-bottom: 1px solid var(--border);
}
.cd-compare-row:last-child { border-bottom: none; }
.cd-compare-row span {
 padding: 16px 20px;
 font-size: 14px;
 color: var(--text-muted);
}
.cd-compare-row span:nth-child(2) {
 text-align: center;
 border-left: 1px solid var(--border);
}
.cd-compare-row span:nth-child(3) {
 text-align: center;
 border-left: 1px solid var(--border);
}
.cd-compare-row--header span {
 font-weight: 700;
 font-size: 13px;
 text-transform: uppercase;
 letter-spacing: 0.06em;
 padding: 20px;
 color: var(--text-dim);
 background: var(--bg-3);
}
.cd-compare-row--header span:first-child { color: transparent; }
.cd-compare--us {
 color: var(--purple-light) !important;
 font-weight: 600 !important;
}
.cd-compare-row--header .cd-compare--us {
 color: var(--white) !important;
 background: rgba(122,0,223,0.15) !important;
}

/* ============================================================
 HOW IT WORKS (standalone page)
 ============================================================ */
.cd-how--standalone { padding: 80px 0; }
.cd-how--standalone .cd-how__steps {
 max-width: 800px;
 margin: 0 auto;
 display: flex;
 flex-direction: column;
}
.cd-how__step {
 display: grid;
 grid-template-columns: 80px 1fr;
 gap: 32px;
 align-items: start;
}
.cd-how__step-num {
 font-family: var(--font-display);
 font-size: 48px;
 font-weight: 800;
 color: var(--purple);
 line-height: 1;
 padding-top: 4px;
}
.cd-how__step-content h3 {
 font-family: var(--font-display);
 font-size: 22px;
 font-weight: 700;
 color: var(--white);
 margin-bottom: 12px;
}
.cd-how__step-content p {
 color: var(--text-muted);
 line-height: 1.7;
 margin-bottom: 16px;
}
.cd-how__step-list {
 list-style: none;
 display: flex;
 flex-direction: column;
 gap: 8px;
}
.cd-how__step-list li {
 font-size: 14px;
 color: var(--text-muted);
 padding-left: 20px;
 position: relative;
}
.cd-how__step-list li::before {
 content: '→';
 position: absolute;
 left: 0;
 color: var(--purple-light);
}
.cd-how__connector {
 width: 2px;
 height: 48px;
 background: linear-gradient(180deg, var(--purple) 0%, transparent 100%);
 margin: 16px 0 16px 39px;
 opacity: 0.4;
}

/* FAQs (how-it-works page) */
.cd-hiw-faqs {
 padding: 80px 0;
 background: var(--bg-2);
 border-top: 1px solid var(--border);
}
.cd-faq-list {
 display: flex;
 flex-direction: column;
 gap: 16px;
 max-width: 800px;
 margin: 0 auto;
}
.cd-faq {
 background: var(--card);
 border: 1px solid var(--border);
 border-radius: var(--radius);
 padding: 28px 32px;
 transition: border-color var(--transition);
}
.cd-faq:hover { border-color: var(--border-light); }
.cd-faq h3 {
 font-size: 16px;
 font-weight: 700;
 color: var(--white);
 margin-bottom: 10px;
}
.cd-faq p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ============================================================
 ABOUT PAGE
 ============================================================ */
.cd-about-mission { padding: 80px 0; }
.cd-about-mission__inner {
 display: grid;
 grid-template-columns: 1fr 380px;
 gap: 80px;
 align-items: start;
}
.cd-about-mission__text h2 {
 font-family: var(--font-display);
 font-size: clamp(26px, 3vw, 36px);
 font-weight: 800;
 color: var(--white);
 margin-bottom: 24px;
 line-height: 1.25;
}
.cd-about-mission__text p {
 color: var(--text-muted);
 line-height: 1.8;
 margin-bottom: 16px;
}
.cd-about-stat-card {
 background: var(--card);
 border: 1px solid var(--border);
 border-radius: var(--radius);
 padding: 28px;
 margin-bottom: 16px;
}
.cd-about-stat-card__num {
 font-family: var(--font-display);
 font-size: 40px;
 font-weight: 800;
 color: var(--purple-light);
 line-height: 1;
 margin-bottom: 8px;
}
.cd-about-stat-card__label { font-size: 14px; color: var(--text-muted); }

.cd-about-how {
 padding: 80px 0;
 background: var(--bg-2);
 border-top: 1px solid var(--border);
}
.cd-about-tech-grid {
 display: grid;
 grid-template-columns: repeat(2, 1fr);
 gap: 24px;
 margin-top: 48px;
}
.cd-about-tech-card {
 background: var(--card);
 border: 1px solid var(--border);
 border-radius: var(--radius);
 padding: 32px;
}
.cd-about-tech-card__icon { font-size: 22px; margin-bottom: 12px; }
.cd-about-tech-card h3 {
 font-size: 18px;
 font-weight: 700;
 color: var(--white);
 margin-bottom: 12px;
}
.cd-about-tech-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

.cd-about-disclaimer { padding: 80px 0; }
.cd-about-disclaimer__box {
 max-width: 800px;
 margin: 0 auto;
 background: linear-gradient(135deg, rgba(234,179,8,0.08) 0%, var(--card) 60%);
 border: 1px solid rgba(234,179,8,0.3);
 border-radius: var(--radius-lg);
 padding: 40px;
 position: relative;
}
.cd-about-disclaimer__badge {
 display: inline-block;
 background: rgba(234,179,8,0.15);
 color: #eab308;
 font-size: 12px;
 font-weight: 700;
 text-transform: uppercase;
 letter-spacing: 0.08em;
 padding: 6px 14px;
 border-radius: var(--radius-pill);
 margin-bottom: 16px;
}
.cd-about-disclaimer__box h3 {
 font-family: var(--font-display);
 font-size: 22px;
 font-weight: 800;
 color: var(--white);
 margin-bottom: 16px;
}
.cd-about-disclaimer__box p {
 font-size: 15px;
 color: var(--text-muted);
 line-height: 1.8;
 margin-bottom: 14px;
}
.cd-about-disclaimer__box p strong { color: var(--white); }
.cd-about-disclaimer__box p:last-child { margin-bottom: 0; }

/* ── About intro section ── */
.cd-about-intro { padding: 60px 0 40px; }
.cd-about-intro__inner { max-width: 760px; margin: 0 auto; text-align: center; }
.cd-about-intro__lead {
 font-family: var(--font-display);
 font-size: clamp(22px, 2.4vw, 28px);
 font-weight: 600;
 color: var(--white);
 line-height: 1.45;
 margin-bottom: 20px;
}
.cd-about-intro__inner p {
 font-size: 16px;
 color: var(--text-muted);
 line-height: 1.8;
 margin-bottom: 16px;
}
.cd-about-intro__tags {
 display: flex;
 justify-content: center;
 gap: 12px;
 flex-wrap: wrap;
 margin-top: 28px;
}
.cd-about-intro__tags span {
 font-size: 14px;
 font-weight: 600;
 color: var(--white);
 background: rgba(122,0,223,0.1);
 border: 1px solid rgba(122,0,223,0.3);
 border-radius: var(--radius-pill);
 padding: 10px 20px;
}

/* ── About generic section blocks ── */
.cd-about-section { padding: 60px 0; }
.cd-about-section--alt { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.cd-about-section__inner { max-width: 760px; margin: 0 auto; }
.cd-about-section h2 {
 font-family: var(--font-display);
 font-size: clamp(26px, 3vw, 36px);
 font-weight: 800;
 color: var(--white);
 margin: 12px 0 20px;
 line-height: 1.25;
}
.cd-about-section p {
 font-size: 16px;
 color: var(--text-muted);
 line-height: 1.8;
 margin-bottom: 16px;
}
.cd-about-list {
 display: grid;
 grid-template-columns: repeat(2, 1fr);
 gap: 12px 32px;
 margin: 24px 0;
 list-style: none;
 padding: 0;
}
.cd-about-list li {
 font-size: 15px;
 color: var(--text-muted);
 padding-left: 20px;
 position: relative;
}
.cd-about-list li::before {
 content: "→";
 color: var(--purple-light);
 position: absolute;
 left: 0;
 font-weight: 700;
}
.cd-about-callout {
 font-size: 17px !important;
 color: var(--white) !important;
 padding: 20px 24px;
 background: rgba(122,0,223,0.08);
 border-left: 3px solid var(--purple);
 border-radius: var(--radius);
 margin-top: 24px !important;
}
.cd-about-bullets {
 list-style: none;
 padding: 0;
 margin: 24px 0 0;
 display: flex;
 flex-direction: column;
 gap: 14px;
}
.cd-about-bullets li {
 font-size: 16px;
 color: var(--text-muted);
 padding: 16px 20px;
 background: var(--card);
 border: 1px solid var(--border);
 border-radius: var(--radius);
 border-left: 3px solid var(--purple);
}
.cd-about-bullets li strong { color: var(--white); }

@media (max-width: 640px) {
 .cd-about-list { grid-template-columns: 1fr; }
 .cd-about-disclaimer__box { padding: 28px 24px; }
 .cd-about-section { padding: 48px 0; }
}

/* ============================================================
 SERVICES LIST PAGE
 ============================================================ */
.cd-services-list { padding: 80px 0; }
.cd-service-detail {
 display: grid;
 grid-template-columns: 1fr;
 gap: 24px;
 align-items: start;
 background: var(--card);
 border: 1px solid var(--border);
 border-radius: var(--radius-lg);
 padding: 40px;
 margin-bottom: 24px;
 position: relative;
 transition: border-color var(--transition);
}
.cd-service-detail:hover { border-color: var(--border-light); }
.cd-service-detail--featured { border-color: var(--purple); }
.cd-service-detail--bundle {
 border-color: var(--purple);
 background: linear-gradient(135deg, rgba(122,0,223,0.08) 0%, var(--card) 60%);
}
.cd-service-detail__badge {
 position: absolute;
 top: -14px;
 left: 40px;
 background: var(--purple);
 color: var(--white);
 font-size: 11px;
 font-weight: 700;
 letter-spacing: 0.08em;
 text-transform: uppercase;
 padding: 4px 16px;
 border-radius: var(--radius-pill);
}
.cd-service-detail__icon { font-size: 28px; padding-top: 6px; }
.cd-service-detail__meta {
 display: flex;
 align-items: center;
 gap: 12px;
 margin-bottom: 8px;
}
.cd-service-detail__body h2 {
 font-family: var(--font-display);
 font-size: 26px;
 font-weight: 800;
 color: var(--white);
 margin-bottom: 12px;
}
.cd-service-detail__lead {
 font-size: 16px;
 color: var(--text-muted);
 line-height: 1.7;
 margin-bottom: 28px;
}
.cd-service-detail__cols {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 40px;
 margin-bottom: 28px;
}
.cd-service-detail__cols h4 {
 font-size: 13px;
 font-weight: 700;
 text-transform: uppercase;
 letter-spacing: 0.06em;
 color: var(--text-dim);
 margin-bottom: 12px;
}
.cd-service-detail__cols ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.cd-service-detail__cols li { font-size: 14px; color: var(--text-muted); }
.cd-services-list__category {
 font-family: var(--font-display);
 font-size: 22px;
 font-weight: 800;
 color: var(--purple-light);
 text-transform: uppercase;
 letter-spacing: 0.04em;
 margin: 48px 0 24px;
 padding-bottom: 12px;
 border-bottom: 1px solid var(--border);
}
.cd-services-list__category:first-of-type { margin-top: 0; }

.cd-badge {
 display: inline-block;
 background: rgba(122,0,223,0.2);
 border: 1px solid var(--purple);
 color: var(--purple-light);
 font-family: var(--font-display);
 font-size: 20px;
 font-weight: 800;
 padding: 4px 16px;
 border-radius: var(--radius-pill);
}
.cd-badge--bundle { font-size: 18px; }
.cd-badge--save {
 background: rgba(34,197,94,0.15);
 border-color: var(--green);
 color: var(--green);
 font-size: 13px;
 font-weight: 700;
 font-family: var(--font-sans);
}

/* ============================================================
 CONTACT PAGE
 ============================================================ */
.cd-contact { padding: 80px 0; }
.cd-contact__inner {
 display: grid;
 grid-template-columns: 1fr 380px;
 gap: 80px;
 align-items: start;
}
.cd-contact__form-wrap h2,
.cd-contact__info h2 {
 font-family: var(--font-display);
 font-size: 26px;
 font-weight: 700;
 color: var(--white);
 margin-bottom: 32px;
}
.cd-contact-form { display: flex; flex-direction: column; gap: 20px; }
.cd-contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.cd-contact-form__field { display: flex; flex-direction: column; gap: 8px; }
.cd-contact-form__field label {
 font-size: 13px;
 font-weight: 600;
 color: var(--text-muted);
 text-transform: uppercase;
 letter-spacing: 0.05em;
}
.cd-contact-form__field input,
.cd-contact-form__field select,
.cd-contact-form__field textarea {
 background: var(--bg-3);
 border: 1px solid var(--border);
 border-radius: var(--radius-sm);
 color: var(--white);
 font-family: var(--font-sans);
 font-size: 15px;
 padding: 14px 16px;
 outline: none;
 transition: border-color var(--transition);
 width: 100%;
}
.cd-contact-form__field input:focus,
.cd-contact-form__field select:focus,
.cd-contact-form__field textarea:focus { border-color: var(--purple); }
.cd-contact-form__field select option { background: var(--card); }
.cd-contact-form__field textarea { resize: vertical; min-height: 140px; }
.cd-contact-form__status {
 font-size: 14px;
 padding: 12px 16px;
 border-radius: var(--radius-sm);
 display: none;
}
.cd-contact-form__status--ok {
 display: block;
 background: rgba(34,197,94,0.15);
 border: 1px solid var(--green);
 color: var(--green);
}
.cd-contact-form__status--err {
 display: block;
 background: rgba(239,68,68,0.15);
 border: 1px solid var(--red);
 color: var(--red);
}

.cd-contact-info-card {
 display: flex;
 gap: 20px;
 align-items: flex-start;
 background: var(--card);
 border: 1px solid var(--border);
 border-radius: var(--radius);
 padding: 24px;
 margin-bottom: 16px;
}
.cd-contact-info-card__icon { font-size: 20px; flex-shrink: 0; }
.cd-contact-info-card strong { display: block; color: var(--white); font-size: 14px; margin-bottom: 4px; }
.cd-contact-info-card p { color: var(--text-muted); font-size: 14px; margin-bottom: 2px; }
.cd-contact-info-card small { color: var(--text-dim); font-size: 12px; }
.cd-contact-info-card a { color: var(--purple-light); text-decoration: none; }
.cd-contact__faq-links { margin-top: 32px; }
.cd-contact__faq-links h3 {
 font-size: 14px;
 font-weight: 700;
 color: var(--text-muted);
 text-transform: uppercase;
 letter-spacing: 0.06em;
 margin-bottom: 16px;
}
.cd-contact__faq-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.cd-contact__faq-links li a {
 color: var(--text-muted);
 text-decoration: none;
 font-size: 14px;
 transition: color var(--transition);
}
.cd-contact__faq-links li a:hover { color: var(--purple-light); }

/* ============================================================
 AUTH (login / register)
 ============================================================ */
.cd-auth {
 min-height: calc(100vh - 80px);
 display: flex;
 align-items: center;
 justify-content: center;
 padding: 80px 0;
}
.cd-auth__card {
 background: var(--card);
 border: 1px solid var(--border);
 border-radius: var(--radius-lg);
 padding: 48px 40px;
 width: 100%;
 max-width: 460px;
}
.cd-auth__logo {
 font-family: var(--font-display);
 font-size: 22px;
 font-weight: 800;
 color: var(--white);
 text-align: center;
 margin-bottom: 24px;
}
.cd-auth__title {
 font-family: var(--font-display);
 font-size: 28px;
 font-weight: 800;
 color: var(--white);
 text-align: center;
 margin-bottom: 8px;
}
.cd-auth__sub {
 font-size: 14px;
 color: var(--text-muted);
 text-align: center;
 margin-bottom: 32px;
}
.cd-auth__error {
 background: rgba(239,68,68,0.15);
 border: 1px solid var(--red);
 color: var(--red);
 border-radius: var(--radius-sm);
 padding: 12px 16px;
 font-size: 14px;
 margin-bottom: 20px;
}
.cd-auth__notice {
 background: rgba(34,197,94,0.15);
 border: 1px solid var(--green);
 color: var(--green);
 border-radius: var(--radius-sm);
 padding: 12px 16px;
 font-size: 14px;
 margin-bottom: 20px;
}
.cd-auth-form { display: flex; flex-direction: column; gap: 20px; }
.cd-auth-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cd-auth-form__field { display: flex; flex-direction: column; gap: 8px; }
.cd-auth-form__field label {
 font-size: 13px;
 font-weight: 600;
 color: var(--text-muted);
 display: flex;
 justify-content: space-between;
 align-items: center;
}
.cd-auth-form__forgot {
 font-size: 12px;
 color: var(--purple-light);
 text-decoration: none;
 font-weight: 400;
}
.cd-auth-form__field input {
 background: var(--bg-3);
 border: 1px solid var(--border);
 border-radius: var(--radius-sm);
 color: var(--white);
 font-family: var(--font-sans);
 font-size: 15px;
 padding: 14px 16px;
 outline: none;
 transition: border-color var(--transition);
 width: 100%;
}
.cd-auth-form__field input:focus { border-color: var(--purple); }
.cd-auth-form__remember,
.cd-auth-form__checkbox {
 display: flex;
 align-items: flex-start;
 gap: 10px;
 font-size: 13px;
 color: var(--text-muted);
 cursor: pointer;
}
.cd-auth-form__checkbox a { color: var(--purple-light); text-decoration: none; }
.cd-btn--full { width: 100%; justify-content: center; }
.cd-auth__switch {
 text-align: center;
 margin-top: 24px;
 font-size: 14px;
 color: var(--text-muted);
}
.cd-auth__switch a { color: var(--purple-light); text-decoration: none; }

/* ============================================================
 RESPONSIVE
 ============================================================ */
@media (max-width: 1024px) {
 .cd-services__grid { grid-template-columns: repeat(2, 1fr); }
 .cd-trust__grid { grid-template-columns: repeat(2, 1fr); }
 .cd-pricing__grid { grid-template-columns: 1fr; max-width: 440px; }
 .cd-footer__top { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
 :root { --header-h: 60px; }
 .cd-header__nav { display: none; }
 .cd-header__cta { display: none; }
 .cd-hamburger { display: flex; }
 .cd-header__inner { height: 60px; }
 /* Show drawer */
 .cd-drawer { display: flex; }
 .cd-hero { padding: 4px 0 60px; }
 .cd-hero__proof { padding: 20px 16px; gap: 0; }
 .cd-hero__proof-item { padding: 0 16px; }
 .cd-hero__proof-item strong { font-size: 22px; }

 .cd-vsdiy { padding: 64px 0; }
 .cd-vsdiy .cd-section-header { margin-bottom: 32px; }
 .cd-vsdiy__inner { grid-template-columns: 1fr; gap: 16px; }
 .cd-vsdiy__vs { display: none; }
 .cd-vsdiy__item { padding: 24px; }
 .cd-vsdiy__label { font-size: 18px; margin-bottom: 20px; }
 .cd-vsdiy__item ul { gap: 16px; }
 .cd-vsdiy__icon { width: 32px; height: 32px; border-radius: 8px; }
 .cd-vsdiy__price { font-size: 17px; }

 .cd-services__grid { grid-template-columns: 1fr; }
 .cd-trust__grid { grid-template-columns: 1fr; }

 .cd-how__step { grid-template-columns: 60px 1fr; gap: 20px; }
 .cd-how__step-num { font-size: 36px; }

 .cd-footer__links { grid-template-columns: repeat(2, 1fr); }

 .cd-hero__actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
 .cd-hero__proof { flex-wrap: wrap; }
 .cd-hero__proof-divider { display: none; }
 .cd-hero__proof-item { width: 50%; border-bottom: 1px solid var(--border); padding: 16px 0; }
 .cd-footer__links { grid-template-columns: 1fr; }
}

/* ============================================================
 SERVICE LANDING PAGES
 ============================================================ */
.cd-inner-hero--service { padding-bottom: 60px; }
.cd-svc-badge {
 display: inline-block;
 background: var(--purple);
 color: var(--white);
 font-size: 11px;
 font-weight: 700;
 letter-spacing: 0.1em;
 text-transform: uppercase;
 padding: 5px 18px;
 border-radius: var(--radius-pill);
 margin-bottom: 16px;
}
.cd-inner-hero__actions { margin-top: 32px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.cd-inner-hero__price-note { font-size: 13px; color: var(--text-dim); }

/* ── Trust Strip ── */
.cd-trust-strip {
 padding: 32px 0;
 background: var(--bg-2);
 border-top: 1px solid var(--border);
 border-bottom: 1px solid var(--border);
}
.cd-trust-strip__grid {
 display: flex;
 justify-content: space-around;
 align-items: center;
 gap: 24px;
 flex-wrap: wrap;
}
.cd-trust-strip__item {
 font-size: 14px;
 color: var(--text-muted);
 display: flex;
 align-items: center;
 gap: 6px;
}
.cd-trust-strip__item strong { color: var(--white); font-weight: 600; }

/* ── Homepage FAQ Section ── */
.cd-faq-section { padding: 80px 0; background: var(--bg); }
.cd-faq-section__list { max-width: 780px; margin: 40px auto 0; display: flex; flex-direction: column; gap: 12px; }
.cd-faq-section__item {
 background: var(--card);
 border: 1px solid var(--border);
 border-radius: var(--radius);
 padding: 20px 24px;
 transition: border-color var(--transition);
}
.cd-faq-section__item[open] { border-color: var(--purple); }
.cd-faq-section__item summary {
 cursor: pointer;
 font-size: 16px;
 font-weight: 600;
 color: var(--white);
 list-style: none;
 display: flex;
 justify-content: space-between;
 align-items: center;
 gap: 16px;
}
.cd-faq-section__item summary::-webkit-details-marker { display: none; }
.cd-faq-section__item summary::after {
 content: '+';
 font-size: 24px;
 font-weight: 300;
 color: var(--purple-light);
 transition: transform var(--transition);
}
.cd-faq-section__item[open] summary::after { transform: rotate(45deg); }
.cd-faq-section__item p {
 font-size: 15px;
 color: var(--text-muted);
 line-height: 1.7;
 margin: 14px 0 0;
}
.cd-faq-section__item p a { color: var(--purple-light); text-decoration: underline; }

/* ── Help Panel ── */
.cd-help-panel { padding: 40px 0 60px; background: var(--bg); }
.cd-help-panel__card {
 display: flex;
 align-items: center;
 gap: 24px;
 max-width: 900px;
 margin: 0 auto;
 background: linear-gradient(135deg, rgba(122,0,223,0.08) 0%, var(--card) 70%);
 border: 1px solid rgba(122,0,223,0.3);
 border-radius: var(--radius-lg);
 padding: 32px;
 flex-wrap: wrap;
}
.cd-help-panel__icon { font-size: 40px; flex-shrink: 0; }
.cd-help-panel__text { flex: 1; min-width: 240px; }
.cd-help-panel__text h3 {
 font-family: var(--font-display);
 font-size: 20px;
 font-weight: 700;
 color: var(--white);
 margin: 0 0 6px;
}
.cd-help-panel__text p {
 font-size: 14px;
 color: var(--text-muted);
 line-height: 1.6;
 margin: 0;
}
@media (max-width: 640px) {
 .cd-help-panel__card { padding: 24px; flex-direction: column; align-items: flex-start; text-align: left; }
 .cd-trust-strip__grid { gap: 12px; font-size: 12px; }
 .cd-trust-strip__item { font-size: 12px; }
}

/* ── Service Clarity Box ── */
.cd-svc-clarity { padding: 60px 0; background: var(--bg); }
.cd-svc-clarity__card {
 background: linear-gradient(135deg, rgba(122,0,223,0.06) 0%, var(--card) 60%);
 border: 1px solid var(--border);
 border-radius: var(--radius-lg);
 padding: 40px;
 max-width: 960px;
 margin: 0 auto;
}
.cd-svc-clarity__head {
 display: flex;
 align-items: flex-start;
 gap: 16px;
 margin-bottom: 28px;
 padding-bottom: 24px;
 border-bottom: 1px solid var(--border);
}
.cd-svc-clarity__icon { font-size: 32px; flex-shrink: 0; }
.cd-svc-clarity__head h2 {
 font-family: var(--font-display);
 font-size: 22px;
 font-weight: 800;
 color: var(--white);
 margin: 0 0 4px;
}
.cd-svc-clarity__head p { font-size: 14px; color: var(--text-muted); margin: 0; }
.cd-svc-clarity__grid {
 display: grid;
 grid-template-columns: repeat(2, 1fr);
 gap: 20px 32px;
 margin-bottom: 28px;
}
.cd-svc-clarity__item { display: flex; flex-direction: column; gap: 4px; }
.cd-svc-clarity__label {
 font-size: 12px;
 font-weight: 700;
 text-transform: uppercase;
 letter-spacing: 0.5px;
 color: var(--text-dim);
}
.cd-svc-clarity__item strong {
 font-size: 14px;
 font-weight: 500;
 color: var(--white);
 line-height: 1.5;
}
.cd-svc-clarity__help {
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 16px;
 padding: 20px;
 background: rgba(122,0,223,0.08);
 border: 1px solid rgba(122,0,223,0.2);
 border-radius: var(--radius);
 flex-wrap: wrap;
}
.cd-svc-clarity__help p { margin: 0; font-size: 14px; color: var(--white); }
@media (max-width: 640px) {
 .cd-svc-clarity { padding: 40px 0; }
 .cd-svc-clarity__card { padding: 24px; }
 .cd-svc-clarity__grid { grid-template-columns: 1fr; gap: 16px; }
 .cd-svc-clarity__head { flex-direction: column; gap: 8px; }
}

.cd-svc-when { padding: 80px 0; background: var(--bg-2); border-top: 1px solid var(--border); }
.cd-svc-when__inner {
 display: grid;
 grid-template-columns: 1fr 320px;
 gap: 80px;
 align-items: start;
}
.cd-svc-when h2 {
 font-family: var(--font-display);
 font-size: 28px;
 font-weight: 800;
 color: var(--white);
 margin-bottom: 24px;
}
.cd-svc-checklist { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.cd-svc-checklist li {
 font-size: 15px;
 color: var(--text-muted);
 padding-left: 28px;
 position: relative;
 line-height: 1.5;
}
.cd-svc-checklist li::before {
 content: '';
 position: absolute;
 left: 0;
 color: var(--green);
 font-weight: 700;
}

.cd-svc-price-card {
 background: var(--card);
 border: 1px solid var(--purple);
 border-radius: var(--radius-lg);
 padding: 32px 28px;
 text-align: center;
 position: sticky;
 top: 100px;
}
.cd-svc-price-card__icon { font-size: 24px; margin-bottom: 8px; }
.cd-svc-price-card__name { font-weight: 700; color: var(--white); font-size: 15px; margin-bottom: 8px; }
.cd-svc-price-card__was { color: var(--text-dim); font-size: 14px; text-decoration: line-through; margin-bottom: 4px; }
.cd-svc-price-card__price {
 font-family: var(--font-display);
 font-size: 48px;
 font-weight: 800;
 color: var(--white);
 line-height: 1;
 margin-bottom: 4px;
}
.cd-svc-price-card__sub { font-size: 12px; color: var(--text-dim); margin-bottom: 20px; }
.cd-svc-price-card__guarantees {
 list-style: none;
 display: flex;
 flex-direction: column;
 gap: 8px;
 margin-top: 16px;
 text-align: left;
}
.cd-svc-price-card__guarantees li {
 font-size: 13px;
 color: var(--text-muted);
 padding-left: 20px;
 position: relative;
}
.cd-svc-price-card__guarantees li::before { content: ''; position: absolute; left: 0; color: var(--green); font-weight: 700; }

.cd-svc-process { padding: 80px 0; }
.cd-svc-process__steps {
 display: grid;
 grid-template-columns: repeat(2, 1fr);
 gap: 24px;
 margin-top: 48px;
}
.cd-svc-step {
 background: var(--card);
 border: 1px solid var(--border);
 border-radius: var(--radius);
 padding: 28px;
 display: flex;
 gap: 20px;
 align-items: flex-start;
 transition: border-color var(--transition);
}
.cd-svc-step:hover { border-color: var(--purple); }
.cd-svc-step__num {
 font-family: var(--font-display);
 font-size: 28px;
 font-weight: 800;
 color: var(--purple);
 line-height: 1;
 flex-shrink: 0;
 width: 48px;
}
.cd-svc-step__body h3 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.cd-svc-step__body p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

.cd-svc-what { padding: 80px 0; background: var(--bg-2); border-top: 1px solid var(--border); }
.cd-svc-what__inner { max-width: 760px; margin: 0 auto; }
.cd-svc-what h2 {
 font-family: var(--font-display);
 font-size: 28px;
 font-weight: 800;
 color: var(--white);
 margin-bottom: 28px;
}
.cd-svc-what__list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.cd-svc-what__list li {
 font-size: 15px;
 color: var(--text-muted);
 padding-left: 28px;
 position: relative;
 line-height: 1.5;
}
.cd-svc-what__list li::before { content: '→'; position: absolute; left: 0; color: var(--purple-light); font-weight: 700; }
.cd-svc-compare-note {
 background: var(--bg-3);
 border: 1px solid var(--border);
 border-left: 3px solid var(--purple);
 border-radius: var(--radius-sm);
 padding: 16px 20px;
 font-size: 14px;
 color: var(--text-muted);
 font-style: italic;
}

.cd-svc-faq { padding: 80px 0; }

.cd-svc-related { padding: 60px 0; background: var(--bg-2); border-top: 1px solid var(--border); }
.cd-svc-related h2 {
 font-family: var(--font-display);
 font-size: 24px;
 font-weight: 700;
 color: var(--white);
 margin-bottom: 24px;
}
.cd-svc-related__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.cd-svc-related-card {
 display: flex;
 align-items: center;
 gap: 16px;
 background: var(--card);
 border: 1px solid var(--border);
 border-radius: var(--radius);
 padding: 20px;
 text-decoration: none;
 transition: border-color var(--transition), transform var(--transition);
}
.cd-svc-related-card:hover { border-color: var(--purple); transform: translateY(-2px); }
.cd-svc-related-card__icon { font-size: 18px; flex-shrink: 0; }
.cd-svc-related-card div { flex: 1; }
.cd-svc-related-card strong { display: block; font-size: 14px; color: var(--white); font-weight: 600; }
.cd-svc-related-card span { font-size: 13px; color: var(--text-dim); }
.cd-svc-related-card__arrow { color: var(--purple-light); font-size: 16px; flex-shrink: 0; }

/* ============================================================
 LEGAL PAGES (terms, privacy, disclaimer)
 ============================================================ */
.cd-legal-content { padding: 80px 0; }
.cd-legal-doc {
 max-width: 800px;
 margin: 0 auto;
}
.cd-legal-doc__notice {
 background: rgba(122,0,223,0.08);
 border: 1px solid var(--purple);
 border-radius: var(--radius);
 padding: 20px 24px;
 font-size: 14px;
 color: var(--text-muted);
 margin-bottom: 48px;
 line-height: 1.7;
}
.cd-legal-doc__notice--warning {
 background: rgba(239,68,68,0.08);
 border-color: var(--red);
}
.cd-legal-doc h2 {
 font-family: var(--font-display);
 font-size: 20px;
 font-weight: 700;
 color: var(--white);
 margin: 40px 0 12px;
 padding-top: 40px;
 border-top: 1px solid var(--border);
}
.cd-legal-doc h2:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
.cd-legal-doc p { font-size: 14px; color: var(--text-muted); line-height: 1.8; margin-bottom: 14px; }
.cd-legal-doc ul { list-style: disc; padding-left: 24px; margin-bottom: 14px; }
.cd-legal-doc ul li { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 6px; }
.cd-legal-doc a { color: var(--purple-light); text-decoration: none; }
.cd-legal-doc a:hover { text-decoration: underline; }
.cd-legal-doc strong { color: var(--white); font-weight: 600; }

/* ============================================================
 THANK YOU PAGE
 ============================================================ */
.cd-thankyou {
 min-height: calc(100vh - 80px);
 display: flex;
 align-items: center;
 justify-content: center;
 padding: 80px 0;
}
.cd-thankyou__card {
 background: var(--card);
 border: 1px solid var(--border);
 border-radius: var(--radius-lg);
 padding: 60px 48px;
 width: 100%;
 max-width: 600px;
 text-align: center;
}
.cd-thankyou__icon { font-size: 32px; margin-bottom: 20px; }
.cd-thankyou__card h1 {
 font-family: var(--font-display);
 font-size: 36px;
 font-weight: 800;
 color: var(--white);
 margin-bottom: 16px;
}
.cd-thankyou__lead { font-size: 16px; color: var(--text-muted); line-height: 1.7; margin-bottom: 40px; }
.cd-thankyou__steps {
 text-align: left;
 display: flex;
 flex-direction: column;
 gap: 16px;
 margin-bottom: 40px;
}
.cd-thankyou__step {
 display: flex;
 align-items: flex-start;
 gap: 16px;
 background: var(--bg-3);
 border: 1px solid var(--border);
 border-radius: var(--radius);
 padding: 16px 20px;
}
.cd-thankyou__step-num {
 width: 28px;
 height: 28px;
 border-radius: 50%;
 background: var(--purple);
 color: var(--white);
 font-size: 13px;
 font-weight: 700;
 display: flex;
 align-items: center;
 justify-content: center;
 flex-shrink: 0;
}
.cd-thankyou__step strong { display: block; color: var(--white); font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.cd-thankyou__step span { color: var(--text-muted); font-size: 13px; line-height: 1.5; }
.cd-thankyou__actions { display: flex; gap: 12px; justify-content: center; margin-bottom: 24px; }
.cd-thankyou__note { font-size: 13px; color: var(--text-dim); }
.cd-thankyou__note a { color: var(--purple-light); text-decoration: none; }

/* btn--sm */
.cd-btn--sm { padding: 8px 16px; font-size: 13px; }

/* ── User avatar dropdown menu ── */
.cd-user-menu { position: relative; }
.cd-user-menu__avatar {
 width: 36px; height: 36px;
 border-radius: 50%;
 background: linear-gradient(135deg, var(--purple), var(--purple-hover));
 color: var(--white);
 font-size: 14px; font-weight: 700;
 display: flex; align-items: center; justify-content: center;
 cursor: pointer; border: 2px solid transparent;
 transition: all var(--transition);
}
.cd-user-menu__avatar:hover { border-color: var(--purple-light); transform: scale(1.05); }
.cd-user-menu__dropdown {
 position: absolute; top: calc(100% + 8px); right: 0;
 width: 260px;
 background: var(--card); border: 1px solid var(--border);
 border-radius: var(--radius-lg);
 box-shadow: 0 16px 48px rgba(0,0,0,0.5);
 opacity: 0; visibility: hidden; transform: translateY(-8px);
 transition: all 0.2s ease;
 z-index: 1000;
 padding: 8px 0;
}
.cd-user-menu.is-open .cd-user-menu__dropdown {
 opacity: 1; visibility: visible; transform: translateY(0);
}
.cd-user-menu__info {
 padding: 12px 16px;
 display: flex; flex-direction: column; gap: 2px;
}
.cd-user-menu__info strong { font-size: 14px; color: var(--white); }
.cd-user-menu__info span { font-size: 12px; color: var(--text-dim); }
.cd-user-menu__divider {
 height: 1px; background: var(--border); margin: 4px 0;
}
.cd-user-menu__dropdown a {
 display: block; padding: 10px 16px;
 font-size: 14px; color: var(--text-muted);
 transition: all var(--transition); text-decoration: none;
}
.cd-user-menu__dropdown a:hover {
 background: rgba(122,0,223,0.1); color: var(--white);
}
.cd-user-menu__logout { color: #ef4444 !important; }
.cd-user-menu__logout:hover { background: rgba(239,68,68,0.1) !important; }

/* ── Mobile drawer user card ── */
.cd-drawer__user {
 display: flex; align-items: center; gap: 12px;
 padding: 16px 20px;
 border-bottom: 1px solid var(--border);
}
.cd-drawer__user-avatar {
 width: 40px; height: 40px; border-radius: 50%;
 background: linear-gradient(135deg, var(--purple), var(--purple-hover));
 color: var(--white); font-size: 16px; font-weight: 700;
 display: flex; align-items: center; justify-content: center;
 flex-shrink: 0;
}
.cd-drawer__user div { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.cd-drawer__user strong { font-size: 14px; color: var(--white); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cd-drawer__user span { font-size: 12px; color: var(--text-dim); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ============================================================
 RESPONSIVE — NEW SECTIONS
 ============================================================ */
@media (max-width: 1200px) {
 .cd-pricing__grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
 .cd-about-mission__inner { grid-template-columns: 1fr; gap: 48px; }
 .cd-contact__inner { grid-template-columns: 1fr; gap: 48px; }
 .cd-service-detail { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 768px) {
 .cd-svc-when__inner { grid-template-columns: 1fr; gap: 40px; }
 .cd-svc-price-card { position: static; }
 .cd-svc-process__steps { grid-template-columns: 1fr; }
 .cd-svc-related__grid { grid-template-columns: 1fr; }
 .cd-thankyou__card { padding: 40px 24px; }
 .cd-thankyou__actions { flex-direction: column; }
 .cd-pricing__grid--4 { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
 .cd-pricing-card--bundle { grid-column: span 1 !important; }
 .cd-pricing-card__features[style] { columns: 1 !important; }
 .cd-compare-row { grid-template-columns: 1.5fr 1fr 1fr; }
 .cd-compare-row span { padding: 12px; font-size: 13px; }
 .cd-about-tech-grid { grid-template-columns: 1fr; }
 .cd-service-detail { grid-template-columns: 1fr; }
 .cd-service-detail__icon { display: none; }
 .cd-service-detail__cols { grid-template-columns: 1fr; gap: 24px; }
 .cd-contact-form__row { grid-template-columns: 1fr; }
 .cd-auth-form__row { grid-template-columns: 1fr; }
 .cd-auth__card { padding: 36px 24px; }
 .cd-how__step { grid-template-columns: 60px 1fr; gap: 20px; }
}


/* ============================================================
 MOBILE-PROSE-FIX — responsive prose and guide pages
 ============================================================ */
@media (max-width: 768px) {
 .cd-prose { padding: 100px 0 60px; }

 /* Guide/content pages */
 .cd-page-content { padding: 0 4px; }
 .cd-page-content h1 { font-size: 26px; margin-bottom: 20px; }
 .cd-page-content h2 { font-size: 20px; margin: 32px 0 12px; }
 .cd-page-content h3 { font-size: 17px; margin: 24px 0 10px; }

 /* Tables — horizontal scroll on mobile */
 .cd-page-content table {
 font-size: 13px;
 }
 .cd-page-content th,
 .cd-page-content td { padding: 8px 10px; }

 /* State landing page full-width CTA buttons */
 .cd-inner-hero__actions .cd-btn {
 width: 100%;
 max-width: 340px;
 justify-content: center;
 }

 /* Service page sidebar card stacks below on mobile */
 .cd-svc-when__inner { grid-template-columns: 1fr; }
 .cd-svc-price-card { position: static; margin-top: 0; }

 /* Dashboard */
 .cd-dash__grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 480px) {
 .cd-hero h1 { font-size: clamp(28px, 9vw, 42px); }
 .cd-container { padding-left: 16px; padding-right: 16px; }

 /* Stat proof row wraps cleanly at 2-per-row */
 .cd-hero__proof-item { width: 50%; }

 /* Footer navigation stacks */
 .cd-footer__links { grid-template-columns: 1fr; }

 /* Mobile nav tap targets */
 .cd-mobile-nav a { padding: 14px 20px; font-size: 16px; }
}

/* ── Hamburger active state (X animation) ── */
/* Hamburger → X (span height 2px + gap 6px = 8px between centres) */
.cd-hamburger.is-active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.cd-hamburger.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); width: 0; }
.cd-hamburger.is-active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Close mobile nav on outside click — handled by JS */

/* ============================================================
 MOBILE UX POLISH — Touch targets, spacing, readability
 ============================================================ */

/* All buttons: enforce minimum 44px touch target */
.cd-btn {
 min-height: 44px;
}

/* Primary CTA on hero: full-width on small phones */
@media (max-width: 480px) {
 .cd-hero__actions .cd-btn--primary {
 width: 100%;
 max-width: 340px;
 justify-content: center;
 }
 /* Pricing cards: ensure CTA fills card */
 .cd-pricing-card .cd-btn {
 width: 100%;
 justify-content: center;
 }
 /* Service card CTAs: full width */
 .cd-service-card .cd-btn {
 width: 100%;
 justify-content: center;
 }
}

/* Footer link touch targets on mobile */
@media (max-width: 768px) {
 .cd-footer__col a {
 padding: 10px 0;
 min-height: 44px;
 display: flex;
 align-items: center;
 }
}

/* Prose / guide page images: never overflow */
.cd-page-content img,
.cd-prose img {
 max-width: 100%;
 height: auto;
}

/* Table overflow on ALL screen sizes (not just mobile) */
.cd-page-content table {
 display: block;
 overflow-x: auto;
 -webkit-overflow-scrolling: touch;
 max-width: 100%;
}

/* Service cards on mobile: slightly more breathing room */
@media (max-width: 640px) {
 .cd-service-card {
 padding: 28px 20px;
 }
 .cd-how__step {
 padding: 24px 20px;
 }
}

/* Pricing card on mobile: full width up to max */
@media (max-width: 640px) {
 .cd-pricing__grid {
 max-width: 420px;
 margin-left: auto;
 margin-right: auto;
 }
}

/* Service selection options in wizard: enforce touch target */
.cd-service-option {
 min-height: 44px;
 cursor: pointer;
}

/* Wizard step heading sizes: tighter on very small phones */
@media (max-width: 380px) {
 .cd-wizard__step-label { font-size: 11px; }
 .cd-wizard h2 { font-size: 20px; line-height: 1.3; }
}

/* Processing step text: readable on small screens */
@media (max-width: 480px) {
 .cd-processing h2 { font-size: 26px; }
 .cd-processing p { font-size: 15px; }
}

/* Auth cards: a little tighter on phone */
@media (max-width: 480px) {
 .cd-auth__card { padding: 32px 20px; }
 .cd-auth__card h1 { font-size: 26px; }
}

/* Ensure all links in content areas have minimum tap size */
@media (max-width: 768px) {
 .cd-page-content a,
 .cd-prose a {
 display: inline-block;
 padding: 2px 0;
 }
}

/* ── Scroll-in animation (via JS IntersectionObserver) ─────────────────── */
.will-animate {
 opacity: 0;
 transform: translateY(22px);
 transition: opacity 0.5s ease, transform 0.5s ease;
}
.will-animate.is-visible {
 opacity: 1;
 transform: none;
}

/* ── Header scrolled state ──────────────────────────────────────────────── */
.cd-header.is-scrolled {
 background: rgba(10,10,10,0.98) !important;
 box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

/* ═══════════════════════════════════════════════════════════
 MOBILE-FIRST OPTIMISATIONS — 375px and below
 ═══════════════════════════════════════════════════════════ */

@media (max-width: 375px) {
 :root { --header-h: 56px; }
 .cd-container { padding: 0 14px; }
 .cd-header__inner { height: 56px; }

 /* Hero */
 .cd-hero { padding: 0 0 48px; }
 .cd-hero__heading { font-size: clamp(24px, 8vw, 36px); letter-spacing: -1px; }
 .cd-hero__sub { font-size: 14px; }
 .cd-hero__badge { font-size: 10px; padding: 5px 12px; }

 /* Proof items — stack full width */
 .cd-hero__proof { flex-direction: column; gap: 0; }
 .cd-hero__proof-item { width: 100%; padding: 12px 0; border-bottom: 1px solid var(--border); }
 .cd-hero__proof-item:last-child { border-bottom: none; }
 .cd-hero__proof-divider { display: none; }

 /* Buttons */
 .cd-btn--lg { padding: 12px 20px; font-size: 14px; }
 .cd-btn--xl { padding: 14px 24px; font-size: 15px; }

 /* Section headers */
 .cd-section-header h2 { font-size: clamp(22px, 7vw, 32px); }
 .cd-eyebrow { font-size: 10px; }

 /* Services grid */
 .cd-services__grid { gap: 12px; }
 .cd-service-card { padding: 20px; }
 .cd-service-card h3 { font-size: 17px; }
 .cd-service-card p { font-size: 13px; }

 /* VS DIY */
 .cd-vsdiy { padding: 48px 0; }
 .cd-vsdiy .cd-section-header { margin-bottom: 24px; }
 .cd-vsdiy__item { padding: 18px; }
 .cd-vsdiy__label { font-size: 16px; margin-bottom: 16px; }
 .cd-vsdiy__item li { font-size: 13px; gap: 10px; }
 .cd-vsdiy__icon { width: 28px; height: 28px; }
 .cd-vsdiy__price { font-size: 15px; }
 .cd-vsdiy__badge { font-size: 10px; }

 /* How it works */
 .cd-how__step { padding: 20px; }
 .cd-how__step h3 { font-size: 16px; }
 .cd-how__step p { font-size: 13px; }

 /* Pricing cards */
 .cd-pricing-card { padding: 24px 18px; }
 .cd-pricing-card__price { font-size: 36px; }

 /* Trust section */
 .cd-trust__item { padding: 20px; }
 .cd-trust__item h3 { font-size: 15px; }

 /* CTA band */
 .cd-cta-band { padding: 56px 0; }
 .cd-cta-band h2 { font-size: clamp(24px, 7vw, 36px); }
 .cd-cta-band p { font-size: 15px; }

 /* Footer */
 .cd-footer__top { grid-template-columns: 1fr; gap: 32px; }
 .cd-footer__links { grid-template-columns: 1fr; gap: 24px; }
 .cd-footer__col h4 { font-size: 13px; }
 .cd-footer__col a { font-size: 13px; }
 .cd-footer__bottom p { font-size: 11px; }
 .cd-footer__disclaimer { font-size: 10px; }
}

/* ── 320px — Very small phones (iPhone SE, old Androids) ──── */
@media (max-width: 320px) {
 .cd-container { padding: 0 12px; }
 .cd-hero__heading { font-size: 22px; }
 .cd-hero__sub { font-size: 13px; }
 .cd-section-header h2 { font-size: 20px; }
 .cd-service-card h3 { font-size: 15px; }
 .cd-vsdiy__label { font-size: 14px; }
 .cd-pricing-card__price { font-size: 32px; }
 .cd-btn { font-size: 13px; padding: 10px 16px; }
}
