/* ============================================
   AUTOMIKA — Premium Landing Page v2
   Conversion-focused · Mobile-first · Agency-grade
   ============================================ */

/* --- Custom Properties --- */
:root {
    --bg-deep:        #080B16;
    --bg-dark:        #0C1322;
    --bg-dark-card:   #111827;
    --bg-dark-raised: #1A2236;
    --bg-light:       #F8F9FC;
    --bg-white:       #FFFFFF;
    --bg-tinted:      #F1F4F9;

    --accent:         #2563EB;
    --accent-hover:   #1D4ED8;
    --accent-glow:    rgba(37, 99, 235, 0.12);
    --accent-light:   #3B82F6;
    --accent-pale:    #DBEAFE;

    --text-primary:   #0F172A;
    --text-body:      #475569;
    --text-muted:     #64748B;
    --text-white:     #FFFFFF;
    --text-light:     #CBD5E1;
    --text-dim:       #8892A7;

    --border-light:   #E2E8F0;
    --border-subtle:  #EEF2F7;
    --border-dark:    rgba(255, 255, 255, 0.08);
    --border-dark-hover: rgba(255, 255, 255, 0.14);

    --red:            #DC2626;
    --red-bg:         #FEF2F2;
    --red-text:       #B91C1C;
    --green:          #16A34A;
    --green-bg:       #F0FDF4;
    --green-text:     #15803D;
    --amber:          #F59E0B;

    --radius-sm:      8px;
    --radius-md:      12px;
    --radius-lg:      14px;
    --radius-xl:      16px;
    --radius-pill:    100px;

    --ease-out:       cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth:    cubic-bezier(0.4, 0, 0.2, 1);

    --shadow-sm:      0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md:      0 1px 3px rgba(0, 0, 0, 0.04), 0 6px 20px rgba(0, 0, 0, 0.06);
    --shadow-lg:      0 2px 4px rgba(0, 0, 0, 0.04), 0 12px 40px rgba(0, 0, 0, 0.1);
    --shadow-xl:      0 4px 12px rgba(0, 0, 0, 0.06), 0 20px 48px rgba(0, 0, 0, 0.14);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--text-body);
    background: var(--bg-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
    color: var(--text-primary);
    line-height: 1.12;
    font-weight: 800;
}

a {
    color: inherit;
    text-decoration: none;
}

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

/* --- Layout --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   BUTTONS — Premium treatment
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    font-size: 0.9375rem;
    font-weight: 600;
    font-family: inherit;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: all 0.25s var(--ease-smooth);
    gap: 8px;
    white-space: nowrap;
    letter-spacing: -0.005em;
}

.btn:active {
    transform: scale(0.97);
}

.btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Primary — Electric blue */
.btn-primary {
    background: var(--accent);
    color: var(--text-white);
    border-color: var(--accent);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06), 0 4px 16px rgba(37, 99, 235, 0.25);
}

.btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08), 0 8px 24px rgba(37, 99, 235, 0.35);
    transform: translateY(-2px);
}

/* Outline — Ghost on dark backgrounds */
.btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 2px solid rgba(255, 255, 255, 0.18);
}

.btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

/* Outline dark — Ghost on light backgrounds */
.btn-outline-dark {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-light);
}

.btn-outline-dark:hover {
    border-color: #94a3b8;
    background: var(--bg-tinted);
    transform: translateY(-2px);
}

/* Dark — Solid navy */
.btn-dark {
    background: var(--text-primary);
    color: var(--text-white);
    border-color: var(--text-primary);
}

.btn-dark:hover {
    background: #1e293b;
    border-color: #1e293b;
    transform: translateY(-2px);
}

/* White — Premium white */
.btn-white {
    background: var(--bg-white);
    color: var(--text-primary);
    border-color: var(--bg-white);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06), 0 4px 16px rgba(0, 0, 0, 0.08);
}

.btn-white:hover {
    background: var(--bg-tinted);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08), 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

/* Sizes */
.btn-lg {
    padding: 17px 40px;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

/* ============================================
   HEADER — Premium dark, taller
   ============================================ */
.site-header {
    padding: 0;
    background: var(--bg-deep);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border-dark);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.logo {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: -0.035em;
}

.logo-dot {
    color: var(--accent);
}

.header-nav {
    display: none;
    gap: 36px;
    align-items: center;
}

.header-nav a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dim);
    transition: color 0.2s var(--ease-smooth);
    letter-spacing: -0.005em;
}

.header-nav a:hover {
    color: var(--text-white);
}

.header-cta .btn {
    padding: 10px 24px;
    font-size: 0.875rem;
}

/* ============================================
   HERO — Premium dark, high-impact split
   ============================================ */
.hero {
    background: var(--bg-deep);
    padding: 56px 0 72px;
    position: relative;
    overflow: hidden;
}

/* Ambient blue glow — top right */
.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 65%);
    pointer-events: none;
}

/* Secondary glow — bottom left */
.hero::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 65%);
    pointer-events: none;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Eyebrow pill */
.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--accent-light);
    margin-bottom: 24px;
    background: rgba(37, 99, 235, 0.08);
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(37, 99, 235, 0.12);
}

.hero__eyebrow svg {
    width: 14px;
    height: 14px;
}

/* Hero heading — authority treatment */
.hero h1 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 24px;
    letter-spacing: -0.035em;
    line-height: 1.08;
}

.hero h1 span {
    color: var(--accent-light);
}

/* Hero subheading */
.hero__sub {
    font-size: 1.0625rem;
    color: var(--text-dim);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 520px;
}

/* Hero proof line */
.hero__proof {
    font-size: 0.8125rem;
    color: var(--text-dim);
    margin-bottom: 36px;
    letter-spacing: 0.01em;
}

/* Hero CTA group */
.hero .cta-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
}

/* Hero trust markers */
.hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    font-size: 0.8125rem;
    color: var(--text-dim);
}

.hero__trust span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero__trust svg {
    width: 16px;
    height: 16px;
    color: var(--green);
    flex-shrink: 0;
}

/* ============================================
   HERO DASHBOARD — Polished audit UI mockup
   ============================================ */
.hero__dashboard-wrap {
    position: relative;
}

/* Ambient glow behind dashboard */
.hero__dashboard-wrap::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: radial-gradient(ellipse, rgba(37, 99, 235, 0.1) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.hero__dashboard {
    background: var(--bg-dark-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.04),
        0 8px 24px rgba(0, 0, 0, 0.3),
        0 24px 64px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 1;
}

/* Title bar */
.dash__bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dash__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.dash__dot--red { background: #F87171; }
.dash__dot--yellow { background: #F59E0B; }
.dash__dot--green { background: #22C55E; }

.dash__url {
    font-size: 0.6875rem;
    color: var(--text-dim);
    margin-left: 10px;
    font-family: 'SF Mono', 'Fira Code', 'Courier New', monospace;
    letter-spacing: 0.02em;
}

/* Dashboard body */
.dash__body {
    padding: 24px;
}

.dash__title {
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-dim);
    margin-bottom: 18px;
}

/* Audit items */
.dash__items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dash__item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 16px;
    background: rgba(255, 255, 255, 0.025);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: background 0.2s var(--ease-smooth);
}

.dash__item:hover {
    background: rgba(255, 255, 255, 0.04);
}

/* Status dots */
.dash__status {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

.dash__status--fail {
    background: var(--red);
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.5);
}

.dash__status--warn {
    background: var(--amber);
    box-shadow: 0 0 8px rgba(245, 158, 11, 0.5);
}

.dash__status--pass {
    background: var(--green);
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
}

.dash__item-text {
    font-size: 0.8125rem;
    color: var(--text-light);
    flex: 1;
    letter-spacing: -0.005em;
}

/* Status tags */
.dash__item-tag {
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 3px 10px;
    border-radius: 4px;
    flex-shrink: 0;
}

.dash__item-tag--fail {
    background: rgba(239, 68, 68, 0.12);
    color: #F87171;
}

.dash__item-tag--warn {
    background: rgba(245, 158, 11, 0.12);
    color: #FBBF24;
}

.dash__item-tag--pass {
    background: rgba(34, 197, 94, 0.12);
    color: #4ADE80;
}

/* Score panel */
.dash__score {
    margin-top: 18px;
    padding: 16px 18px;
    background: rgba(239, 68, 68, 0.06);
    border: 1px solid rgba(239, 68, 68, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dash__score-label {
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.dash__score-value {
    font-size: 1.625rem;
    font-weight: 800;
    color: #F87171;
    letter-spacing: -0.03em;
}

/* ============================================
   PROOF STRIP — Refined trust bar
   ============================================ */
.proof-strip {
    background: var(--bg-deep);
    border-top: 1px solid var(--border-dark);
    padding: 20px 0;
}

.proof-strip__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 14px 28px;
}

.proof-strip__label {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-dim);
}

.proof-strip__items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.proof-strip__tag {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-dim);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    letter-spacing: 0.01em;
    transition: border-color 0.2s var(--ease-smooth);
}

.proof-strip__tag:hover {
    border-color: var(--border-dark-hover);
}

/* ============================================
   SECTIONS — Global section styling
   ============================================ */
.section {
    padding: 72px 0;
}

.section--base {
    background: var(--bg-light);
}

.section--tinted {
    background: var(--bg-tinted);
}

.section--white {
    background: var(--bg-white);
}

.section--dark {
    background: var(--bg-deep);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

/* Subtle top glow on dark sections */
.section--dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 400px;
    background: radial-gradient(ellipse at 50% 0%, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
    color: var(--text-white);
}

/* Section headers */
.section__header {
    text-align: center;
    margin-bottom: 48px;
    max-width: 660px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.section__eyebrow {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--accent);
    margin-bottom: 16px;
}

.section--dark .section__eyebrow {
    color: var(--accent-light);
}

.section__title {
    font-size: 1.875rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.section__subtitle {
    font-size: 1.0625rem;
    color: var(--text-muted);
    line-height: 1.75;
    letter-spacing: -0.005em;
}

.section--dark .section__subtitle {
    color: var(--text-dim);
}

/* ============================================
   PROBLEM — Cards with consequence
   ============================================ */
.problem-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.problem-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    border: 1px solid #D5DAE3;
    box-shadow: var(--shadow-md);
    transition: all 0.3s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

/* Red top accent — always visible */
.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red) 0%, rgba(220, 38, 38, 0.35) 100%);
    opacity: 1;
}

.problem-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: #C1C7D3;
}

.problem-card__icon {
    width: 44px;
    height: 44px;
    background: var(--red-bg);
    border: 1px solid rgba(220, 38, 38, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.problem-card__icon svg {
    width: 20px;
    height: 20px;
    color: var(--red);
}

.problem-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.015em;
    line-height: 1.3;
}

.problem-card p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.problem-card__consequence {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--red-text);
    background: var(--red-bg);
    border: 1px solid rgba(220, 38, 38, 0.08);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    letter-spacing: 0.01em;
}

.problem-card__consequence svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* ============================================
   SOLUTION — 3-step premium system
   ============================================ */
.solution-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    position: relative;
}

.solution-step {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 32px 24px 28px;
    border: 1px solid #D5DAE3;
    box-shadow: var(--shadow-md);
    position: relative;
    text-align: center;
    transition: all 0.3s var(--ease-smooth);
    overflow: hidden;
}

/* Blue top accent */
.solution-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
}

.solution-step:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: #C1C7D3;
}

.solution-step__num {
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-white);
    margin: 0 auto 16px;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.solution-step__icon {
    width: 48px;
    height: 48px;
    background: var(--accent-pale);
    border: 1px solid rgba(37, 99, 235, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.solution-step__icon svg {
    width: 22px;
    height: 22px;
    color: var(--accent);
}

.solution-step h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.015em;
    line-height: 1.3;
}

.solution-step p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.solution-step__outcome {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--border-subtle);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--green-text);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    letter-spacing: -0.005em;
}

.solution-step__outcome svg {
    width: 14px;
    height: 14px;
    color: var(--green);
}

/* ============================================
   AUDIT BREAKDOWN — Premium dark grid
   ============================================ */
.audit-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.audit-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: all 0.3s var(--ease-smooth);
}

.audit-card:hover {
    border-color: var(--border-dark-hover);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.audit-card__icon {
    width: 44px;
    height: 44px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.audit-card__icon svg {
    width: 20px;
    height: 20px;
    color: var(--accent-light);
}

.audit-card h3 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.audit-card p {
    font-size: 0.8125rem;
    line-height: 1.7;
    color: var(--text-dim);
}

/* ============================================
   BEFORE / AFTER — Premium comparison
   ============================================ */
.comparison {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}

.comparison__panel {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid #D5DAE3;
    box-shadow: var(--shadow-md);
    transition: all 0.3s var(--ease-smooth);
}

.comparison__panel:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.comparison__label {
    padding: 16px 24px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.comparison__label--before {
    background: #FEE2E2;
    color: var(--red-text);
    border-bottom: 2px solid rgba(220, 38, 38, 0.15);
}

.comparison__label--after {
    background: #DCFCE7;
    color: var(--green-text);
    border-bottom: 2px solid rgba(22, 163, 74, 0.15);
}

.comparison__body {
    background: var(--bg-white);
    padding: 24px;
}

.comparison__items {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.comparison__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-body);
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    transition: background 0.2s var(--ease-smooth);
}

.comparison__item:hover {
    background: var(--bg-tinted);
}

.comparison__item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.comparison__item--bad svg {
    color: var(--red);
}

.comparison__item--bad {
    border-left: 3px solid rgba(220, 38, 38, 0.2);
}

.comparison__item--good svg {
    color: var(--green);
}

.comparison__item--good {
    border-left: 3px solid rgba(22, 163, 74, 0.2);
}

/* ============================================
   STATS — High-impact numbers
   ============================================ */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.stat-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
    transition: all 0.3s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

/* Blue top accent line */
.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
}

.stat-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.stat-card__value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-card__label {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.stat-card__desc {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ============================================
   WHO THIS IS FOR — Audience cards
   ============================================ */
.icp-hero {
    max-width: 720px;
    margin: 0 auto 48px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.icp-hero__img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.audience-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 960px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.audience-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all 0.3s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

/* Blue left accent — always visible */
.audience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 3px;
    background: var(--accent);
    opacity: 1;
}

.audience-card:hover {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-2px);
}

.audience-card__icon {
    width: 44px;
    height: 44px;
    background: rgba(37, 99, 235, 0.12);
    border: 1px solid rgba(37, 99, 235, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.audience-card__icon svg {
    width: 20px;
    height: 20px;
    color: var(--accent-light);
}

.audience-card h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.audience-card p {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--text-dim);
}

/* Audience qualifying bullets */
.audience-bullets {
    margin-top: 48px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.audience-bullets__title {
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dim);
    margin-bottom: 20px;
}

.audience-bullets__list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.audience-bullet {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.9375rem;
    color: var(--text-light);
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.2s var(--ease-smooth);
}

.audience-bullet:hover {
    background: rgba(255, 255, 255, 0.06);
}

.audience-bullet svg {
    width: 18px;
    height: 18px;
    color: var(--green);
    flex-shrink: 0;
}

/* ============================================
   ABOUT / FOUNDER — Credibility block
   ============================================ */
.about-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 840px;
    margin: 0 auto;
    align-items: start;
}

.about__avatar-wrap {
    display: flex;
    justify-content: center;
}

.about__avatar {
    width: 128px;
    height: 128px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    border: 4px solid var(--bg-white);
    box-shadow: 0 0 0 1px var(--border-light), 0 4px 16px rgba(0,0,0,0.08);
}

.about__text {
    text-align: center;
}

.about__name {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}

.about__role {
    font-size: 0.875rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.01em;
}

.about__text p {
    font-size: 0.9375rem;
    line-height: 1.85;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.about__text p:last-of-type {
    margin-bottom: 0;
}

.about__credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 28px;
}

.credential {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-body);
    background: var(--bg-tinted);
    border: 1px solid var(--border-subtle);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 8px;
}

.credential svg {
    width: 14px;
    height: 14px;
    color: var(--green);
}

/* ============================================
   CTA BANNER — High-impact conversion close
   ============================================ */
.cta-banner {
    padding: 80px 0;
    text-align: center;
    background: var(--bg-deep);
    position: relative;
    overflow: hidden;
}

/* Central blue glow */
.cta-banner::before {
    content: '';
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 55%);
    pointer-events: none;
}

.cta-banner h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 16px;
    letter-spacing: -0.025em;
    line-height: 1.12;
    position: relative;
}

.cta-banner p {
    font-size: 1.0625rem;
    color: var(--text-dim);
    margin-bottom: 36px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
    position: relative;
}

.cta-banner .btn {
    position: relative;
}

.cta-banner .cta-group {
    position: relative;
}

.cta-banner__trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
    font-size: 0.8125rem;
    color: var(--text-dim);
    position: relative;
}

.cta-banner__trust span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-banner__trust svg {
    width: 14px;
    height: 14px;
    color: var(--green);
}

/* ============================================
   FOOTER — Premium dark
   ============================================ */
.site-footer {
    background: #060912;
    padding: 56px 0 32px;
    color: var(--text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer__top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 28px;
}

.footer__brand .logo {
    margin-bottom: 12px;
    display: block;
}

.footer__brand p {
    font-size: 0.8125rem;
    line-height: 1.75;
    max-width: 320px;
    color: var(--text-dim);
}

.footer__links h4 {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-dim);
    margin-bottom: 16px;
}

.footer__links a {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    transition: color 0.2s var(--ease-smooth);
}

.footer__links a:hover {
    color: var(--accent-light);
}

.footer__bottom {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--text-dim);
}

.footer__bottom a {
    color: var(--text-dim);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(255, 255, 255, 0.15);
}

.footer__bottom a:hover {
    color: var(--text-light);
    text-decoration-color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   UTILITY
   ============================================ */
.text-center { text-align: center; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }

.cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.cta-group--left {
    align-items: flex-start;
    justify-content: flex-start;
}

/* ============================================
   RESPONSIVE — Tablet (640px+)
   ============================================ */
@media (min-width: 640px) {
    .hero {
        padding: 72px 0 88px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero__sub {
        font-size: 1.125rem;
    }

    .hero .cta-group {
        flex-direction: row;
        gap: 14px;
    }

    .btn-full {
        width: auto;
    }

    .section {
        padding: 104px 0;
    }

    .section__header {
        margin-bottom: 56px;
    }

    .section__title {
        font-size: 2.25rem;
    }

    .problem-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .solution-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .comparison {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .audience-bullets__list {
        grid-template-columns: 1fr 1fr;
    }

    .about-block {
        grid-template-columns: auto 1fr;
        gap: 40px;
        align-items: start;
    }

    .about__avatar {
        margin: 0;
    }

    .about__text {
        text-align: left;
    }

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

    .footer__top {
        grid-template-columns: 1.5fr auto auto;
        gap: 56px;
    }

    .footer__bottom {
        flex-direction: row;
        justify-content: space-between;
    }

    .header-nav {
        display: flex;
    }

    .cta-banner h2 {
        font-size: 2.25rem;
    }

    .cta-group {
        flex-direction: row;
        justify-content: center;
    }
}

/* ============================================
   RESPONSIVE — Desktop (960px+)
   ============================================ */
@media (min-width: 960px) {
    .hero {
        padding: 96px 0 112px;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .hero__grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 72px;
    }

    .section {
        padding: 128px 0;
    }

    .section__header {
        margin-bottom: 72px;
    }

    .section__title {
        font-size: 2.5rem;
    }

    .problem-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .stat-card__value {
        font-size: 3.5rem;
    }

    .audit-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .audience-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .cta-banner {
        padding: 128px 0;
    }

    .cta-banner h2 {
        font-size: 2.75rem;
    }
}

/* ============================================
   RESPONSIVE — Wide (1200px+)
   ============================================ */
@media (min-width: 1200px) {
    .container {
        padding: 0 40px;
    }
}

/* ============================================
   LIVE DEMOS SHOWCASE — Premium gallery
   ============================================ */
.demos-section {
    background: var(--bg-tinted);
    padding-top: 80px;
    padding-bottom: 80px;
}

.demos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 1120px;
    margin: 0 auto;
}

.demo-card {
    background: var(--bg-white);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 6px 24px rgba(0,0,0,0.06);
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
    display: flex;
    flex-direction: column;
}

.demo-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.06), 0 16px 48px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

.demo-card__preview {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--bg-deep);
    border-bottom: 1px solid var(--border-subtle);
}

.demo-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left top;
    display: block;
    transition: transform 0.4s var(--ease-out);
}

.demo-card__img {
    transform-origin: top center;
}

.demo-card:hover .demo-card__img {
    transform: scale(1.03);
}

/* Card info area */
.demo-card__info {
    padding: 24px 24px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.demo-card__trade {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    width: fit-content;
}

.demo-card--electrician .demo-card__trade {
    color: #2563EB;
    background: rgba(37, 99, 235, 0.08);
}

.demo-card--plumbing .demo-card__trade {
    color: #0891B2;
    background: rgba(8, 145, 178, 0.08);
}

.demo-card--heating .demo-card__trade {
    color: #EA580C;
    background: rgba(234, 88, 12, 0.08);
}

.demo-card__name {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 6px;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.demo-card__tagline {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 20px;
    flex: 1;
}

.demo-card__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.demo-card__actions .btn {
    padding: 10px 20px;
    font-size: 0.8125rem;
    border-radius: var(--radius-sm);
}

.demo-card--electrician .demo-card__actions .btn-primary {
    background: #2563EB;
    border-color: #2563EB;
    box-shadow: 0 1px 2px rgba(0,0,0,0.06), 0 4px 12px rgba(37, 99, 235, 0.2);
}

.demo-card--electrician .demo-card__actions .btn-primary:hover {
    background: #1D4ED8;
    border-color: #1D4ED8;
    box-shadow: 0 1px 2px rgba(0,0,0,0.06), 0 6px 20px rgba(37, 99, 235, 0.3);
}

.demo-card--plumbing .demo-card__actions .btn-primary {
    background: #0891B2;
    border-color: #0891B2;
    box-shadow: 0 1px 2px rgba(0,0,0,0.06), 0 4px 12px rgba(8, 145, 178, 0.2);
}

.demo-card--plumbing .demo-card__actions .btn-primary:hover {
    background: #0E7490;
    border-color: #0E7490;
    box-shadow: 0 1px 2px rgba(0,0,0,0.06), 0 6px 20px rgba(8, 145, 178, 0.3);
}

.demo-card--heating .demo-card__actions .btn-primary {
    background: #EA580C;
    border-color: #EA580C;
    box-shadow: 0 1px 2px rgba(0,0,0,0.06), 0 4px 12px rgba(234, 88, 12, 0.2);
}

.demo-card--heating .demo-card__actions .btn-primary:hover {
    background: #C2410C;
    border-color: #C2410C;
    box-shadow: 0 1px 2px rgba(0,0,0,0.06), 0 6px 20px rgba(234, 88, 12, 0.3);
}

.demo-card__actions .btn-outline-dark {
    border-color: var(--border-light);
    color: var(--text-muted);
}

.demo-card__actions .btn-outline-dark:hover {
    border-color: var(--text-muted);
    color: var(--text-primary);
    background: var(--bg-tinted);
}

/* Image gradient overlay */
.demo-card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0,0,0,0.12) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

/* Feature pills */
.demo-card__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.demo-pill {
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--bg-tinted);
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border-subtle);
    letter-spacing: 0.01em;
    white-space: nowrap;
}

/* Dedicated demos page — tighter hero-to-grid gap */
.demos-section--page {
    padding-top: 0;
    padding-bottom: 80px;
}

/* Responsive demos grid */
@media (min-width: 640px) {
    .demos-grid {
        gap: 32px;
    }

    .demo-card__info {
        padding: 28px 28px 32px;
    }

    .demo-card__name {
        font-size: 1.25rem;
    }

    .demo-card__actions .btn {
        padding: 12px 24px;
        font-size: 0.875rem;
    }
}

@media (min-width: 960px) {
    .demos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .demo-card__info {
        padding: 22px 22px 26px;
    }

    .demo-card__name {
        font-size: 1.125rem;
    }

    .demo-card__tagline {
        font-size: 0.8125rem;
    }

    .demo-card__actions {
        flex-wrap: nowrap;
    }

    .demo-card__actions .btn {
        padding: 8px 14px;
        font-size: 0.75rem;
        white-space: nowrap;
    }
}

/* --- Print --- */
@media print {
    .site-header, .cta-banner, .site-footer, .btn, .proof-strip {
        display: none;
    }
    body {
        color: #000;
        background: #fff;
    }
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
    * {
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
