﻿:root {
    --bg: #0a0026;
    --bg-card: rgba(255, 255, 255, 0.04);
    --border: rgba(255, 255, 255, 0.1);
    --cyan: #00d2ff;
    --purple: #a855f7;
    --magenta: #ec4899;
    --white: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.65);
    --font: 'Inter', system-ui, sans-serif;
    --container: 1180px;
    --radius: 16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    color: var(--white);
    background: var(--bg);
    line-height: 1.6;
    background-image:
        radial-gradient(ellipse 80% 50% at 20% 0%, rgba(0, 210, 255, 0.12), transparent),
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(168, 85, 247, 0.15), transparent);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input { font: inherit; }

.container { width: min(100% - 2rem, var(--container)); margin-inline: auto; }

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

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    background: rgba(10, 0, 38, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}
.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
    min-height: 72px;
}
.logo { display: inline-flex; align-items: center; gap: 0.5rem; }
.logo-icon {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    font-weight: 800;
    font-size: 1.1rem;
}
.logo-text { font-weight: 800; letter-spacing: 0.12em; font-size: 0.95rem; }
.main-nav ul { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.main-nav a {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.2s;
}
.main-nav a:hover, .main-nav a.active { color: var(--white); }
.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.menu-toggle span { width: 22px; height: 2px; background: var(--white); }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.88rem;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, opacity 0.2s;
}
.btn:hover { opacity: 0.92; transform: translateY(-1px); }
.btn-white { background: var(--white); color: var(--bg); }
.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--border);
}
.btn-lg { padding: 1rem 2rem; }
.btn-block { width: 100%; }

.section-kicker {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--cyan);
    margin-bottom: 0.5rem;
}
.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}
.section-title.left { text-align: left; }
.section-desc { text-align: center; color: var(--text-muted); max-width: 560px; margin: 0 auto 2.5rem; }
.section-head { margin-bottom: 0.5rem; }
.section { padding: 5rem 0; }

.promo-timer-bar {
    position: sticky;
    top: 72px;
    z-index: 90;
    background: linear-gradient(90deg, rgba(0, 210, 255, 0.15), rgba(168, 85, 247, 0.15));
    border-bottom: 1px solid var(--border);
    padding: 0.5rem 0;
}
.promo-timer-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem 1.5rem;
    font-size: 0.82rem;
    font-weight: 600;
}
.countdown { display: flex; gap: 0.75rem; }
.countdown strong { color: var(--cyan); font-variant-numeric: tabular-nums; }
.spots-left { color: var(--magenta); font-size: 0.78rem; }

.hero { padding-top: 0; min-height: auto; display: flex; align-items: center; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; padding: 3rem 0 4rem; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--cyan);
    margin-bottom: 1rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 210, 255, 0.3);
    background: rgba(0, 210, 255, 0.08);
}
.hero-bullets { margin-bottom: 1.5rem; }
.hero-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}
.hero-bullets .icon { color: var(--cyan); flex-shrink: 0; margin-top: 3px; }
.hero-trust {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.hero-trust strong { display: block; font-size: 1.25rem; font-weight: 800; color: var(--cyan); }
.hero-trust span { font-size: 0.75rem; color: var(--text-muted); }
.hero-aside { display: flex; flex-direction: column; gap: 1.25rem; }
.hero-form-card { padding: 1.5rem; }
.hero-form-card h2 { font-size: 1.15rem; margin-bottom: 0.35rem; }
.hero-form-card > p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1rem; }
.hero-copy h1 {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.hero-lead { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 2rem; max-width: 480px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.hero-visual img {
    border-radius: var(--radius);
    box-shadow: 0 24px 60px rgba(0, 210, 255, 0.15), 0 0 80px rgba(168, 85, 247, 0.1);
}

.trust-bar { padding: 2rem 0; border-bottom: 1px solid var(--border); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.trust-item { display: flex; gap: 0.75rem; }
.trust-icon { color: var(--cyan); flex-shrink: 0; }
.trust-item h3 { font-size: 0.88rem; font-weight: 700; }
.trust-item p { font-size: 0.8rem; color: var(--text-muted); }

.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.feature-card { padding: 1.75rem; transition: border-color 0.25s, box-shadow 0.25s; }
.feature-card:hover {
    border-color: rgba(0, 210, 255, 0.35);
    box-shadow: 0 0 30px rgba(0, 210, 255, 0.08);
}
.feature-icon { display: block; color: var(--cyan); margin-bottom: 1rem; }
.feature-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.88rem; color: var(--text-muted); }
.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 1rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--cyan);
}

.lead-form, .modal-form, .chat-form { display: grid; gap: 0.85rem; }
.lead-form label span, .modal-form label span {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
}
.lead-form input, .modal-form input, .chat-form input {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.3);
    color: var(--white);
}
.form-note { font-size: 0.75rem; color: var(--text-muted); text-align: center; }

.pain-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-bottom: 2rem; }
.pain-card { padding: 1.5rem; border-left: 3px solid var(--magenta); }
.pain-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.pain-card p { font-size: 0.88rem; color: var(--text-muted); }
.solution-grid .solution-card { text-align: center; }
.solution-icon { display: block; color: var(--cyan); margin-bottom: 0.75rem; }

.about-mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
.about-mission-copy p { color: var(--text-muted); margin-bottom: 1rem; max-width: 520px; }
.stats-grid--inline { padding: 0; grid-template-columns: repeat(2, 1fr); }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.process-card { padding: 1.5rem; position: relative; }
.process-step {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--cyan), var(--purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: 0.5;
}
.process-card h3 { font-size: 1rem; margin: 0.5rem 0; }
.process-card p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.process-time { font-size: 0.78rem; color: var(--cyan); display: inline-flex; align-items: center; gap: 0.3rem; }

.cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.case-card { overflow: hidden; }
.case-visual { position: relative; }
.case-visual img { width: 100%; aspect-ratio: 5/3; object-fit: cover; }
.case-industry {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    background: rgba(10, 0, 38, 0.85);
    border: 1px solid var(--border);
}
.case-body { padding: 1.25rem; }
.case-client { font-weight: 700; margin-bottom: 0.75rem; }
.case-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 0.75rem; }
.case-before, .case-after { padding: 0.75rem; border-radius: 8px; font-size: 0.82rem; }
.case-before { background: rgba(236, 72, 153, 0.1); border: 1px solid rgba(236, 72, 153, 0.25); }
.case-after { background: rgba(0, 210, 255, 0.1); border: 1px solid rgba(0, 210, 255, 0.25); }
.case-before small, .case-after small { display: block; font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.25rem; color: var(--text-muted); }
.case-metric { color: var(--cyan); font-size: 0.9rem; }

.eeat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.eeat-card { padding: 1.5rem; text-align: center; }
.eeat-icon { display: block; color: var(--cyan); margin-bottom: 0.75rem; }
.eeat-card h3 { font-size: 0.95rem; margin-bottom: 0.4rem; }
.eeat-card p { font-size: 0.82rem; color: var(--text-muted); }

.pricing-lead-section { padding-top: 0; }

.review-head { display: flex; gap: 0.75rem; margin-bottom: 0.75rem; }
.review-head img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(0, 210, 255, 0.3); }
.review-head strong { display: block; font-size: 0.88rem; }
.review-head span { font-size: 0.78rem; color: var(--text-muted); }
.video-reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.5rem; }
.video-review-card { overflow: hidden; }
.video-thumb { position: relative; }
.video-thumb img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.video-play {
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: var(--bg);
    cursor: pointer;
    display: grid;
    place-items: center;
}
.video-duration {
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
    font-size: 0.7rem;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.7);
}
.video-review-card h3 { padding: 0.75rem 1rem 1rem; font-size: 0.88rem; }

.faq-lead { color: var(--text-muted); margin-bottom: 1.25rem; }
.cta-perks { margin-top: 1rem; }
.cta-perks li { display: flex; gap: 0.4rem; font-size: 0.88rem; color: var(--text-muted); margin-bottom: 0.35rem; }
.cta-perks .icon { color: var(--cyan); }

.location-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 1.5rem; }
.location-info { padding: 2rem; }
.location-list { margin: 1.25rem 0; }
.location-list li { display: flex; align-items: flex-start; gap: 0.6rem; margin-bottom: 0.75rem; color: var(--text-muted); font-size: 0.92rem; }
.location-list .icon { color: var(--cyan); flex-shrink: 0; margin-top: 2px; }
.location-list a:hover { color: var(--cyan); }
.location-legal { font-size: 0.78rem; color: var(--text-muted); }
.location-map { overflow: hidden; min-height: 280px; }
.location-map iframe { width: 100%; height: 100%; min-height: 280px; border: 0; }

.footer-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    padding: 2rem;
    margin-bottom: 2.5rem;
}
.footer-cta h2 { font-size: 1.5rem; margin-bottom: 0.35rem; }
.footer-cta-copy p { color: var(--text-muted); font-size: 0.9rem; }
.footer-trust-badges { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1rem; }
.footer-trust-badges span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    color: var(--text-muted);
}
.footer-hotline { margin-top: 1rem; font-weight: 600; }
.footer-hotline a:hover { color: var(--cyan); }

.live-stats {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    z-index: 80;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    background: rgba(10, 0, 38, 0.9);
    border: 1px solid var(--border);
    color: var(--text-muted);
}
.live-stats span { color: var(--cyan); }

.social-proof {
    position: fixed;
    bottom: 4rem;
    left: 1rem;
    z-index: 85;
    max-width: 280px;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    color: var(--bg);
    font-size: 0.78rem;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.4s ease;
}
.social-proof[hidden] { display: none; }
@keyframes slideIn { from { transform: translateX(-120%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

.contact-widget {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 90;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}
.contact-widget-menu {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 0.5rem;
    border-radius: 12px;
    background: rgba(10, 0, 38, 0.95);
    border: 1px solid var(--border);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}
.contact-widget-menu[hidden] { display: none; }
.contact-widget-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 0.85rem;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    white-space: nowrap;
}
a.contact-widget-item { text-decoration: none; }
.contact-widget-item:hover { background: rgba(255, 255, 255, 0.06); }
.contact-widget-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.contact-widget-dot--chat { background: var(--cyan); }
.contact-widget-dot--tg { background: #0088cc; }
.contact-widget-dot--wa { background: #25d366; }
.contact-widget-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.25rem;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    color: var(--bg);
    font-weight: 700;
    font-size: 0.82rem;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 210, 255, 0.25);
}

.chat-panel {
    position: fixed;
    right: 1.25rem;
    bottom: 5rem;
    z-index: 95;
    width: min(320px, calc(100vw - 2rem));
    border-radius: 12px;
    background: rgba(10, 0, 38, 0.98);
    border: 1px solid var(--border);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}
.chat-panel[hidden] { display: none; }
.chat-panel header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 1rem;
    border-bottom: 1px solid var(--border);
    font-size: 0.88rem;
}
.chat-panel header button { background: none; border: none; color: var(--white); font-size: 1.25rem; cursor: pointer; }
.chat-body { padding: 1rem; font-size: 0.85rem; color: var(--text-muted); }
.chat-form { padding: 0 1rem 1rem; }

.modal { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 1rem; }
.modal[hidden] { display: none; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.65); }
.modal-dialog {
    position: relative;
    width: min(440px, 100%);
    padding: 2rem 1.75rem;
    border-radius: var(--radius);
    background: var(--bg);
    border: 1px solid var(--border);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}
.modal-wide { width: min(560px, 100%); }
.modal-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
}
.modal-tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--cyan);
    margin-bottom: 0.5rem;
}
.modal-dialog h2 { font-size: 1.35rem; margin-bottom: 0.5rem; }
.modal-dialog p, .modal-sub { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1rem; }
body.modal-open { overflow: hidden; }

.quiz-card { margin-top: 0.5rem; }
.quiz-progress {
    position: relative;
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    margin-bottom: 0.5rem;
    overflow: hidden;
}
.quiz-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--cyan), var(--purple));
    border-radius: 999px;
    transition: width 0.3s;
}
.quiz-progress span {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 0.35rem;
}
.quiz-step { display: none; }
.quiz-step.active { display: block; }
.quiz-step h3 { font-size: 1rem; margin-bottom: 1rem; }
.quiz-options { display: grid; gap: 0.5rem; }
.quiz-options label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    border: 1px solid var(--border);
    cursor: pointer;
    font-size: 0.88rem;
    transition: border-color 0.2s;
}
.quiz-options label:has(input:checked) { border-color: var(--cyan); background: rgba(0, 210, 255, 0.06); }
.quiz-result-plan { font-weight: 700; color: var(--cyan); margin-bottom: 1rem; }
.quiz-nav { display: flex; justify-content: space-between; margin-top: 1.25rem; gap: 0.75rem; }
.btn-sm { padding: 0.55rem 1rem; font-size: 0.82rem; }

.demo-wrap {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2rem;
    align-items: center;
    padding: 2rem;
}
.demo-player { position: relative; border-radius: 12px; overflow: hidden; }
.demo-player img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.play-fake {
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: var(--bg);
    cursor: pointer;
    display: grid;
    place-items: center;
}

.clients-section { padding: 3rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.clients-title { text-align: center; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; color: var(--text-muted); margin-bottom: 1.5rem; }
.clients-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem 3rem; }
.client-logo { font-size: 1.25rem; font-weight: 800; color: rgba(255, 255, 255, 0.35); letter-spacing: 0.05em; }

.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; padding: 3rem 0; }
.stat-item { padding: 1.75rem; text-align: center; }
.stat-item strong {
    display: block;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    background: linear-gradient(90deg, var(--cyan), var(--purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.stat-item span { display: block; font-weight: 600; margin-top: 0.35rem; }
.stat-item small { display: block; font-size: 0.78rem; color: var(--text-muted); margin-top: 0.35rem; }

.solutions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.solution-card { padding: 1.75rem; }
.solution-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.solution-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1rem; }
.solution-metric { font-size: 0.82rem; font-weight: 700; color: var(--cyan); }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; align-items: stretch; }
.plan-card { padding: 2rem 1.5rem; position: relative; display: flex; flex-direction: column; }
.plan-card.featured { border-color: rgba(0, 210, 255, 0.4); box-shadow: 0 0 40px rgba(0, 210, 255, 0.1); }
.plan-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--cyan), var(--purple));
    color: var(--bg);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
}
.plan-card h3 { font-size: 1.1rem; margin-bottom: 0.75rem; }
.plan-price { margin-bottom: 1.25rem; }
.plan-price strong { font-size: 1.75rem; font-weight: 800; }
.plan-price span { color: var(--text-muted); font-size: 0.88rem; }
.plan-card ul { flex: 1; margin-bottom: 1.5rem; }
.plan-card li { display: flex; gap: 0.4rem; font-size: 0.88rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.plan-card li .icon { color: var(--cyan); flex-shrink: 0; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-bottom: 2rem; }
.team-card { padding: 1.75rem; text-align: center; }
.team-card img { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; margin: 0 auto 1rem; border: 2px solid rgba(0, 210, 255, 0.4); }
.team-role { color: var(--cyan); font-size: 0.82rem; font-weight: 600; margin-bottom: 0.75rem; }
.team-bio { font-size: 0.88rem; color: var(--text-muted); text-align: left; margin-bottom: 1rem; }
.team-credentials { text-align: left; }
.team-credentials li { font-size: 0.78rem; color: var(--text-muted); display: flex; gap: 0.35rem; margin-bottom: 0.3rem; }
.about-authority { padding: 1.25rem; text-align: center; color: var(--text-muted); font-size: 0.9rem; }

.insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.insight-card { padding: 1.5rem; }
.insight-card time { font-size: 0.78rem; color: var(--text-muted); }
.insight-card h3 { font-size: 1rem; margin: 0.5rem 0; }
.insight-card p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 0.75rem; }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.review-card { padding: 1.5rem; }
.stars { display: flex; gap: 3px; color: var(--cyan); margin-bottom: 0.75rem; }
.review-card blockquote p { font-size: 0.92rem; color: var(--text-muted); font-style: italic; margin-bottom: 1rem; }
.review-card footer strong { display: block; font-size: 0.88rem; }
.review-card footer span { font-size: 0.78rem; color: var(--text-muted); }

.faq-grid { display: grid; grid-template-columns: 0.35fr 1fr; gap: 2rem; align-items: start; }
.faq-item { margin-bottom: 0.75rem; }
.faq-item summary { padding: 1.1rem 1.25rem; cursor: pointer; font-weight: 600; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { padding: 0 1.25rem 1.1rem; color: var(--text-muted); font-size: 0.92rem; }

.cta-section { padding: 4rem 0 6rem; }
.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    padding: 2.5rem;
}
.cta-grid h2 { font-size: 1.75rem; font-weight: 800; margin-bottom: 0.5rem; }
.cta-grid > div > p { color: var(--text-muted); }
.demo-form { display: grid; gap: 1rem; }
.demo-form label span { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 0.35rem; }
.demo-form input {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.3);
    color: var(--white);
}
.checkbox-label { display: flex; gap: 0.5rem; font-size: 0.82rem; color: var(--text-muted); align-items: flex-start; }
.checkbox-label input { width: auto; margin-top: 4px; }

.site-footer { border-top: 1px solid var(--border); padding-top: 3rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 2rem; }
.footer-brand p { color: var(--text-muted); font-size: 0.88rem; margin-top: 1rem; max-width: 280px; }
.site-footer h4 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 1rem; }
.site-footer li { margin-bottom: 0.4rem; font-size: 0.88rem; color: var(--text-muted); }
.site-footer a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid var(--border); padding: 1.25rem 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; font-size: 0.8rem; color: var(--text-muted); }

.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    color: var(--bg);
    font-weight: 600;
    padding: 1rem 1.25rem;
    border-radius: 10px;
    z-index: 200;
    transform: translateY(120%);
    opacity: 0;
    transition: 0.3s;
}
.toast.show { transform: translateY(0); opacity: 1; }

@media (max-width: 1024px) {
    .hero-grid, .demo-wrap, .cta-grid, .faq-grid, .about-mission-grid, .location-grid, .footer-cta { grid-template-columns: 1fr; }
    .features-grid, .solutions-grid, .pricing-grid, .team-grid, .insights-grid, .reviews-grid, .cases-grid, .video-reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-grid, .stats-grid, .pain-grid, .eeat-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: fixed;
        inset: 72px 0 auto;
        background: rgba(10, 0, 38, 0.98);
        padding: 1rem;
        border-bottom: 1px solid var(--border);
    }
    .main-nav.open { display: block; }
    .main-nav ul { flex-direction: column; }
    .menu-toggle { display: flex; }
    .header-cta { display: none; }
    .features-grid, .solutions-grid, .pricing-grid, .team-grid, .insights-grid, .reviews-grid, .stats-grid, .trust-grid, .pain-grid, .eeat-grid, .cases-grid, .video-reviews-grid, .process-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-trust { flex-wrap: wrap; gap: 1rem; }
    .promo-timer-inner { font-size: 0.72rem; }
    .contact-widget { right: 0.75rem; bottom: 0.75rem; }
    .contact-widget-toggle span:last-child { display: none; }
    .live-stats { left: 0.5rem; bottom: 0.5rem; font-size: 0.65rem; }
    .social-proof { display: none; }
}
