/* ========== RESET & BASE ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; zoom: 0.85; }
body {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    background: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ========== COLOR VARIABLES ========== */
:root {
    --bg-primary: #000000;
    --bg-secondary: #050505;
    --bg-surface: #0a0a0a;
    --bg-card: rgba(255,255,255,0.03);
    --bg-card-hover: rgba(255,255,255,0.06);
    --cyan-400: #22d3ee;
    --cyan-500: #06b6d4;
    --cyan-600: #0891b2;
    --cyan-glow: rgba(34, 211, 238, 0.12);
    --cyan-glow-strong: rgba(34, 211, 238, 0.25);
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --amber-glow: rgba(251, 191, 36, 0.15);
    --text-primary: #ffffff;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(34, 211, 238, 0.3);
    --gradient-cyan: linear-gradient(135deg, #06b6d4, #22d3ee);
    --gradient-amber: linear-gradient(135deg, #f59e0b, #fbbf24);
}

/* ========== UTILITY ========== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.text-center { text-align: center; }
.text-cyan { color: var(--cyan-400); }
.text-amber { color: var(--amber-400); }
.text-blue { color: #3b82f6; }

/* ========== HEADER ========== */
.header {
    padding: 16px 0;
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
}
.header .container { display: flex; align-items: center; justify-content: center; }
.logo { font-size: 22px; font-weight: 800; letter-spacing: -0.5px; text-decoration: none; color: #fff; }
.logo span { color: var(--cyan-400); }
.header-cta {
    background: var(--cyan-400); color: #000; padding: 10px 28px;
    border-radius: 12px; font-weight: 700; font-size: 14px;
    text-transform: uppercase; letter-spacing: 0.5px;
    transition: all 0.3s ease; border: none; cursor: pointer;
}
.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--cyan-glow-strong);
    filter: brightness(1.1);
}

/* ========== HERO ========== */
.hero {
    padding-top: 100px; padding-bottom: 60px;
    position: relative; overflow: hidden;
    background: radial-gradient(ellipse at 30% 20%, rgba(34,211,238,0.06) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(6,182,212,0.04) 0%, transparent 50%),
                var(--bg-primary);
}
.hero-top-text { text-align: center; margin-bottom: 50px; }
.hero-tagline {
    font-size: 16px; font-weight: 700; color: var(--cyan-400);
    text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px;
}
.hero-headline {
    font-size: 68px; font-weight: 900; line-height: 1.05;
    letter-spacing: -2px; color: #fff;
}
.hero-small { font-size: 38px; }
.hero-columns {
    display: grid; grid-template-columns: 1fr 1.6fr;
    gap: 60px; align-items: stretch;
}
.hero-sub-headline {
    font-size: 28px; font-weight: 900; margin-bottom: 20px; line-height: 1.2;
}
.hero-pointer {
    font-size: 15px; color: var(--amber-400); font-weight: 600;
    margin-bottom: 14px;
}
.hero-points { margin-bottom: 24px; list-style: none; }
.hero-points li {
    position: relative;
    padding-left: 32px;
    font-size: 16px; 
    color: var(--text-primary); 
    padding-bottom: 14px;
    line-height: 1.5;
}
.hero-points li .check {
    position: absolute; left: 0; top: 3px;
    display: inline-flex; align-items: center; justify-content: center;
    width: 20px; height: 20px;
    background: #1d4ed8;
    border-radius: 4px;
}
.hero-points li .check svg { width: 14px; height: 14px; }
.hero-points li strong { color: #fff; font-size: 16px; font-weight: 700; margin-right: 4px; }
.cta-button {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    background: var(--cyan-400); color: #000;
    padding: 20px 48px; border-radius: 14px; font-size: 18px;
    font-weight: 800; text-transform: uppercase; letter-spacing: 1px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1); border: none; cursor: pointer;
    box-shadow: 0 4px 30px var(--cyan-glow-strong), 0 0 0 0 rgba(34, 211, 238, 0.4);
    position: relative; overflow: hidden;
    animation: cta-pulse 2.5s ease-in-out infinite;
    text-decoration: none;
}
.cta-button::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.5s ease;
}
.cta-button:hover::before { left: 100%; }
.cta-button:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 8px 40px var(--cyan-glow-strong), 0 0 20px rgba(34, 211, 238, 0.35);
    filter: brightness(1.08);
}
.cta-button:active {
    transform: translateY(-1px) scale(1.0);
    filter: brightness(0.95);
}
@keyframes cta-pulse {
    0%, 100% { box-shadow: 0 4px 30px var(--cyan-glow-strong), 0 0 0 0 rgba(34, 211, 238, 0.4); }
    50% { box-shadow: 0 4px 30px var(--cyan-glow-strong), 0 0 0 8px rgba(34, 211, 238, 0); }
}
.cta-button .arrow { font-size: 20px; }
.cta-subtext { margin-top: 14px; font-size: 13px; color: var(--text-muted); }
.hero-video {
    position: relative; border-radius: 20px; overflow: hidden;
    border: 1px solid rgba(34,211,238,0.25);
    box-shadow: 0 40px 100px rgba(0,0,0,0.7), 0 0 80px var(--cyan-glow);
    display: flex; flex-direction: column;
}
.hero-video iframe { flex: 1; width: 100%; min-height: 450px; display: block; border: none; }
.video-banner {
    background: rgba(34,211,238,0.15); color: #fff;
    text-align: center; padding: 12px 16px;
    font-size: 13px; font-weight: 700; letter-spacing: 1.5px;
    text-transform: uppercase; border-bottom: 1px solid rgba(34,211,238,0.2);
}

/* ========== SOCIAL PROOF BAR ========== */
.social-proof-bar {
    padding: 16px 0;
    background: rgba(34,211,238,0.06);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    text-align: center;
}
.social-proof-bar p { font-size: 15px; color: var(--text-secondary); font-weight: 600; }
.social-proof-bar span { color: var(--amber-400); font-weight: 800; }

/* ========== STATS BAR ========== */
.stats-bar { background: var(--bg-secondary); padding: 60px 0; }
.stats-bar .container { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.stat-card {
    text-align: center; padding: 32px 20px;
    background: var(--bg-card); border-radius: 16px;
    border: 1px solid var(--border-subtle);
    transition: all 0.4s ease;
}
.stat-card:hover {
    border-color: var(--border-hover); transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}
.stat-number {
    font-size: 44px; font-weight: 900;
    background: var(--gradient-cyan);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; line-height: 1; margin-bottom: 8px;
}
.stat-label {
    font-size: 13px; color: var(--text-secondary);
    text-transform: uppercase; letter-spacing: 2px; font-weight: 600;
}

/* ========== TIMELINE / HOW IT WORKS ========== */
.timeline-section {
    padding: 100px 0; position: relative;
    background: radial-gradient(ellipse at 80% 50%, rgba(34,211,238,0.04) 0%, transparent 60%), var(--bg-primary);
}
.timeline-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.timeline-content h2 { font-size: 40px; font-weight: 900; line-height: 1.15; margin-bottom: 20px; letter-spacing: -1px; }
.timeline-content p { font-size: 16px; color: var(--text-secondary); margin-bottom: 30px; line-height: 1.7; }
.timeline-steps { position: relative; padding-left: 0; }
.timeline-step {
    display: flex; gap: 20px; margin-bottom: 36px; position: relative;
}
.timeline-step:last-child { margin-bottom: 0; }
.step-number {
    width: 48px; height: 48px; min-width: 48px;
    background: var(--gradient-cyan); border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 900; font-size: 18px; color: #000;
    box-shadow: 0 4px 15px var(--cyan-glow);
}
.step-content h4 { font-size: 18px; font-weight: 800; margin-bottom: 4px; }
.step-content p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.step-connector {
    position: absolute; left: 23px; top: 52px; width: 2px;
    height: calc(100% - 16px);
    background: linear-gradient(to bottom, var(--cyan-400), transparent);
    opacity: 0.3;
}
.timeline-step:last-child .step-connector { display: none; }

/* ========== SECTION HEADERS ========== */
.section-label {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 13px; color: var(--cyan-400);
    text-transform: uppercase; letter-spacing: 2px;
    font-weight: 700; margin-bottom: 16px;
}
.section-label::before, .section-label::after {
    content: ''; width: 30px; height: 1px;
    background: var(--cyan-400); opacity: 0.4;
}
.section-title {
    font-size: 42px; font-weight: 900; line-height: 1.15;
    margin-bottom: 16px; letter-spacing: -1px;
}
.section-subtitle {
    font-size: 17px; color: var(--text-secondary);
    max-width: 650px; margin: 0 auto 50px; line-height: 1.7;
}

/* ========== OFFER STACK ========== */
.offer-section { background: var(--bg-secondary); padding: 100px 0; }
.offer-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-bottom: 40px; }
.offer-card {
    background: var(--bg-card); border-radius: 16px;
    border: 1px solid var(--border-subtle); overflow: hidden;
    transition: all 0.4s ease;
}
.offer-card:hover {
    border-color: var(--border-hover); transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}
.offer-card-img { width: 100%; height: auto; display: block; }
.offer-card-content { padding: 24px; }
.offer-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 10px; line-height: 1.3; }
.offer-card h3 .text-cyan { font-weight: 700; }
.offer-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.total-value {
    text-align: center; padding: 48px 40px;
    background: var(--bg-card); border-radius: 20px;
    border: 1px solid var(--border-subtle);
    position: relative; overflow: hidden;
}
.total-value::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, var(--cyan-glow) 0%, transparent 70%);
    pointer-events: none;
}
.total-value .original-price {
    font-size: 22px; color: var(--text-muted);
    text-decoration: line-through; margin-bottom: 8px; position: relative;
}
.total-value .actual-price {
    font-size: 52px; font-weight: 900;
    background: var(--gradient-cyan);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; position: relative;
}
.total-value .price-note {
    font-size: 15px; color: var(--text-secondary);
    margin-top: 8px; position: relative;
}

/* ========== CLIENT RESULTS ========== */
.results-section { background: var(--bg-primary); padding: 100px 0; }
.results-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.result-card {
    background: var(--bg-card); border-radius: 16px;
    border: 1px solid var(--border-subtle); overflow: hidden;
    transition: all 0.4s ease;
}
.result-card:hover {
    border-color: var(--border-hover); transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.result-card img { width: 100%; height: 200px; object-fit: cover; object-position: top; display: block; }
.result-card-body { padding: 20px; }
.result-card-body h3 { font-size: 16px; font-weight: 800; margin-bottom: 8px; line-height: 1.3; }
.result-card-body p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 12px; }
.result-industry {
    display: block; font-size: 11px; font-weight: 700; letter-spacing: 1px;
    text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px;
}
.result-card-body h3.result-company { font-size: 18px; font-weight: 800; margin-bottom: 6px; }
.result-headline {
    font-size: 14px; font-weight: 700; line-height: 1.45; margin-bottom: 10px;
    color: var(--text-primary);
}
.result-headline .hl-amber { color: var(--amber-400); }
.result-headline .hl-cyan { color: var(--cyan-400); }
.result-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 14px; }
.result-metrics { display: flex; flex-wrap: wrap; gap: 8px; }
.result-metric {
    font-size: 11px; font-weight: 600; color: var(--text-secondary);
    background: var(--bg-card-hover); border: 1px solid var(--border-subtle);
    padding: 5px 10px; border-radius: 999px;
}
.result-metric b { color: var(--cyan-400); font-weight: 800; }
.result-link {
    font-size: 13px; font-weight: 700; color: var(--cyan-400);
    display: inline-block; transition: opacity 0.2s;
}
.result-link:hover { opacity: 0.8; }

/* ========== VIDEO TESTIMONIALS ========== */
.testimonials-section { background: var(--bg-secondary); padding: 100px 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testimonial-card {
    background: var(--bg-card); border-radius: 16px;
    border: 1px solid var(--border-subtle); overflow: hidden;
    transition: all 0.4s ease; cursor: pointer;
}
.testimonial-card:hover {
    border-color: var(--border-hover); transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.testimonial-video-wrap {
    position: relative; width: 100%; aspect-ratio: 16/9;
    background: #0a0a0a; overflow: hidden;
}
.testimonial-video-wrap video { width: 100%; height: 100%; object-fit: cover; }
.video-name-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 12px 16px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    z-index: 2;
}
.video-name-overlay .stars { color: var(--amber-400); font-size: 18px; letter-spacing: 3px; margin-bottom: 4px; text-shadow: 0 1px 4px rgba(0,0,0,0.6); }
.video-name-overlay .overlay-name { font-size: 16px; font-weight: 800; color: #fff; text-shadow: 0 1px 4px rgba(0,0,0,0.6); }
.play-overlay {
    position: absolute; inset: 0; display: flex;
    align-items: center; justify-content: center;
    background: rgba(0,0,0,0.35); transition: all 0.3s ease; z-index: 3;
}
.play-overlay.hidden { display: none; }
.testimonial-card:hover .play-overlay { background: rgba(0,0,0,0.2); }
.play-btn {
    width: 56px; height: 56px; background: var(--cyan-400);
    border-radius: 50%; display: flex; align-items: center;
    justify-content: center; box-shadow: 0 4px 20px var(--cyan-glow-strong);
    transition: transform 0.3s ease;
}
.testimonial-card:hover .play-btn { transform: scale(1.1); }
.play-btn svg { width: 22px; height: 22px; fill: #000; margin-left: 3px; }
.testimonial-body { padding: 16px 20px; }
.testimonial-body h4 { font-size: 14px; font-weight: 800; line-height: 1.4; margin-bottom: 8px; color: #fff; }
.testimonial-body p { font-size: 13px; color: var(--text-secondary); line-height: 1.55; }

/* ========== DASHBOARD SECTION ========== */
.dashboard-section { background: var(--bg-primary); padding: 100px 0 40px; overflow: hidden; }
.dashboard-triangle {
    position: relative;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 560px;
}
.dashboard-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(34,211,238,0.12);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 60px rgba(34,211,238,0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.dashboard-card:hover {
    box-shadow: 0 25px 70px rgba(0,0,0,0.6), 0 0 80px rgba(34,211,238,0.25);
}
.dashboard-card img { width: 100%; display: block; }
.dashboard-center {
    position: relative;
    z-index: 1;
    width: 70%;
    max-width: 900px;
}
.dashboard-center:hover { transform: translateY(-6px) scale(1.02); }
.dashboard-left {
    position: absolute;
    z-index: 3;
    width: 52%;
    max-width: 650px;
    left: -5%;
    top: 160px;
    transform: rotate(-4deg);
}
.dashboard-left:hover { transform: rotate(-4deg) translateY(-6px) scale(1.02); }
.dashboard-right {
    position: absolute;
    z-index: 3;
    width: 52%;
    max-width: 650px;
    right: -5%;
    top: 160px;
    transform: rotate(4deg);
}
.dashboard-right:hover { transform: rotate(4deg) translateY(-6px) scale(1.02); }

/* ========== FEATURES ========== */
.features-section { padding: 100px 0; background: var(--bg-secondary); }
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 50px; }
.feature-card {
    background: var(--bg-card); padding: 36px 28px; border-radius: 16px;
    border: 1px solid var(--border-subtle); transition: all 0.4s ease;
}
.feature-card:hover {
    border-color: var(--border-hover); transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.feature-icon {
    width: 56px; height: 56px; background: rgba(34,211,238,0.08);
    border-radius: 14px; display: flex; align-items: center;
    justify-content: center; font-size: 26px; margin-bottom: 20px;
}
.feature-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* ========== FAQ ========== */
.faq-section { padding: 100px 0; background: var(--bg-primary); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-subtle); }
.faq-question {
    width: 100%; background: none; border: none; color: #fff;
    padding: 24px 0; font-size: 17px; font-weight: 700;
    text-align: left; cursor: pointer; display: flex;
    justify-content: space-between; align-items: center; font-family: inherit;
    transition: color 0.2s;
}
.faq-question:hover { color: var(--cyan-400); }
.faq-question .toggle { font-size: 24px; color: var(--cyan-400); transition: transform 0.3s ease; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-answer.open { max-height: 300px; padding-bottom: 24px; }
.faq-answer p { font-size: 15px; color: var(--text-secondary); line-height: 1.7; }

/* ========== FINAL CTA ========== */
.final-cta {
    padding: 100px 0; position: relative; overflow: hidden;
    background: radial-gradient(ellipse at 50% 80%, rgba(34,211,238,0.08) 0%, transparent 60%), var(--bg-secondary);
}
.final-cta-box { max-width: 800px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.final-cta-box h2 { font-size: 44px; font-weight: 900; margin-bottom: 20px; letter-spacing: -1px; line-height: 1.15; }
.final-cta-box p { font-size: 17px; color: var(--text-secondary); margin-bottom: 40px; line-height: 1.7; }
.guarantee-badges { display: flex; justify-content: center; gap: 28px; margin-top: 40px; flex-wrap: wrap; }
.guarantee-badge { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-secondary); }
.guarantee-badge .icon {
    width: 42px; height: 42px; background: rgba(34,211,238,0.08);
    border-radius: 12px; display: flex; align-items: center;
    justify-content: center; color: var(--cyan-400); font-size: 18px;
}

/* ========== FOUNDER ========== */
.founder-section { padding: 100px 0; background: var(--bg-primary); }
.founder-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; }
.founder-img {
    border-radius: 16px; overflow: hidden;
    border: 1px solid rgba(34,211,238,0.12);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.founder-img img { width: 100%; display: block; }
.founder-content h3 {
    font-size: 13px; color: var(--cyan-400);
    text-transform: uppercase; letter-spacing: 2px; font-weight: 700; margin-bottom: 12px;
}
.founder-content h2 { font-size: 34px; font-weight: 900; margin-bottom: 20px; letter-spacing: -0.5px; }
.founder-content p { font-size: 15px; color: var(--text-secondary); margin-bottom: 16px; line-height: 1.8; }

/* ========== FOOTER ========== */
.footer {
    padding: 40px 0; text-align: center;
    border-top: 1px solid var(--border-subtle); background: var(--bg-primary);
}
.footer p { font-size: 14px; color: var(--text-muted); }
.footer a { color: var(--cyan-400); transition: opacity 0.2s; }
.footer a:hover { opacity: 0.8; }

/* ========== ANIMATIONS ========== */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero-columns { display: flex; flex-direction: column; gap: 40px; align-items: center; text-align: center; }
    .hero-content { display: flex; flex-direction: column; align-items: center; }
    .hero-video { order: -1; width: 100%; max-width: 800px; }
    .hero-headline { font-size: 34px; }
    .hero-small { font-size: 28px; }
    .hero-points { display: inline-block; text-align: left; }
    .stats-bar .container { grid-template-columns: repeat(2,1fr); }
    .offer-grid { grid-template-columns: 1fr; }
    .results-grid { grid-template-columns: repeat(2,1fr); }
    .testimonials-grid { grid-template-columns: repeat(2,1fr); }
    .features-grid { grid-template-columns: 1fr; }
    .dashboard-triangle { min-height: 480px; }
    .dashboard-center { width: 62%; }
    .dashboard-left, .dashboard-right { width: 48%; top: 130px; }
    .founder-grid { grid-template-columns: 1fr; text-align: center; }
    .founder-content p { max-width: 600px; margin: 0 auto 16px; }
    .timeline-grid { grid-template-columns: 1fr; text-align: center; }
    .timeline-content { display: flex; flex-direction: column; align-items: center; }
    .timeline-content p { max-width: 600px; margin: 0 auto 30px; }
    .section-title { font-size: 32px; }
    .final-cta-box h2 { font-size: 34px; }
}
@media (max-width: 640px) {
    .hero-headline { 
        font-size: 44px; 
        text-transform: none; 
        line-height: 1.05; 
        margin-top: 12px;
        margin-bottom: 24px; 
        letter-spacing: -1.5px;
    }
    .hero-small { font-size: 28px; }
    .hero-tagline { 
        font-size: 11px; 
        margin-bottom: 0px;
        color: var(--cyan-400);
        letter-spacing: 2px;
        max-width: 100%;
        font-weight: 800;
    }
    .hero-top-text { margin-bottom: 40px; }
    .section-title { font-size: 26px; }
    .stat-number { font-size: 34px; }
    .stats-bar .container { grid-template-columns: repeat(2,1fr); gap: 16px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .dashboard-triangle {
        min-height: 280px;
    }
    .dashboard-center { width: 60%; }
    .dashboard-left, .dashboard-right {
        width: 44%; top: 80px; left: 2%; right: auto;
    }
    .dashboard-right { left: auto; right: 2%; }
    .dashboard-left:hover { transform: rotate(-4deg) translateY(-6px) scale(1.02); }
    .dashboard-right:hover { transform: rotate(4deg) translateY(-6px) scale(1.02); }
    .offer-card h3 { font-size: 17px; }
    .cta-button { padding: 16px 28px; font-size: 15px; }
    .final-cta-box h2 { font-size: 26px; }
    .guarantee-badges { flex-direction: column; align-items: center; }
    .total-value .actual-price { font-size: 38px; }
    .hero-badge { font-size: 11px; }
    .container { padding: 0 16px; }
    .section { padding: 60px 0; }
    .timeline-content h2 { font-size: 28px; }
}
