
:root{
    /* Colors */
    --bg: #ffffff;
    --bg-muted: #fafafa;
    --surface: #ffffff;
    --surface-elevated: #f9fafb;
    --surface-dark: #111111;
    --surface-card-dark: #161616;
    --text: #0a0a0a;
    --text-muted: #6b7280;
    --text-subtle: #9ca3af;
    --border: #e5e7eb;
    --border-strong: #111827;
    --accent: #059669; /* Emerald 600 - links/focus for local services */
    --accent-05: rgba(5, 150, 105, 0.05);
    --accent-10: rgba(5, 150, 105, 0.10);
    --accent-20: rgba(5, 150, 105, 0.20);
    --success: #059669; /* Emerald 600 - sparingly */
    --accent-contrast: #ffffff;
    --cta: #111827;
    --cta-hover: #000000;
    --cta-contrast: #ffffff;

    /* Radii */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 16px 40px rgba(0,0,0,0.12);
}

/* Base using tokens */
body{ color:var(--text); background:var(--bg); }
a{ color:var(--accent); text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1.5px; }
a:hover{ opacity:0.9; }

/* Focus states */
:focus-visible{ outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 6px; }

/* Component overrides powered by tokens */
.announcement-bar{ background:#000; color:#fff; }
.hero{ background:var(--bg); color:var(--text); border-bottom:1px solid var(--border); }
.hero-subhead{ color:var(--text-muted); }
.cta-primary{ background:var(--cta); color:var(--cta-contrast); }
.cta-primary:hover{ background:var(--cta-hover); }
.cta-secondary-hero{ color:var(--accent); }
.cta-secondary-hero:hover{ opacity:0.85; }

.pricing{ background:var(--bg); }
.pricing-header p{ color:var(--text-muted); }
.pricing-confidence{ color:var(--text-subtle); }
.pricing-confidence .confidence-item{ color:var(--text-muted); }

.pricing-card{ background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-lg); box-shadow:var(--shadow-sm); }
.pricing-card:hover{ box-shadow:var(--shadow-md); }
.pricing-card.featured{ border:2px solid var(--border-strong); }
.card-badge{ background:var(--accent-05); border:1px solid var(--accent-20); color:var(--accent); border-radius:999px; }
@keyframes badgePulse{0%,100%{box-shadow:0 0 0 0 var(--accent-10);}50%{box-shadow:0 0 0 6px var(--accent-10);}}
.card-badge{ animation: badgePulse 6s ease-in-out infinite; }
.card-header h3{ color:var(--text); }
.price-main{ color:var(--text); }
.price-note{ color:var(--text-subtle); }
.card-tagline{ color:var(--text-muted); }
.card-features li::before{ background:var(--text); }
.card-note{ color:var(--text-muted); }
.card-cta{ background:var(--cta); color:var(--cta-contrast); border-color:var(--cta); }
.card-cta:hover{ background:var(--cta-hover); box-shadow:var(--shadow-md); }
.pricing-card.secondary .card-cta{ background:transparent; color:var(--accent); border-color:var(--accent); }
.pricing-card.secondary .card-cta:hover{ background:var(--accent); color:#fff; }

/* Video showcase use tokens */
.video-showcase{ background:var(--surface-dark); }
.video-showcase h2{ color:#fff; }
.video-card{ background:var(--surface-card-dark); border:1px solid #262626; box-shadow:0 10px 30px rgba(0,0,0,.45); }
.video-caption strong{ color:#f5f5f5; }
.video-caption span{ color:#b3b3b3; }

/* Confidence rows: color the lock icon with accent */
.pricing-confidence .icon-lock, .hero-confidence .icon-lock, .pricing-confidence .icon-clock, .hero-confidence .icon-clock{ color: var(--accent); }
.video-showcase { background: #111111; padding: 40px 0; }
.video-showcase h2 { text-align: center; font-size: 42px; font-weight: 900; margin-bottom: 12px; letter-spacing: -1px; color: #fff; }
.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; max-width: 1100px; margin: 0 auto; }
.video-card { background: #161616; border: 1px solid #262626; border-radius: 16px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.45); transition: transform 0.2s ease, box-shadow 0.2s ease; max-width: 360px; margin: 0 auto; }
.video-card:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(0,0,0,0.5); }
.video-caption { padding: 16px 18px; display: flex; flex-direction: column; gap: 4px; }
.video-caption strong { font-size: 16px; color: #f5f5f5; }
.video-caption span { font-size: 14px; color: #b3b3b3; }

.video-cred { text-align: center; color: #b3b3b3; font-size: 14px; margin: 16px auto 8px; }
.video-cta-group { display: flex; justify-content: center; align-items: center; gap: 12px; margin-top: 8px; flex-wrap: wrap; }

@media (max-width: 768px) {
    .video-showcase { padding: 32px 0; }
    .video-showcase h2 { font-size: 32px; }
    .video-grid { 
        grid-template-columns: none; 
        grid-auto-flow: column; 
        grid-auto-columns: 85%; 
        overflow-x: auto; 
        scroll-snap-type: x mandatory; 
        -webkit-overflow-scrolling: touch; 
        padding-bottom: 6px;
        gap: 16px;
    }
    .video-grid::-webkit-scrollbar { display: none; }
    .video-card { scroll-snap-align: start; }
    .video-thumb { padding-bottom: 140%; }
    .video-caption { padding: 12px 14px; }
}

/* Reviews (text testimonials) */
.reviews { background: #f9fafb; padding: 72px 0; border-top: 1px solid #e5e7eb; border-bottom: 1px solid #e5e7eb; }
.reviews h2 { text-align: center; font-size: 42px; font-weight: 900; margin-bottom: 12px; letter-spacing: -1px; }
.reviews .section-subtitle { text-align: center; font-size: 18px; color: #6b7280; margin-bottom: 36px; }
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; max-width: 1100px; margin: 0 auto; }
.review-card { background: #ffffff; border: 1px solid #e5e7eb; border-radius: 16px; padding: 20px; box-shadow: 0 1px 2px rgba(0,0,0,0.04); transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease; display: flex; flex-direction: column; gap: 14px; }
.review-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); border-color: #d1d5db; }
.review-quote { font-size: 16px; line-height: 1.7; color: #374151; }
.review-author { display: grid; gap: 2px; }
.review-author strong { font-size: 15px; color: #0a0a0a; }
.review-meta { font-size: 13px; color: #6b7280; }
.review-person { font-size: 13px; color: #9ca3af; }

@media (max-width: 768px) {
    .reviews { padding: 56px 0; }
    .reviews h2 { font-size: 32px; }
    .reviews .section-subtitle { font-size: 16px; margin-bottom: 24px; }
    .review-grid { grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: 85%; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; gap: 16px; padding-bottom: 6px; }
    .review-grid::-webkit-scrollbar { display: none; }
    .review-card { scroll-snap-align: start; }
}

/* Before / After near-hero section */
.before-after { background: #f9fafb; border-top: 1px solid #e5e7eb; border-bottom: 1px solid #e5e7eb; padding: 32px 0; }
.ba-heading { text-align: center; font-size: 22px; font-weight: 900; letter-spacing: -0.3px; margin: 0 0 8px 0; color: #0a0a0a; }
.ba-sub { text-align: center; font-size: 15px; color: #6b7280; margin: 0 0 18px 0; }
.ba-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; max-width: 900px; margin: 0 auto; }
.ba-card { background: #ffffff; border: 1px solid #e5e7eb; border-radius: 12px; padding: 20px; box-shadow: var(--shadow-sm); }
.ba-card.ba-before { background: #fff7ed; border-color: #fed7aa; }
.ba-card.ba-after { background: #ecfdf5; border-color: #a7f3d0; }
.ba-label { display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: 0.4px; text-transform: uppercase; padding: 6px 10px; border-radius: 999px; background: #f3f4f6; color: #374151; border: 1px solid #e5e7eb; margin-bottom: 12px; }
.ba-list { list-style: none; display: grid; gap: 10px; margin: 0; padding: 0; }
.ba-list li { position: relative; padding-left: 18px; font-size: 15px; color: #374151; }
.ba-before .ba-list li::before { content: "→"; position: absolute; left: 0; top: 0; color: #6b7280; font-weight: 700; }
.ba-after .ba-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: #10b981; font-weight: 900; }

@media (max-width: 768px) {
    .before-after { padding: 24px 0; }
}

/* How it works: tiny interaction pop */
@keyframes stepPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
.step-item.pop .step-number { 
    animation: stepPop 300ms ease-out;
    box-shadow: 0 0 0 4px rgba(16,185,129,0.15);
}
@media (prefers-reduced-motion: reduce) {
    .step-item.pop .step-number { animation: none; box-shadow: none; }
}

/* Call section */
.call-section { background: var(--bg); padding: 56px 0; border-top: 1px solid var(--border); }
.call-card { max-width: 780px; margin: 0 auto; text-align: center; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden; }
.call-card::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(50% 50% at 10% 0%, rgba(16,185,129,0.08), transparent 40%), radial-gradient(50% 50% at 90% 100%, rgba(59,130,246,0.08), transparent 40%); }
.call-card h2 { font-size: 36px; font-weight: 900; letter-spacing: -0.8px; margin-bottom: 8px; }
.call-sub { font-size: 16px; color: var(--text-muted); margin-bottom: 18px; }
.call-badge { display: inline-block; background: rgba(16,185,129,0.1); color: #059669; border: 1px solid rgba(16,185,129,0.25); border-radius: 999px; padding: 6px 12px; font-size: 12px; font-weight: 800; letter-spacing: 0.3px; margin-bottom: 10px; }
.call-note { font-size: 13px; color: #6b7280; margin-top: 10px; }
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #0a0a0a;
    background: #ffffff;
}

.announcement-bar {
    background: #000000;
    color: #fff;
    padding: 12px 0;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.announcement-text {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.2px;
    line-height: 1.5;
}

.announcement-text strong {
    font-weight: 700;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero {
    background: #ffffff;
    color: #0a0a0a;
    padding: 80px 0 80px;
    text-align: center;
    border-bottom: 1px solid #eee;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.03) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

/* Liquid Glass Orbs */
.hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle at 30% 40%,
        rgba(0, 0, 0, 0.03) 0%,
        rgba(0, 0, 0, 0.02) 30%,
        rgba(0, 0, 0, 0.01) 60%,
        transparent 100%
    );
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.7;
    pointer-events: none;
    z-index: 0;
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -48%) scale(1.05);
    }
}

.hero > * {
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 0.4px;
    color: #374151;
}

@keyframes rotateBorder {
    0% { 
        background-position: 0% 0%, 0% 0%;
    }
    100% { 
        background-position: 0% 0%, 300% 0%;
    }
}

.hero h1 {
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 16px;
    line-height: 1.05;
    color: #0a0a0a;
}

.hero-subhead {
    font-size: 20px;
    margin-bottom: 28px;
    color: #6b7280;
    font-weight: 500;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.cta-primary {
    display: inline-block;
    background: #111827;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    font-size: 17px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    transition: all 0.2s;
    letter-spacing: -0.2px;
    position: relative;
    overflow: hidden;
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 0, 0, 0.05),
        transparent
    );
    transition: left 0.5s;
}

.cta-primary:hover::before {
    left: 100%;
}

.cta-primary:hover { transform: translateY(-2px); }

@keyframes ctaPulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
    }
    50% { 
        transform: scale(1.02); 
        box-shadow: 0 6px 28px rgba(255, 255, 255, 0.3);
    }
}

.cta-secondary-hero {
    display: inline-block;
    color: #6b7280;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s;
    letter-spacing: 0.2px;
}

.cta-secondary-hero:hover { color: #111827; }

.hero-confidence {
    margin-top: 16px;
    font-size: 14px;
    color: #9ca3af;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero-confidence .confidence-item { display: inline-flex; align-items: center; gap: 6px; color: #6b7280; }
.hero-confidence .divider { color: #d1d5db; }
.hero-confidence .icon-lock { display: inline-block; }

/* Features */
.features { background: #ffffff; padding: 56px 0 24px; border-top: 1px solid #e5e7eb; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.feature-card { background: #fafafa; border: 1px solid #e5e7eb; border-radius: 12px; padding: 24px; text-align: left; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.feature-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.feature-icon { font-size: 22px; margin-bottom: 10px; }
.feature-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 6px; }
.feature-card p { font-size: 15px; color: #6b7280; line-height: 1.6; }

.hero-trust {
    margin-top: 0;
    font-size: 14px;
    opacity: 0.75;
    color: #cbd5e1;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.hero-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.rating-avatars {
    display: flex;
    align-items: center;
}

.rating-avatars .avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-left: -8px;
    transition: transform 0.2s;
    animation: avatarFallIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.rating-avatars .avatar:nth-child(1) {
    animation-delay: 0.1s;
    margin-left: 0;
}

.rating-avatars .avatar:nth-child(2) {
    animation-delay: 0.2s;
}

.rating-avatars .avatar:nth-child(3) {
    animation-delay: 0.3s;
}

.rating-avatars .avatar:nth-child(4) {
    animation-delay: 0.4s;
}

.rating-avatars .avatar:hover {
    transform: translateY(-2px);
    z-index: 1;
}

@keyframes avatarFallIn {
    0% {
        opacity: 0;
        transform: translateY(-40px) scale(0.5) rotate(-10deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotate(0deg);
    }
}

.rating-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.problems {
    background: #fafafa;
    border: 1px solid #e5e5e5;
    border-left: 4px solid #000000;
    padding: 40px;
    margin: 60px auto 40px;
    max-width: 900px;
    border-radius: 12px;
}

.problems h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #000000;
    font-weight: 800;
}

.problems ul {
    list-style: none;
}

.problems li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    font-size: 18px;
    color: #334155;
    font-weight: 500;
}

.problems li:before {
    content: "→";
    position: absolute;
    left: 0;
    font-size: 20px;
    color: #000000;
    font-weight: 700;
}

.skip-audit {
    text-align: center;
    margin: 30px auto;
    padding: 24px 28px;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    max-width: 700px;
    transition: all 0.3s;
}

.skip-audit:hover {
    border-color: #d1d5db;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.skip-audit p {
    font-size: 17px;
    color: #374151;
    margin-bottom: 12px;
    line-height: 1.5;
}

.skip-audit a {
    color: #000;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid #000;
    transition: all 0.2s;
}

.skip-audit a:hover {
    opacity: 0.7;
}

.social-proof-section {
    background: #fafafa;
    padding: 80px 0;
}

.proof-heading {
    text-align: center;
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.proof-subline {
    text-align: center;
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 60px;
    font-weight: 500;
}

.social-proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.video-proof-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.video-proof-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-color: #d1d5db;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-caption {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: #fff;
}

.video-caption strong {
    font-size: 17px;
    color: #0a0a0a;
    font-weight: 700;
}

.video-caption span {
    font-size: 14px;
    color: #6b7280;
}

.what-we-fix {
    background: white;
    padding: 80px 0;
}

.what-we-fix h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 800;
}

.what-we-fix-subtitle {
    text-align: center;
    font-size: 20px;
    color: #666;
    margin-bottom: 60px;
    font-style: italic;
}

.fix-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.fix-item {
    text-align: center;
    padding: 30px 20px;
    background: #f9fafb;
    border-radius: 12px;
}

.fix-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fix-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 700;
}

.fix-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
}

.pricing-results {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid #e5e7eb;
    display: grid;
    gap: 16px;
}

.result-item {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.result-number {
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.result-text {
    font-size: 15px;
    color: #6b7280;
    font-weight: 500;
}

.how-it-works {
    background: #fff;
    padding: 80px 0;
}

.how-it-works h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 60px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.step-item {
    text-align: center;
    padding: 40px 32px;
    background: #fafafa;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    transition: all 0.3s;
}

.step-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    border-color: #d1d5db;
}

.step-number {
    width: 56px;
    height: 56px;
    background: #0a0a0a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    margin: 0 auto 24px;
}

.step-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0a0a0a;
}

.step-item p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
}

.why-us {
    background: #fafafa;
    padding: 80px 0;
}

.why-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.why-intro {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 60px;
}

.why-us h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 60px;
    letter-spacing: -1px;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .process-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 48px;
    }
}

.process-step {
    text-align: center;
}

.step-number {
    width: 56px;
    height: 56px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    margin: 0 auto 24px;
}

.process-step h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0a0a0a;
    letter-spacing: -0.5px;
}

.process-step p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.comparison-item {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.comparison-item:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.comparison-label {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.comparison-label.neutral {
    background: #f3f4f6;
    color: #6b7280;
}

.comparison-label.good {
    background: #ecfdf5;
    color: #065f46;
}

.comparison-item.highlighted {
    border-color: #10b981;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.comparison-item ul {
    list-style: none;
    display: grid;
    gap: 12px;
}

.comparison-item li {
    padding-left: 28px;
    position: relative;
    font-size: 16px;
    color: #374151;
    line-height: 1.6;
}

.comparison-item li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #6b7280;
    font-weight: 700;
}

.roi-section {
    background: #fff;
    padding: 80px 0;
}

.roi-content {
    max-width: 1100px;
    margin: 0 auto;
}

.roi-stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 48px;
}

.roi-stat {
    text-align: center;
    padding: 40px 32px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    animation: statPulse 4s ease-in-out infinite;
}

@keyframes statPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    }
    50% { 
        transform: scale(1.02);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    }
}

.roi-stat:nth-child(1) { animation-delay: 0s; }
.roi-stat:nth-child(2) { animation-delay: 0.5s; }
.roi-stat:nth-child(3) { animation-delay: 1s; }

.roi-stat:hover {
    animation: none; /* Pause animation on hover */
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(0, 0, 0, 0.1);
}

.roi-stat .emoji-burst {
    position: absolute;
    font-size: 24px;
    pointer-events: none;
    animation: emojiBurst 1s ease-out forwards;
}

@keyframes emojiBurst {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    100% {
        opacity: 0;
        transform: translate(var(--tx), var(--ty)) scale(1.5) rotate(var(--rotate));
    }
}

.roi-stat-number {
    font-size: 56px;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 12px;
    line-height: 1;
    background: linear-gradient(
        135deg,
        #10b981 0%,
        #3b82f6 25%,
        #8b5cf6 50%,
        #ec4899 75%,
        #f59e0b 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: rainbowShift 8s ease infinite;
}

@keyframes rainbowShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.roi-stat-label {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.5;
    font-weight: 500;
}

.roi-footer {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 32px 40px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.roi-highlight {
    font-size: 22px;
    color: #0a0a0a;
    line-height: 1.5;
    margin: 0 0 12px 0;
    font-weight: 600;
}

.roi-highlight strong {
    background: linear-gradient(
        135deg,
        #10b981 0%,
        #3b82f6 25%,
        #8b5cf6 50%,
        #ec4899 75%,
        #f59e0b 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: rainbowShift 8s ease infinite;
    font-weight: 900;
}

.roi-subtext {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 20px 0;
    font-style: italic;
}

.roi-cta {
    display: inline-block;
    color: #0a0a0a;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border-bottom: 2px solid #0a0a0a;
    transition: opacity 0.2s;
}

.roi-cta:hover {
    opacity: 0.7;
}

.pricing {
    padding: 72px 0 80px;
    background: #fff;
    border-top: 1px solid #e5e7eb;
}

.pricing-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 24px;
}

.pricing-header h2 {
    font-size: 44px;
    font-weight: 900;
    margin-bottom: 6px;
    letter-spacing: -1.2px;
}

.pricing-header p {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 6px 0 0 0;
}

.pricing-confidence {
    margin-top: 4px;
    font-size: 13px;
    color: var(--text-subtle);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.pricing-confidence .confidence-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
}

.pricing-confidence .divider {
    color: #d1d5db;
}

.pricing-confidence .icon-lock {
    display: inline-block;
}

.sample-audit-showcase {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
}

.sample-audit-showcase h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #0a0a0a;
    letter-spacing: -0.5px;
}

.sample-audit-showcase-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    border-radius: 16px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.02);
    border: 2px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    margin-bottom: 16px;
}

.sample-audit-showcase-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.sample-audit-showcase-note {
    font-size: 14px;
    color: #9ca3af;
    font-weight: 500;
}

/* How It Works video placeholder */
.video-thumb {
    position: relative;
    width: 100%;
    padding-bottom: 140%; /* shortened vertical */
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(180deg, #0a0a0a 0%, #1f2937 100%);
    border: 2px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

.video-thumb-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.06), transparent 60%);
}

.video-thumb-meta {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.9);
    color: #0a0a0a;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px) saturate(140%);
    -webkit-backdrop-filter: blur(8px) saturate(140%);
    display: grid;
    place-items: center;
    color: #ffffff;
    font-size: 22px;
    font-weight: 900;
    transition: transform 0.2s ease, background 0.2s ease;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.05);
    background: rgba(255, 255, 255, 0.28);
}

.play-icon {
    transform: translateX(2px);
}

.social-proof-badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 32px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    animation: badgeFadeIn 0.5s ease-out;
}

@keyframes badgeFadeIn {
    0% { 
        opacity: 0;
        transform: translateY(-10px);
    }
    100% { 
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes confettiFall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}


.pricing-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto 32px;
    align-items: center;
}

@media (min-width: 768px) {
    .pricing-cards {
        grid-template-columns: 1.15fr 0.85fr; /* Featured card is bigger */
        gap: 32px;
        align-items: stretch;
    }
}

.pricing-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    position: relative;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.pricing-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: #d1d5db;
}

.pricing-card.featured {
    border: 2px solid #111827;
}

.pricing-card.featured:hover {
    transform: translateY(-3px);
}

.pricing-card.secondary {
    opacity: 1;
}

.card-badge {
    display: inline-block;
    background: #f3f4f6;
    color: #111827;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    border: 1px solid #e5e7eb;
}

.card-header {
    margin-bottom: 32px;
}

.card-header h3 {
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.card-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 12px;
}

.price-main {
    font-size: 44px;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1;
    color: #0a0a0a;
}

.pricing-card.featured .price-main { color: #0a0a0a; -webkit-text-fill-color: initial; background: none; }

.price-note {
    font-size: 15px;
    color: #9ca3af;
    font-weight: 500;
}
 
.card-note { font-size: 13px; color: #6b7280; text-align: left; }

.card-tagline { font-size: 16px; color: #6b7280; line-height: 1.6; }

.card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.card-section h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #9ca3af;
    margin-bottom: 16px;
}

.card-features { list-style: none; margin: 0 0 16px 0; padding: 0; display: grid; gap: 10px; }

.card-features li { padding-left: 18px; position: relative; color: #374151; font-size: 15px; line-height: 1.6; }

.card-features li::before { content: ""; position: absolute; left: 0; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: #111827; }

.card-footer-info {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    font-size: 15px;
    color: #6b7280;
    margin-top: auto;
}

.card-footer-info strong {
    color: #0a0a0a;
    font-weight: 700;
}

.card-footer-info.featured-footer {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(59, 130, 246, 0.08) 100%);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.card-cta {
    display: block;
    width: 100%;
    padding: 18px 32px;
    background: #111827;
    color: #fff;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    transition: all 0.3s;
    margin-top: 32px;
    border: 2px solid #111827;
}

.card-cta:hover {
    background: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.card-cta.primary { background: #111827; border-color: #111827; }

/* Outline style for secondary plan CTA */
.pricing-card.secondary .card-cta {
    background: transparent;
    color: #111827;
    border-color: #111827;
}
.pricing-card.secondary .card-cta:hover {
    background: #111827;
    color: #fff;
}

.pricing-trust {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.trust-item {
    font-size: 15px;
    color: #6b7280;
    font-weight: 500;
}

@media (max-width: 767px) {
    .pricing { padding: 56px 0; }

    .pricing-header { margin-bottom: 20px; }

    .pricing-header h2 { font-size: 32px; margin-bottom: 6px; }
    
    .pricing-header p { font-size: 15px; margin-top: 4px; }

    .pricing-confidence { font-size: 12px; gap: 6px; }
    
    .pricing-card {
        padding: 32px 24px;
    }
    
    .price-main { font-size: 36px; }
    
    .card-header h3 {
        font-size: 24px;
    }
    
    .pricing-trust {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
}

.popular-pill {
    display: inline-block;
    background: linear-gradient(
        135deg,
        #10b981 0%,
        #3b82f6 25%,
        #8b5cf6 50%,
        #ec4899 75%,
        #f59e0b 100%
    );
    background-size: 200% 200%;
    animation: rainbowShift 8s ease infinite;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.price-tag {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
}

.price-amount {
    font-size: 56px;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1;
    transition: all 0.3s;
}

.pricing-card-simple.featured .price-amount {
    background: linear-gradient(
        135deg,
        #10b981 0%,
        #3b82f6 25%,
        #8b5cf6 50%,
        #ec4899 75%,
        #f59e0b 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: rainbowShift 8s ease infinite;
}

/* Removed hover gradient - keeping it simple */

.price-label {
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    text-transform: lowercase;
}

.pricing-card-simple.featured .price-label {
    color: rgba(255, 255, 255, 0.6);
}

.pricing-card-simple h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.pricing-card-simple.featured h3 {
    color: #000;
}

.price-desc {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 28px;
    line-height: 1.6;
}

.pricing-card-simple.featured .price-desc {
    color: #6b7280;
}

.price-includes {
    list-style: none;
    margin: 0 0 32px 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.price-includes li {
    padding-left: 28px;
    position: relative;
    font-size: 15px;
    color: #374151;
    line-height: 1.5;
}

.pricing-card-simple.featured .price-includes li {
    color: #525252;
}

.pricing-card-simple.featured .cta-primary {
    background: #000;
    color: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.2);
}

.pricing-card-simple.featured .cta-primary:hover {
    background: #1a1a1a;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), 0 2px 8px rgba(0, 0, 0, 0.3);
}

.pricing-card-simple.featured .cta-primary::before {
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
}

.price-includes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 16px;
}

.btn-buy {
    display: block;
    width: 100%;
    padding: 16px 32px;
    background: #000;
    color: #fff;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
    border: 2px solid #000;
}

.btn-buy:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-buy.primary {
    background: #000;
    color: #fff;
    border-color: #000;
}

.btn-buy.primary:hover {
    background: #1a1a1a;
}

.upgrade-note {
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 12px;
    font-style: italic;
}

.process-steps {
    text-align: left;
    background: #0a0a0a;
    color: white;
    padding: 0;
    border-radius: 8px;
    margin: 20px 0;
    font-size: 14px;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.process-steps.open {
    max-height: 300px;
    padding: 20px;
}

.process-toggle {
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    padding: 16px 20px;
    border-radius: 8px;
    margin: 20px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
    user-select: none;
}

.process-toggle:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
}

.process-toggle h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0a0a0a;
    margin: 0;
}

.toggle-icon {
    font-size: 20px;
    color: #666;
    transition: transform 0.3s;
}

.toggle-icon.open {
    transform: rotate(180deg);
}

.process-steps h4 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #fbbf24;
}

.process-steps ol {
    margin-left: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.process-steps li {
    margin-bottom: 8px;
}

.price-card ul {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.price-card li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.price-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 20px;
}

.buy-button {
    display: block;
    background: white;
    color: #0f172a;
    padding: 18px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    margin-top: 20px;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

.buy-button:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.timeline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 15px;
    font-weight: 600;
}

.guarantee-small {
    text-align: center;
    margin-top: 50px;
    padding: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    position: relative;
    z-index: 1;
}

.faq {
    padding: 80px 0;
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
}

.faq h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
    font-weight: 800;
}

.faq-grid {
    display: grid;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.faq-item:hover {
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 1);
}

.faq-item[open] {
    border-color: #000000;
}

.faq-q {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    cursor: pointer;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    user-select: none;
    transition: all 0.2s ease;
}

.faq-q::-webkit-details-marker {
    display: none;
}

.faq-q:hover {
    color: #333;
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: #737373;
    transition: transform 0.3s ease, color 0.2s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg);
    color: #000000;
}

.faq-a {
    font-size: 16px;
    color: #525252;
    line-height: 1.7;
    padding: 0 30px 30px 30px;
    animation: fadeIn 0.3s ease;
}

.faq-video {
    position: relative;
    width: 100%;
    max-width: 600px;
    padding-bottom: 56.25%; /* 16:9 */
    border-radius: 12px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.08);
    margin-top: 16px;
}

.faq-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-link {
    color: #0a0a0a;
    font-weight: 700;
    text-decoration: underline;
    transition: opacity 0.2s;
}

.faq-link:hover {
    opacity: 0.7;
}

.founder {
    background: #fafafa;
    padding: 80px 0;
}

.founder-content {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 48px;
    align-items: start;
}

.founder-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Fallback if image doesn't load */
.founder-image::before {
    content: "RT";
    position: absolute;
    font-size: 72px;
    font-weight: 900;
    color: white;
    letter-spacing: -2px;
}

.founder-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6b7280;
    margin-bottom: 12px;
}

.founder-text h2 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.founder-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 16px;
}

.founder-text p:last-child {
    margin-bottom: 0;
    font-weight: 600;
    color: #0a0a0a;
}

.final-cta {
    background: #000000;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.final-cta h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 900;
    letter-spacing: -1.5px;
}

.final-cta p {
    font-size: 20px;
    margin-bottom: 48px;
    opacity: 0.85;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    opacity: 0.9;
}

.final-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 18px 40px;
    border: 2px solid white;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: white;
    color: #000;
}

.mobile-sticky {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    text-align: center;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-sticky a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
}

footer {
    background: #111;
    color: #999;
    padding: 40px 0;
    font-size: 14px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-content p {
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Floating corner audit video */
.floating-video { position: fixed; right: 24px; bottom: 24px; width: 68px; height: 68px; border-radius: 50%; border: 2px solid #262626; background: radial-gradient(circle at 30% 30%, #1f2937, #0a0a0a); color: #fff; display: grid; place-items: center; box-shadow: 0 12px 30px rgba(0,0,0,0.45); cursor: pointer; z-index: 1001; }
.floating-video:hover { transform: translateY(-2px); }
.floating-video-play { font-size: 20px; transform: translateX(2px); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,1px,1px); white-space: nowrap; border: 0; }

@media (max-width: 768px) {
    .floating-video { right: 16px; bottom: 90px; width: 60px; height: 60px; }
}

.floating-video-modal { position: fixed; inset: 0; display: none; align-items: center; justify-content: center; z-index: 1002; }
.floating-video-modal.open { display: flex; }
.floating-video-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); backdrop-filter: blur(2px); }
.floating-video-content { position: relative; background: #0a0a0a; border: 1px solid #262626; border-radius: 14px; max-width: 420px; width: calc(100% - 32px); box-shadow: var(--shadow-lg); overflow: hidden; z-index: 1; }
.floating-video-close { position: absolute; top: 8px; right: 10px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2); color: #fff; border-radius: 999px; width: 32px; height: 32px; cursor: pointer; }
.floating-video-body { position: relative; width: 100%; padding-bottom: 177.78%; }
.floating-video-body iframe, .floating-video-body video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

/* Timed call modal */
.call-modal { position: fixed; inset: 0; display: none; align-items: center; justify-content: center; z-index: 1002; }
.call-modal.open { display: flex; }
.call-modal-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); backdrop-filter: blur(2px); }
.call-modal-content { position: relative; background: #fff; border: 1px solid #e5e7eb; border-radius: 14px; max-width: 520px; width: calc(100% - 32px); box-shadow: var(--shadow-lg); padding: 22px; z-index: 1; }
.call-modal-close { position: absolute; top: 8px; right: 10px; background: transparent; border: 0; font-size: 24px; color: #6b7280; cursor: pointer; }
.call-modal-body { text-align: center; }
.call-modal-body h3 { font-size: 22px; font-weight: 900; letter-spacing: -0.3px; margin-bottom: 8px; }
.call-modal-body p { font-size: 16px; color: #6b7280; margin-bottom: 16px; }
.call-modal-body .cta-primary { display: inline-block; min-width: 220px; }
.call-modal-note { font-size: 13px; color: #9ca3af; margin-top: 10px; }

@media (max-width: 768px) {
    .call-modal-content { padding: 18px; }
}

/* Audits section sticky (mobile-only, shows when audits are in view) */
.audits-sticky { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 1001; background: rgba(17,17,17,0.96); backdrop-filter: blur(10px); padding: 12px 16px; border-top: 1px solid rgba(255,255,255,0.08); }
.audits-sticky-btn { display: block; text-align: center; background: #10b981; color: #fff; text-decoration: none; font-weight: 800; padding: 12px 16px; border-radius: 10px; font-size: 15px; border: 2px solid #10b981; }

@media (max-width: 768px) {
    body.audits-in-view .audits-sticky { display: block; }
    body.audits-in-view .mobile-sticky { display: none; }
}

@media (max-width: 768px) {
    .announcement-bar { padding: 10px 0; }
    .announcement-text { font-size: 13px; }
    .hero { padding: 64px 0 56px; }
    .hero h1 { font-size: 34px; }
    .founder-image { width: 120px; height: 120px; }
    .hero-subhead { font-size: 16px; }
    .cta-primary { font-size: 16px; padding: 16px 36px; }
    .features { padding: 40px 0 16px; }
    .social-proof-section { padding: 60px 0; }
    .proof-heading { font-size: 32px; margin-bottom: 12px; }
    .proof-subline { font-size: 16px; margin-bottom: 40px; }
    .social-proof-grid { grid-template-columns: 1fr; gap: 32px; }
    .video-caption { padding: 16px 20px; }
    .video-caption strong { font-size: 16px; }
    .how-it-works { padding: 60px 0; }
    .how-it-works h2 { font-size: 32px; }
    .section-subtitle { font-size: 16px; margin-bottom: 40px; }
    .steps-grid { grid-template-columns: 1fr; gap: 24px; }
    .step-item { padding: 32px 24px; }
    .step-item h3 { font-size: 20px; }
    .why-us { padding: 60px 0; }
    .why-us h2 { font-size: 32px; margin-bottom: 40px; }
    .comparison-grid { grid-template-columns: 1fr; gap: 24px; }
    .comparison-item { padding: 24px; }
    .roi-section { padding: 60px 0; }
    .roi-stat-grid { grid-template-columns: 1fr; gap: 24px; }
    .roi-stat { padding: 32px 24px; }
    .roi-stat-number { font-size: 48px; }
    .roi-stat-label { font-size: 15px; }
    .roi-footer { padding: 24px 28px; }
    .roi-footer p { font-size: 17px; }
    .founder { padding: 60px 0; }
    .founder-content { grid-template-columns: 1fr; gap: 32px; text-align: center; }
    .founder-image { margin: 0 auto; }
    .founder-text h2 { font-size: 28px; }
    .founder-text p { font-size: 16px; }
    .pricing-results { margin-top: 32px; padding-top: 24px; gap: 12px; }
    .result-number { font-size: 28px; }
    .result-text { font-size: 14px; }
    .pricing-split { gap: 48px; }
    .pricing-left { position: static; }
    .pricing-left h2 { font-size: 36px; }
    .pricing-description { font-size: 18px; margin-bottom: 32px; }
    .pricing-features { gap: 20px; }
    .pricing-card-simple { padding: 28px 24px; }
    .price-amount { font-size: 48px; }
    .mobile-sticky { display: block; }
    body { padding-bottom: 70px; }
    .fix-grid { grid-template-columns: 1fr; }
    .final-cta-buttons { flex-direction: column; align-items: center; gap: 16px; }
    .final-cta-buttons .cta-primary,
    .final-cta-buttons .cta-secondary { width: 100%; max-width: 400px; }
}
