/* ============================================
   ClientFlow Results — MONOCHROME INDIGO
   Design System Implementation
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
    /* Backgrounds — Pure monochromatic blacks */
    --bg-deep: #000000;
    --bg-base: #0a0a0a;
    --bg-raised: #141414;
    --bg-surface: #1a1a1a;
    --bg-elevated: #222222;

    /* Text — Pure whites and grays */
    --text-primary: #FFFFFF;
    --text-body: #e0e0e0;
    --text-muted: #878787;
    --text-dim: #606060;
    --text-ghost: #333333;

    /* Indigo Accent */
    --cobalt-900: #3a4499;
    --cobalt-700: #4a54b8;
    --cobalt-500: #5966DA;
    --cobalt-300: #7b85e8;
    --cobalt-100: #a0a8f0;

    /* Glass Surfaces */
    --glass-card: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.07);
    --glass-hover: rgba(255, 255, 255, 0.10);
    --glass-active: rgba(255, 255, 255, 0.14);
    --cobalt-glass: rgba(89, 102, 218, 0.10);
    --cobalt-border: rgba(89, 102, 218, 0.25);
    --cobalt-glow: rgba(89, 102, 218, 0.20);

    /* Typography */
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Archivo', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    /* Radius */
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 14px;
    --radius-xl: 20px;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
    --transition-slower: 600ms cubic-bezier(0.16, 1, 0.3, 1);

    /* Sizes */
    --max-width: 1200px;
    --nav-height: 64px;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb { background: var(--cobalt-700); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--cobalt-500); }

/* ---------- Selection ---------- */
::selection { background: var(--cobalt-700); color: var(--text-primary); }

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-deep);
    color: var(--text-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul { list-style: none; }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--text-primary);
    line-height: 1.15;
}

/* ---------- Container ---------- */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-xl);
    position: relative;
    z-index: 1;
}

/* ---------- Background Effects ---------- */
.bg-grid {
    position: fixed;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
    z-index: 0;
}

.bg-orb-1 {
    position: fixed;
    top: -15%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(ellipse at center, rgba(89, 102, 218, 0.06), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: orbFloat 25s ease-in-out infinite;
    z-index: 0;
}

.bg-orb-2 {
    position: fixed;
    bottom: -15%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(ellipse at center, rgba(89, 102, 218, 0.04), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: orbFloat 30s ease-in-out infinite reverse;
    z-index: 0;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -20px) scale(1.05); }
    50% { transform: translate(-20px, 30px) scale(0.95); }
    75% { transform: translate(20px, 20px) scale(1.02); }
}

/* ---------- Section Divider ---------- */
.section-divider {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(89, 102, 218, 0.15), transparent);
}

/* ---------- Utility Classes ---------- */
.text-cobalt { color: var(--cobalt-300); }

.section-header {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

.section-label {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--cobalt-300);
    margin-bottom: var(--space-lg);
}

.section-title {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    margin-bottom: var(--space-lg);
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn--primary {
    background: var(--cobalt-700);
    color: var(--text-primary);
}

.btn--primary:hover {
    background: var(--cobalt-500);
    box-shadow: 0 0 24px var(--cobalt-glow);
    transform: translateY(-1px);
}

.btn--ghost {
    background: transparent;
    color: var(--cobalt-100);
    border: 1px solid rgba(89, 102, 218, 0.4);
}

.btn--ghost:hover {
    border-color: var(--cobalt-300);
    color: var(--cobalt-300);
    background: rgba(89, 102, 218, 0.06);
}

.btn--outline {
    background: transparent;
    color: var(--cobalt-100);
    border: 1px solid rgba(45, 99, 168, 0.5);
}

.btn--outline:hover {
    border-color: var(--cobalt-300);
    color: var(--cobalt-300);
    background: rgba(43, 72, 128, 0.08);
}

.btn--lg {
    padding: 16px 36px;
    font-size: 16px;
}

.btn--full { width: 100%; }

/* ---------- Scroll Animations ---------- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity var(--transition-slower), transform var(--transition-slower);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    transition: all var(--transition-base);
}

.nav.scrolled {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
}

.nav__container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    z-index: 1001;
}

.nav__logo-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.nav__logo-text {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.nav__logo-accent {
    color: var(--cobalt-100);
}

.nav__links {
    display: flex;
    gap: var(--space-2xl);
}

.nav__link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    transition: color var(--transition-fast);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cobalt-500);
    transition: width var(--transition-base);
    border-radius: 1px;
}

.nav__link:hover {
    color: var(--cobalt-100);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__link.active {
    color: var(--cobalt-100);
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav__phone {
    font-size: 13px;
    font-family: var(--font-mono);
    color: var(--text-dim);
    transition: color var(--transition-fast);
}

.nav__phone:hover {
    color: var(--cobalt-100);
}

.nav__social {
    display: flex;
    gap: 12px;
}

.nav__social-link {
    color: var(--text-dim);
    transition: color var(--transition-fast);
    display: flex;
    align-items: center;
}

.nav__social-link:hover {
    color: var(--cobalt-100);
}

.nav__cta {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 24px;
    background: var(--cobalt-700);
    color: var(--text-primary);
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
}

.nav__cta:hover {
    background: var(--cobalt-500);
    box-shadow: 0 0 24px var(--cobalt-glow);
}

.nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 4px;
}

.nav__hamburger span {
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition-base);
    border-radius: 1px;
}

/* =============================================
   HERO
   ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bg-deep);
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__orb {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(ellipse at center, rgba(89, 102, 218, 0.08), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    top: 20%;
    left: 30%;
    animation: orbFloat 25s ease-in-out infinite;
}

.hero__container {
    position: relative;
    z-index: 1;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-xl);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.hero__content {
    text-align: left;
}

.hero__actions {
    justify-content: flex-start;
}

.hero__badge {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--cobalt-300);
    margin-bottom: var(--space-2xl);
}

.hero__badge-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--cobalt-300);
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse 2.5s ease-in-out infinite;
    vertical-align: middle;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(89, 102, 218, 0.4); }
    50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(89, 102, 218, 0); }
}

.hero__title {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: var(--space-xl);
    max-width: 800px;
}

.hero__title-accent {
    display: block;
    color: var(--cobalt-100);
}

.hero__subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 0 var(--space-2xl);
    line-height: 1.7;
}

.hero__actions {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    flex-wrap: wrap;
}

.hero__scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.hero__scroll-mouse {
    width: 22px;
    height: 34px;
    border: 2px solid var(--text-ghost);
    border-radius: 11px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
    opacity: 0.5;
}

.hero__scroll-wheel {
    width: 3px;
    height: 7px;
    background: var(--text-dim);
    border-radius: 2px;
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(8px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

/* =============================================
   SOCIAL PROOF BAR
   ============================================= */
.proof-bar {
    padding: var(--space-xl) 0;
    background: var(--bg-base);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.proof-bar__content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2xl);
    flex-wrap: wrap;
}

.proof-bar__item {
    font-size: 14px;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.proof-bar__item svg {
    color: var(--cobalt-300);
}

.proof-bar__separator {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--text-ghost);
}

/* =============================================
   PAIN POINTS
   ============================================= */
.pain {
    padding: 120px 0;
    background: var(--bg-deep);
}

.pain__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: var(--space-3xl);
}

.pain__card {
    padding: 28px;
    border-radius: var(--radius-lg);
    background: var(--glass-card);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.25s ease;
}

.pain__card:hover {
    border-color: var(--glass-hover);
    transform: translateY(-2px);
}

.pain__icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: rgba(89, 102, 218, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
    color: var(--cobalt-300);
}

.pain__title {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.pain__text {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}

.pain__transition {
    text-align: center;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
}

/* =============================================
   SERVICES
   ============================================= */
.services {
    padding: 120px 0;
    background: var(--bg-base);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.services__card {
    position: relative;
    padding: 28px;
    border-radius: var(--radius-lg);
    background: var(--glass-card);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.25s ease;
    overflow: hidden;
}

.services__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--cobalt-700);
    opacity: 0.5;
    transition: opacity var(--transition-base);
}

.services__card:hover::before {
    opacity: 1;
}

.services__card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(89, 102, 218, 0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition-slow);
    pointer-events: none;
}

.services__card:hover .services__card-glow {
    opacity: 1;
}

.services__card:hover {
    border-color: var(--glass-hover);
    transform: translateY(-2px);
}

.services__card--featured {
    background: rgba(89, 102, 218, 0.06);
    border-color: rgba(89, 102, 218, 0.18);
}

.services__card--featured:hover {
    border-color: rgba(89, 102, 218, 0.30);
    box-shadow: 0 0 30px rgba(89, 102, 218, 0.08);
}

.services__card--featured::before {
    background: var(--cobalt-500);
    opacity: 1;
}

.services__card-badge {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--cobalt-300);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--cobalt-border);
    background: var(--cobalt-glass);
}

.services__card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    background: rgba(43, 72, 128, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
    color: var(--cobalt-300);
}

.services__card-price {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    color: var(--cobalt-300);
    letter-spacing: 0.05em;
    margin-bottom: var(--space-sm);
}

.services__card-title {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.services__card-desc {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}

.services__card-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.services__card-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 14px;
    color: var(--text-muted);
}

.services__card-features li::before {
    content: '→';
    color: var(--cobalt-300);
    font-size: 12px;
    font-family: var(--font-mono);
}

/* =============================================
   PROCESS
   ============================================= */
.process {
    padding: 120px 0;
    background: var(--bg-deep);
}

.process__timeline {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process__step {
    display: flex;
    gap: var(--space-xl);
    align-items: flex-start;
    width: 100%;
}

.process__number {
    font-family: var(--font-mono);
    font-size: 72px;
    font-weight: 700;
    color: var(--cobalt-700);
    opacity: 0.3;
    min-width: 100px;
    line-height: 1;
    text-align: center;
}

.process__step:hover .process__number {
    opacity: 0.6;
    transition: opacity var(--transition-base);
}

.process__content {
    flex: 1;
    padding-bottom: var(--space-md);
}

.process__title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.process__text {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}

.process__connector {
    width: 1px;
    height: 48px;
    background: linear-gradient(180deg, rgba(89, 102, 218, 0.25) 0%, rgba(89, 102, 218, 0.05) 100%);
    margin-left: 50px;
}

/* =============================================
   COMPARISON TABLE
   ============================================= */
.compare {
    padding: 120px 0;
    background: var(--bg-base);
}

.compare__table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    background: var(--glass-card);
    backdrop-filter: blur(12px);
}

.compare__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.compare__table th,
.compare__table td {
    padding: var(--space-lg) var(--space-xl);
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
}

.compare__table th {
    font-family: var(--font-mono);
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dim);
    background: var(--bg-raised);
}

.compare__table th:first-child,
.compare__table td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--text-body);
}

.compare__highlight {
    background: var(--cobalt-glass) !important;
}

.compare__table th.compare__highlight {
    color: var(--cobalt-300);
}

.compare__check {
    color: var(--cobalt-300);
    font-weight: 700;
    font-size: 16px;
}

.compare__x {
    color: var(--text-ghost);
    font-size: 16px;
}

.compare__table tbody tr:hover {
    background: rgba(255, 255, 255, 0.01);
}

.compare__table tbody tr:last-child td {
    border-bottom: none;
}

/* =============================================
   RESULTS
   ============================================= */
.results {
    padding: 120px 0;
    background: var(--bg-deep);
}

.results__showcase {
    margin-bottom: var(--space-4xl);
}

.results__card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    background: var(--glass-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    padding: var(--space-3xl);
    backdrop-filter: blur(12px);
}

.results__mockup {
    background: var(--bg-deep);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.results__mockup-bar {
    display: flex;
    gap: 6px;
    padding: 10px 14px;
    background: var(--bg-raised);
    border-bottom: 1px solid var(--glass-border);
}

.results__mockup-bar span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.results__mockup-bar span:first-child { background: #ef4444; opacity: 0.5; }
.results__mockup-bar span:nth-child(2) { background: #eab308; opacity: 0.5; }
.results__mockup-bar span:last-child { background: #22c55e; opacity: 0.5; }

.results__mockup-content {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.results__mockup-hero {
    height: 80px;
    background: linear-gradient(135deg, #3a4499, #5966DA);
    border-radius: var(--radius-sm);
}

.results__mockup-text {
    height: 10px;
    background: var(--glass-border);
    border-radius: 2px;
    width: 80%;
}

.results__mockup-text--short { width: 50%; }

.results__mockup-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
}

.results__mockup-grid div {
    height: 44px;
    background: var(--bg-raised);
    border-radius: var(--radius-sm);
}

.results__card-label {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    color: var(--cobalt-300);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.results__card-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    margin-top: var(--space-sm);
    margin-bottom: var(--space-md);
}

.results__card-desc {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

.results__stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.results__stat {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 14px;
    color: var(--text-muted);
}

.results__stat-icon {
    color: var(--cobalt-300);
    font-weight: 700;
    font-family: var(--font-mono);
}

.results__metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    text-align: center;
}

.results__metric {
    padding: var(--space-xl);
    background: var(--glass-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
}

.results__metric-number {
    font-family: var(--font-mono);
    font-size: 40px;
    font-weight: 700;
    color: var(--cobalt-300);
    line-height: 1;
}

.results__metric-suffix {
    font-family: var(--font-mono);
    font-size: 16px;
    font-weight: 500;
    color: var(--cobalt-300);
}

.results__metric-label {
    display: block;
    font-size: 13px;
    color: var(--text-dim);
    margin-top: var(--space-sm);
    font-family: var(--font-mono);
    letter-spacing: 0.05em;
}

/* =============================================
   PRICING
   ============================================= */
.pricing {
    padding: 120px 0;
    background: var(--bg-base);
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing__card {
    position: relative;
    padding: 28px;
    border-radius: var(--radius-lg);
    background: var(--glass-card);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    transition: all 0.25s ease;
}

.pricing__card:hover {
    transform: translateY(-2px);
    border-color: var(--glass-hover);
}

.pricing__card--featured {
    background: rgba(89, 102, 218, 0.06);
    border-color: rgba(89, 102, 218, 0.18);
    box-shadow: 0 0 30px rgba(89, 102, 218, 0.08);
}

.pricing__card--featured:hover {
    border-color: rgba(89, 102, 218, 0.30);
    transform: translateY(-4px);
}

.pricing__card-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-primary);
    padding: 4px 14px;
    border-radius: var(--radius-sm);
    background: var(--cobalt-700);
}

.pricing__card-header {
    text-align: center;
    padding-bottom: var(--space-xl);
    margin-bottom: var(--space-xl);
    border-bottom: 1px solid var(--glass-border);
}

.pricing__card-name {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.pricing__card-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: var(--space-sm);
}

.pricing__card-currency {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dim);
}

.pricing__card-amount {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
}

.pricing__card-period {
    font-size: 15px;
    color: var(--text-dim);
}

.pricing__card-desc {
    font-size: 14px;
    color: var(--text-muted);
}

.pricing__card-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: var(--space-2xl);
}

.pricing__card-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 14px;
    color: var(--text-muted);
}

.pricing__card-features li::before {
    content: '✓';
    color: var(--cobalt-300);
    font-weight: 700;
    font-size: 13px;
    font-family: var(--font-mono);
}

/* =============================================
   GUARANTEE
   ============================================= */
.guarantee {
    padding: 80px 0;
    background: var(--bg-deep);
}

.guarantee__content {
    text-align: center;
    padding: var(--space-3xl);
    border-radius: var(--radius-lg);
    background: var(--cobalt-glass);
    border: 1px solid var(--cobalt-border);
}

.guarantee__icon {
    color: var(--cobalt-300);
    margin-bottom: var(--space-lg);
    display: inline-flex;
}

.guarantee__title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.guarantee__text {
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
    font-size: 15px;
}

/* =============================================
   CONTACT
   ============================================= */
.contact {
    padding: 120px 0;
    background: var(--bg-base);
}

.contact__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: start;
}

.contact__title {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: var(--space-lg);
}

.contact__subtitle {
    color: var(--text-muted);
    margin-bottom: var(--space-2xl);
    line-height: 1.7;
    font-size: 16px;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: var(--space-2xl);
}

.contact__detail {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 15px;
    transition: color var(--transition-fast);
}

.contact__detail:hover {
    color: var(--cobalt-100);
}

.contact__detail svg {
    color: var(--cobalt-500);
    flex-shrink: 0;
}

.contact__trust {
    display: flex;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.contact__trust span {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--cobalt-300);
    letter-spacing: 0.05em;
}

.contact__form {
    background: var(--glass-card);
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
}

.contact__form-group {
    margin-bottom: var(--space-lg);
}

.contact__form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.contact__form label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 6px;
    font-family: var(--font-mono);
    letter-spacing: 0.03em;
}

.contact__form input,
.contact__form textarea {
    width: 100%;
    padding: 12px 14px;
    background: var(--bg-raised);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 15px;
    transition: border-color var(--transition-fast);
    outline: none;
}

.contact__form input::placeholder,
.contact__form textarea::placeholder {
    color: var(--text-ghost);
}

.contact__form input:focus,
.contact__form textarea:focus {
    border-color: var(--cobalt-500);
    box-shadow: 0 0 0 3px var(--cobalt-glow);
}

.contact__form textarea {
    resize: vertical;
    min-height: 100px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    padding: var(--space-4xl) 0 var(--space-xl);
    background: var(--bg-base);
    border-top: 1px solid var(--glass-border);
}

.footer__content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-3xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid var(--glass-border);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: 12px;
}

.footer__logo-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.footer__logo-text {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

.footer__tagline {
    color: var(--text-dim);
    font-size: 14px;
    margin-bottom: var(--space-lg);
}

.footer__social {
    display: flex;
    gap: 12px;
}

.footer__social a {
    color: var(--text-dim);
    transition: color var(--transition-fast);
    display: flex;
}

.footer__social a:hover {
    color: var(--cobalt-100);
}

.footer__links h4,
.footer__contact h4 {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-dim);
    margin-bottom: var(--space-lg);
}

.footer__links a,
.footer__contact a,
.footer__contact p {
    display: block;
    font-size: 14px;
    color: var(--text-dim);
    margin-bottom: 8px;
    transition: color var(--transition-fast);
}

.footer__links a:hover,
.footer__contact a:hover {
    color: var(--cobalt-100);
}

.footer__bottom {
    padding-top: var(--space-xl);
    text-align: center;
}

.footer__bottom p {
    font-size: 13px;
    color: var(--text-ghost);
    font-family: var(--font-mono);
}

/* =============================================
   HERO DEVICE MOCKUPS (Improvement 1)
   ============================================= */
.hero__visual {
    position: relative;
}

.hero__device-group {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.hero__laptop {
    background: var(--bg-raised);
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    box-shadow: 0 0 60px rgba(89, 102, 218, 0.10);
    overflow: hidden;
}

.hero__laptop-screen {
    background: var(--bg-deep);
}

.hero__laptop-bar {
    display: flex;
    gap: 6px;
    padding: 8px 12px;
    background: var(--bg-raised);
    border-bottom: 1px solid var(--glass-border);
}

.hero__laptop-bar span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.hero__laptop-bar span:first-child { background: #ef4444; opacity: 0.5; }
.hero__laptop-bar span:nth-child(2) { background: #eab308; opacity: 0.5; }
.hero__laptop-bar span:last-child { background: #22c55e; opacity: 0.5; }

.hero__laptop-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero__laptop-nav {
    height: 6px;
    width: 60%;
    background: var(--glass-border);
    border-radius: 3px;
}

.hero__laptop-hero-block {
    background: linear-gradient(135deg, #3a4499, #5966DA);
    border-radius: var(--radius-sm);
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hero__laptop-logo-bar {
    height: 6px;
    width: 30%;
    background: rgba(255,255,255,0.2);
    border-radius: 3px;
}

.hero__laptop-headline {
    height: 8px;
    width: 80%;
    background: rgba(255,255,255,0.3);
    border-radius: 3px;
}

.hero__laptop-headline--short { width: 50%; }

.hero__laptop-cta-bar {
    display: flex;
    gap: 8px;
    margin-top: 4px;
}

.hero__laptop-btn {
    height: 10px;
    width: 50px;
    background: var(--cobalt-300);
    border-radius: 3px;
}

.hero__laptop-btn--outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
}

.hero__laptop-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.hero__laptop-mini-card {
    height: 40px;
    background: var(--bg-raised);
    border-radius: var(--radius-sm);
    border: 1px solid var(--glass-border);
}

.hero__phone {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    background: var(--bg-deep);
    border-radius: 14px;
    border: 2px solid var(--glass-border);
    padding: 8px 6px;
    box-shadow: 0 0 40px rgba(89, 102, 218, 0.10);
}

.hero__phone-notch {
    width: 30px;
    height: 4px;
    background: var(--glass-border);
    border-radius: 2px;
    margin: 0 auto 8px;
}

.hero__phone-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hero__phone-header {
    height: 20px;
    background: linear-gradient(135deg, #3a4499, #5966DA);
    border-radius: 4px;
}

.hero__phone-text {
    height: 4px;
    width: 80%;
    background: var(--glass-border);
    border-radius: 2px;
}

.hero__phone-text--short { width: 50%; }

.hero__phone-btn {
    height: 8px;
    width: 50%;
    background: var(--cobalt-500);
    border-radius: 3px;
    margin-top: 2px;
}

.hero__phone-card {
    height: 16px;
    background: var(--bg-raised);
    border-radius: 4px;
    border: 1px solid var(--glass-border);
}

.hero__phone-card--sm { height: 12px; }

/* =============================================
   TESTIMONIALS (Improvement 6)
   ============================================= */
.testimonials {
    padding: 120px 0;
    background: var(--bg-base);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonials__card {
    padding: 28px;
    border-radius: var(--radius-lg);
    background: var(--glass-card);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    transition: all 0.25s ease;
}

.testimonials__card:hover {
    border-color: var(--glass-hover);
    transform: translateY(-2px);
}

.testimonials__stars {
    display: flex;
    gap: 3px;
    color: var(--cobalt-300);
    margin-bottom: var(--space-lg);
}

.testimonials__quote {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: var(--space-xl);
}

.testimonials__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonials__avatar {
    width: 40px;
    height: 40px;
    background: var(--cobalt-glass);
    border: 1px solid var(--cobalt-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--cobalt-300);
    font-weight: 600;
}

.testimonials__name {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

.testimonials__location {
    display: block;
    font-size: 12px;
    color: var(--text-dim);
    font-family: var(--font-mono);
}

/* =============================================
   FAQ ACCORDION (Improvement 4)
   ============================================= */
.faq {
    padding: 120px 0;
    background: var(--bg-deep);
}

.faq__list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq__item {
    background: var(--glass-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(12px);
    overflow: hidden;
    transition: border-color var(--transition-base);
}

.faq__item.active {
    border-color: var(--cobalt-border);
}

.faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    transition: color var(--transition-fast);
}

.faq__question:hover {
    color: var(--cobalt-100);
}

.faq__icon {
    font-family: var(--font-mono);
    font-size: 20px;
    color: var(--cobalt-300);
    transition: transform var(--transition-base);
    flex-shrink: 0;
    margin-left: var(--space-lg);
}

.faq__item.active .faq__icon {
    transform: rotate(45deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq__item.active .faq__answer {
    max-height: 300px;
}

.faq__answer p {
    padding: 0 24px 20px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}

/* =============================================
   PRICING TRANSITION (Improvement 3)
   ============================================= */
.pricing__transition {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    margin: var(--space-4xl) 0;
}

.pricing__transition-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(89, 102, 218, 0.15), transparent);
}

.pricing__transition-text {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-muted);
    text-align: center;
    white-space: nowrap;
}

.section-header--sub {
    margin-top: var(--space-xl);
}

/* =============================================
   RESULTS METRIC ACCENTS (Improvement 2)
   ============================================= */
.results__metric-accent {
    width: 32px;
    height: 2px;
    background: var(--cobalt-500);
    margin: var(--space-sm) auto;
    border-radius: 1px;
}

/* =============================================
   CONTACT ORB (Improvement 5)
   ============================================= */
.contact {
    position: relative;
    overflow: hidden;
}

.contact__orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(89, 102, 218, 0.08), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact__form {
    border: 1px solid var(--cobalt-border);
}

.contact__form input,
.contact__form textarea {
    background: var(--glass-card);
    border: 1px solid var(--glass-border);
}

.contact__form-microcopy {
    text-align: center;
    font-size: 13px;
    color: var(--text-dim);
    margin-top: var(--space-sm);
    font-family: var(--font-mono);
}

/* =============================================
   STICKY MOBILE CTA (Improvement 7)
   ============================================= */
.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--glass-border);
    padding: 12px 16px;
    gap: 12px;
    align-items: center;
    justify-content: center;
}

.btn--mobile-cta {
    flex: 1;
    padding: 12px 16px;
    font-size: 14px;
}

/* =============================================
   MICRO-INTERACTIONS (Improvement 8)
   ============================================= */
.services__card:hover {
    box-shadow: 0 -2px 20px rgba(89, 102, 218, 0.10);
}

.pricing__card:hover {
    transform: translateY(-2px) scale(1.02);
}

.nav__link.active {
    color: var(--cobalt-300);
}

.nav__link.active::after {
    width: 100%;
}

.text-accent {
    color: var(--cobalt-100);
}

/* =============================================
   AUDIT BREAKDOWN
   ============================================= */
.audit {
    padding: 120px 0;
    background: var(--bg-base);
}

.audit__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: var(--space-3xl);
}

.audit__card {
    display: flex;
    gap: var(--space-lg);
    padding: 24px;
    border-radius: var(--radius-lg);
    background: var(--glass-card);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    transition: all 0.25s ease;
}

.audit__card:hover {
    border-color: var(--glass-hover);
    transform: translateY(-2px);
}

.audit__number {
    font-family: var(--font-mono);
    font-size: 32px;
    font-weight: 700;
    color: var(--cobalt-500);
    opacity: 0.4;
    line-height: 1;
    min-width: 40px;
}

.audit__card:hover .audit__number {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.audit__card-title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.audit__card-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Audit CTA Banner */
.audit__cta {
    text-align: center;
    padding: var(--space-3xl);
    border-radius: var(--radius-lg);
    background: var(--cobalt-glass);
    border: 1px solid var(--cobalt-border);
}

.audit__cta-badge {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--cobalt-300);
    padding: 6px 16px;
    border-radius: var(--radius-sm);
    background: rgba(89, 102, 218, 0.12);
    margin-bottom: var(--space-lg);
}

.audit__cta-title {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.audit__cta-desc {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto var(--space-xl);
}

/* Highlighted addon in builder */
.builder__addon--highlight {
    border-color: rgba(89, 102, 218, 0.25);
    background: rgba(89, 102, 218, 0.04);
}

.builder__addon--highlight .builder__addon-name::after {
    content: '★';
    margin-left: 6px;
    color: var(--cobalt-300);
    font-size: 11px;
}

/* =============================================
   BUDGET BUILDER
   ============================================= */
.builder {
    padding: 120px 0;
    background: var(--bg-deep);
}

.builder__layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: var(--space-3xl);
    align-items: start;
}

.builder__steps {
    display: flex;
    flex-direction: column;
    gap: var(--space-3xl);
}

.builder__step {
    background: var(--glass-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    backdrop-filter: blur(12px);
}

.builder__step-header {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.builder__step-number {
    font-family: var(--font-mono);
    font-size: 28px;
    font-weight: 700;
    color: var(--cobalt-500);
    opacity: 0.5;
    min-width: 48px;
}

.builder__step-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.builder__step-desc {
    font-size: 14px;
    color: var(--text-dim);
}

/* --- Tier Cards (Step 1 & 3) --- */
.builder__options--tier,
.builder__options--monthly {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.builder__tier-card {
    position: relative;
    display: block;
    cursor: pointer;
    padding: 20px 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
    background: var(--bg-raised);
    transition: all 0.2s ease;
}

.builder__tier-card:hover {
    border-color: var(--glass-hover);
    background: var(--bg-surface);
}

.builder__tier-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.builder__tier-card:has(input:checked) {
    border-color: var(--cobalt-500);
    background: rgba(89, 102, 218, 0.06);
    box-shadow: 0 0 20px rgba(89, 102, 218, 0.08);
}

.builder__tier-card--popular {
    border-color: rgba(89, 102, 218, 0.25);
}

.builder__tier-popular {
    position: absolute;
    top: -10px;
    right: 20px;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-primary);
    padding: 3px 10px;
    border-radius: var(--radius-sm);
    background: var(--cobalt-700);
}

.builder__tier-content {
    position: relative;
    z-index: 1;
}

.builder__tier-top {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 6px;
}

.builder__tier-name {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.builder__tier-price {
    font-family: var(--font-mono);
    font-size: 18px;
    font-weight: 700;
    color: var(--cobalt-300);
}

.builder__tier-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 8px;
}

.builder__tier-features {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.builder__tier-features span {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-dim);
    padding: 3px 8px;
    background: var(--bg-elevated);
    border-radius: var(--radius-sm);
    letter-spacing: 0.02em;
}

/* --- Add-On Toggles (Step 2 & 4) --- */
.builder__options--addons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.builder__addon {
    display: block;
    cursor: pointer;
    padding: 14px 18px;
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
    background: var(--bg-raised);
    transition: all 0.2s ease;
}

.builder__addon:hover {
    border-color: var(--glass-hover);
    background: var(--bg-surface);
}

.builder__addon input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.builder__addon:has(input:checked) {
    border-color: var(--cobalt-500);
    background: rgba(89, 102, 218, 0.06);
}

.builder__addon:has(input:checked) .builder__addon-price {
    color: var(--cobalt-300);
}

.builder__addon-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
}

.builder__addon-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.builder__addon-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.builder__addon-desc {
    font-size: 12px;
    color: var(--text-dim);
}

.builder__addon-price {
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
    transition: color 0.2s ease;
}

/* --- Sticky Summary Panel --- */
.builder__summary {
    position: sticky;
    top: calc(var(--nav-height) + 24px);
}

.builder__summary-inner {
    background: var(--bg-raised);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    backdrop-filter: blur(12px);
}

.builder__summary-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--glass-border);
}

.builder__summary-section {
    margin-bottom: var(--space-md);
}

.builder__summary-label {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-dim);
    display: block;
    margin-bottom: 8px;
}

.builder__summary-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--text-muted);
    padding: 4px 0;
}

.builder__summary-value {
    font-family: var(--font-mono);
    font-weight: 600;
    color: var(--text-body);
}

.builder__summary-divider {
    height: 1px;
    background: var(--glass-border);
    margin: var(--space-md) 0;
}

.builder__summary-line--total {
    font-weight: 600;
    color: var(--text-primary);
}

.builder__summary-total {
    font-family: var(--font-mono);
    font-size: 22px;
    font-weight: 700;
    color: var(--cobalt-300);
    transition: all 0.3s ease;
}

.builder__summary-total.flash {
    transform: scale(1.08);
    color: var(--cobalt-100);
}

.builder__summary-cta {
    margin-top: var(--space-xl);
}

.builder__summary-terms {
    text-align: center;
    font-size: 11px;
    color: var(--text-dim);
    margin-top: var(--space-sm);
    font-family: var(--font-mono);
    letter-spacing: 0.02em;
}

/* =============================================
   RESPONSIVE — TABLET
   ============================================= */
@media (max-width: 1024px) {
    .section-title { font-size: 30px; }
    .hero__title { font-size: 44px; }
    .hero__container { grid-template-columns: 1fr; text-align: center; }
    .hero__content { text-align: center; }
    .hero__actions { justify-content: center; }
    .hero__subtitle { margin: 0 auto var(--space-2xl); }
    .hero__visual { max-width: 450px; margin: var(--space-2xl) auto 0; }

    .pain__grid,
    .services__grid,
    .pricing__grid,
    .results__metrics,
    .testimonials__grid,
    .audit__grid {
        grid-template-columns: 1fr 1fr;
    }

    .results__card {
        grid-template-columns: 1fr;
    }

    .builder__layout {
        grid-template-columns: 1fr;
    }

    .builder__summary {
        position: static;
    }

    .contact__wrapper {
        grid-template-columns: 1fr;
    }

    .footer__content {
        grid-template-columns: 1fr 1fr;
    }

    .pricing__transition-text {
        white-space: normal;
        text-align: center;
    }
}

/* =============================================
   RESPONSIVE — MOBILE
   ============================================= */
@media (max-width: 768px) {
    html { font-size: 15px; }

    .container { padding: 0 var(--space-lg); }

    .pain, .services, .process, .compare, .results, .pricing, .contact, .testimonials, .faq, .builder, .audit {
        padding: 80px 0;
    }

    /* Nav */
    .nav__links,
    .nav__social,
    .nav__phone {
        display: none;
    }

    .nav__hamburger { display: flex; }

    .nav__cta { display: none; }

    .nav__links.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        align-items: center;
        justify-content: center;
        gap: var(--space-2xl);
        z-index: 999;
    }

    .nav__links.active .nav__link {
        font-size: 24px;
        color: var(--text-primary);
    }

    .nav__hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .nav__hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .nav__hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Hero */
    .hero__title { font-size: 34px; }
    .hero__subtitle { font-size: 16px; }
    .hero__actions { flex-direction: column; align-items: center; }
    .hero__phone { display: none; }

    /* Grids */
    .section-title { font-size: 24px; }

    .pain__grid,
    .services__grid,
    .pricing__grid,
    .results__metrics,
    .testimonials__grid,
    .audit__grid {
        grid-template-columns: 1fr;
    }

    /* Contact */
    .contact__form-row { grid-template-columns: 1fr; }
    .contact__trust { flex-direction: column; gap: var(--space-sm); }

    /* Footer */
    .footer__content { grid-template-columns: 1fr; gap: var(--space-2xl); }

    /* Comparison */
    .compare__table th,
    .compare__table td {
        padding: 12px;
        font-size: 13px;
    }

    /* Proof bar */
    .proof-bar__content { flex-direction: column; gap: var(--space-md); }
    .proof-bar__separator { display: none; }

    /* Pricing transition */
    .pricing__transition { flex-direction: column; }
    .pricing__transition-line { width: 100%; }
    .pricing__transition-text { white-space: normal; }

    /* Mobile CTA Bar */
    .mobile-cta-bar { display: flex; }
    body { padding-bottom: 72px; }
}

@media (max-width: 480px) {
    .hero__title { font-size: 28px; }
    .hero__badge { font-size: 10px; }
    .process__step { flex-direction: column; gap: var(--space-md); }
    .process__number { min-width: auto; text-align: left; font-size: 48px; }
    .process__connector { margin-left: 0; margin: var(--space-sm) 0; }
}
