/* Click-Shield Pro v2 - Common Styles */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg-dark: #030712;
    --bg-card: rgba(15, 23, 42, 0.6);
    --bg-glass: rgba(255, 255, 255, 0.03);
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --accent-blue: #3b82f6;
    --accent-purple: #8b5cf6;
    --accent-pink: #ec4899;
    --accent-cyan: #06b6d4;
    --accent-green: #10b981;
    --accent-red: #ef4444;
    --accent-orange: #f97316;
    --border-glass: rgba(255, 255, 255, 0.06);
    --gradient-primary: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #ec4899 100%);
    --gradient-blue: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    --gradient-purple: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    --gradient-orange: linear-gradient(135deg, #f97316 0%, #eab308 100%);
    --gradient-cyan: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ========== ANIMATED BACKGROUND ========== */
.bg-effects {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bg-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.4;
    animation: float 15s ease-in-out infinite;
}

.bg-glow-1 {
    width: 600px; height: 600px;
    top: -200px; left: -200px;
    background: var(--accent-blue);
}

.bg-glow-2 {
    width: 500px; height: 500px;
    top: 50%; right: -200px;
    background: var(--accent-purple);
    animation-delay: -5s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

/* ========== LAYOUT ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* ========== TYPOGRAPHY ========== */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text.orange {
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    background-clip: text;
}

.gradient-text.purple {
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    background-clip: text;
}

.gradient-text.cyan {
    background: var(--gradient-cyan);
    -webkit-background-clip: text;
    background-clip: text;
}

/* ========== NAVIGATION ========== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

nav.scrolled {
    background: rgba(3, 7, 18, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.logo:hover .logo-icon {
    transform: scale(1.05) rotate(-5deg);
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-primary);
}

.logo-text span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: none;
    list-style: none;
    gap: 8px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 10px 16px;
    border-radius: 10px;
    transition: all 0.3s;
}

.nav-links a:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

/* Dropdown */
.nav-dropdown { position: relative; }

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 12px;
    min-width: 260px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 10px;
    transition: all 0.2s;
    text-decoration: none;
}

.dropdown-item:hover { background: rgba(255, 255, 255, 0.05); }

.dropdown-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.dropdown-content h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.dropdown-content p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.nav-buttons { display: flex; gap: 10px; }

/* Mobile Menu */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-secondary);
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(3, 7, 18, 0.98);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    padding: 100px 24px 40px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu-item {
    display: block;
    padding: 16px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.2s;
}

.mobile-menu-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.mobile-menu-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 16px 16px 8px;
}

.mobile-menu-divider {
    height: 1px;
    background: var(--border-glass);
    margin: 8px 0;
}

.mobile-menu-cta {
    margin-top: 16px;
    text-align: center;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
}

.btn-primary.orange {
    background: var(--gradient-orange);
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.3);
}

.btn-primary.purple {
    background: var(--gradient-purple);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.btn-primary.cyan {
    background: var(--gradient-cyan);
    box-shadow: 0 4px 20px rgba(6, 182, 212, 0.3);
}

.btn-secondary {
    background: var(--bg-glass);
    color: var(--text-secondary);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.15);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    padding: 10px 16px;
}

.btn-ghost:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.btn-block { width: 100%; }

/* ========== PAGE HERO ========== */
.page-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
}

.page-hero.compact {
    min-height: auto;
    padding: 140px 0 40px;
}

.page-hero .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

.page-hero-content { text-align: center; }
.page-hero-content.center { text-align: center; margin: 0 auto; max-width: 700px; }

.page-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-blue);
    margin-bottom: 24px;
}

.page-hero-badge.beta {
    background: rgba(249, 115, 22, 0.1);
    border-color: rgba(249, 115, 22, 0.2);
    color: var(--accent-orange);
}

.page-hero-badge.purple {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.2);
    color: var(--accent-purple);
}

.page-hero-badge.cyan {
    background: rgba(6, 182, 212, 0.1);
    border-color: rgba(6, 182, 212, 0.2);
    color: var(--accent-cyan);
}

.badge-icon { font-size: 1rem; }

.page-hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
}

.page-hero-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 550px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.page-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.page-hero-visual {
    display: flex;
    justify-content: center;
}

/* ========== STATS BAR ========== */
.stats-bar {
    background: rgba(59, 130, 246, 0.05);
    border-top: 1px solid rgba(59, 130, 246, 0.1);
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    padding: 30px 0;
}

.stats-bar.orange {
    background: rgba(249, 115, 22, 0.05);
    border-color: rgba(249, 115, 22, 0.1);
}

.stats-bar.purple {
    background: rgba(139, 92, 246, 0.05);
    border-color: rgba(139, 92, 246, 0.1);
}

.stats-bar.cyan {
    background: rgba(6, 182, 212, 0.05);
    border-color: rgba(6, 182, 212, 0.1);
}

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

.stat-item {}

.stat-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ========== CONTENT SECTIONS ========== */
.content-section {
    padding: 80px 0;
}

.content-section.alt-bg {
    background: rgba(255, 255, 255, 0.01);
}

.section-header {
    margin-bottom: 50px;
}

.section-header.center { text-align: center; }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    color: var(--accent-blue);
}

.section-label.red { color: var(--accent-red); }
.section-label.green { color: var(--accent-green); }
.section-label.orange { color: var(--accent-orange); }
.section-label.purple { color: var(--accent-purple); }
.section-label.blue { color: var(--accent-blue); }
.section-label.cyan { color: var(--accent-cyan); }

.content-section h2 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.content-section p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}

.content-grid.reverse .content-visual { order: -1; }

/* ========== PROBLEM LIST ========== */
.problem-list {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.problem-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    transition: all 0.3s;
}

.problem-item:hover {
    border-color: rgba(239, 68, 68, 0.3);
    transform: translateX(8px);
}

.problem-item.orange:hover {
    border-color: rgba(249, 115, 22, 0.3);
}

.problem-item.cyan:hover {
    border-color: rgba(6, 182, 212, 0.3);
}

.problem-icon {
    width: 48px;
    height: 48px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.problem-item.orange .problem-icon {
    background: rgba(249, 115, 22, 0.1);
}

.problem-item.cyan .problem-icon {
    background: rgba(6, 182, 212, 0.1);
}

.problem-item strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 4px;
}

.problem-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ========== HOW IT WORKS ========== */
.how-it-works-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.how-step {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

.how-step:hover {
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-4px);
}

.how-step.orange:hover {
    border-color: rgba(249, 115, 22, 0.3);
}

.how-step.cyan:hover {
    border-color: rgba(6, 182, 212, 0.3);
}

.step-number {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

.how-step.orange .step-number {
    background: var(--gradient-orange);
}

.how-step.cyan .step-number {
    background: var(--gradient-cyan);
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.how-step h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.how-step p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ========== FEATURES DEEP GRID ========== */
.features-deep-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.feature-deep-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s;
}

.feature-deep-card:hover {
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-4px);
}

.feature-deep-icon {
    width: 60px;
    height: 60px;
    background: rgba(var(--color), 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.feature-deep-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-deep-card > p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.feature-bullets {
    list-style: none;
}

.feature-bullets li {
    padding: 6px 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.feature-bullets li::before {
    content: '•';
    color: var(--accent-blue);
    margin-right: 8px;
}

/* ========== RESULTS SECTION ========== */
.results-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 30px;
}

.results-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--text-muted);
}

.result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-glass);
    font-size: 0.95rem;
}

.result-row:last-child { border-bottom: none; }

.result-value {
    font-weight: 700;
}

.result-value.green { color: var(--accent-green); }
.result-value.red { color: var(--accent-red); }
.result-value.blue { color: var(--accent-blue); }

.result-highlights {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.result-highlights + .btn {
    margin-top: 24px;
    display: block;
    text-align: center;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(16, 185, 129, 0.08);
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--accent-green);
}

/* ========== FOOTER ========== */
footer {
    border-top: 1px solid var(--border-glass);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand { max-width: 300px; }

.footer-brand p {
    color: var(--text-muted);
    margin-top: 16px;
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.2s;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.footer-col h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }

.footer-col a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-col a:hover { color: var(--accent-blue); }

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-glass);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-bottom a {
    color: var(--text-secondary);
    text-decoration: none;
}

.footer-bottom a:hover { color: var(--accent-blue); }

/* ========== CTA SECTION ========== */
.cta-section { padding: 80px 0; }

.cta-box {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(139, 92, 246, 0.15) 50%, rgba(236, 72, 153, 0.15) 100%);
    border: 1px solid var(--border-glass);
    border-radius: 32px;
    padding: 50px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box.orange-gradient {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15) 0%, rgba(234, 179, 8, 0.15) 100%);
}

.cta-box.purple-gradient {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(236, 72, 153, 0.15) 100%);
}

.cta-box.cyan-gradient {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15) 0%, rgba(59, 130, 246, 0.15) 100%);
}

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

.cta-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(249, 115, 22, 0.15);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-orange);
    margin-bottom: 20px;
}

.cta-box h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-box p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 28px;
}

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

.cta-note {
    margin-top: 20px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.cta-note span { color: var(--accent-green); }

/* ========== NOTICE BAR ========== */
.notice-bar {
    background: rgba(239, 68, 68, 0.08);
    border-top: 1px solid rgba(239, 68, 68, 0.15);
    border-bottom: 1px solid rgba(239, 68, 68, 0.15);
    padding: 16px 0;
}

.notice-bar.orange {
    background: rgba(249, 115, 22, 0.08);
    border-color: rgba(249, 115, 22, 0.15);
}

.notice-content {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    text-align: center;
}

.notice-icon { font-size: 1.2rem; }

.notice-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.notice-content strong {
    color: var(--accent-orange);
}

/* ========== RESPONSIVE ========== */
@media (min-width: 768px) {
    .nav-links { display: flex; }
    .mobile-menu-btn { display: none; }
    
    .stats-bar-grid { grid-template-columns: repeat(4, 1fr); }
    
    .content-grid { grid-template-columns: 1fr 1fr; }
    
    .how-it-works-grid { grid-template-columns: repeat(2, 1fr); }
    
    .features-deep-grid { grid-template-columns: repeat(2, 1fr); }
    
    .page-hero .container { grid-template-columns: 1fr 1fr; }
    .page-hero-content { text-align: left; }
    .page-hero-desc { margin: 0 0 32px; }
    .page-hero-buttons { justify-content: flex-start; }
    
    .footer-grid { grid-template-columns: 1.5fr 2fr; }
    .footer-links-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-bottom { flex-direction: row; justify-content: space-between; }
}

@media (min-width: 1024px) {
    .how-it-works-grid { grid-template-columns: repeat(4, 1fr); }
    .features-deep-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ========== PRICING PAGE ========== */
.pricing-toggle-section {
    padding: 30px 0;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.toggle-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.2s;
}

.toggle-label.active { color: var(--text-primary); }

.toggle-discount {
    display: inline-block;
    padding: 2px 8px;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent-green);
    margin-left: 6px;
}

.toggle-switch {
    width: 48px;
    height: 26px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
    flex-shrink: 0;
}

.toggle-slider {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    background: var(--gradient-primary);
    border-radius: 50%;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.toggle-switch.active .toggle-slider {
    left: calc(100% - 21px);
}

.pricing-section { padding: 40px 0 80px; }

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

.pricing-card-v2 {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 32px;
    position: relative;
    transition: all 0.3s;
}

.pricing-card-v2:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.pricing-card-v2.featured {
    background: rgba(59, 130, 246, 0.08);
    border: 2px solid var(--accent-blue);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: var(--gradient-primary);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
}

.pricing-header-v2 {
    text-align: center;
    margin-bottom: 24px;
}

.pricing-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.pricing-header-v2 h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.pricing-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.pricing-price-v2 {
    text-align: center;
    margin-bottom: 28px;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-amount.custom {
    font-size: 2rem;
}

.price-period {
    font-size: 1rem;
    color: var(--text-muted);
}

.pricing-features-v2 {
    list-style: none;
    margin-bottom: 28px;
}

.pricing-features-v2 li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.9rem;
}

.pricing-features-v2 li.included { color: var(--text-secondary); }
.pricing-features-v2 li.not-included { color: var(--text-muted); }

.feature-check {
    width: 20px;
    height: 20px;
    background: rgba(16, 185, 129, 0.15);
    color: var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
}

.feature-x {
    width: 20px;
    height: 20px;
    background: rgba(100, 116, 139, 0.15);
    color: var(--text-muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
}

.pricing-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 12px;
}

/* Add-ons Grid */
.addons-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.addon-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 20px 24px;
    transition: all 0.3s;
}

.addon-card:hover {
    border-color: rgba(139, 92, 246, 0.3);
}

.addon-icon {
    width: 48px;
    height: 48px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.addon-info { flex: 1; }

.addon-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.addon-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.addon-price {
    text-align: right;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.addon-price .badge {
    display: inline-block;
    padding: 3px 8px;
    background: rgba(249, 115, 22, 0.15);
    border-radius: 100px;
    font-size: 0.65rem;
    color: var(--accent-orange);
    margin-right: 8px;
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover,
.faq-item.active {
    border-color: rgba(59, 130, 246, 0.3);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.2rem;
    color: var(--text-muted);
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Features Grid 3 col */
.features-grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.feature-card-v2 {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 28px;
    text-align: center;
    transition: all 0.3s;
}

.feature-card-v2:hover {
    border-color: rgba(249, 115, 22, 0.3);
    transform: translateY(-4px);
}

.feature-icon-v2 {
    width: 56px;
    height: 56px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 16px;
}

.feature-icon-v2.orange { background: rgba(249, 115, 22, 0.1); }
.feature-icon-v2.purple { background: rgba(139, 92, 246, 0.1); }
.feature-icon-v2.green { background: rgba(16, 185, 129, 0.1); }

.feature-card-v2 h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-card-v2 p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Use Cases */
.use-cases-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.use-case-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s;
}

.use-case-card:hover {
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-4px);
}

.use-case-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 12px;
}

.use-case-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.use-case-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Integration */
.integration-demo {
    max-width: 700px;
    margin: 0 auto;
}

.code-block {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 30px;
}

.code-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--border-glass);
}

.code-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.code-dot.red { background: #ef4444; }
.code-dot.yellow { background: #f59e0b; }
.code-dot.green { background: #10b981; }

.code-title {
    margin-left: auto;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.code-block pre {
    padding: 20px;
    overflow-x: auto;
}

.code-block code {
    font-family: 'Fira Code', monospace;
    font-size: 0.85rem;
    line-height: 1.8;
}

.code-comment { color: #6b7280; }
.code-tag { color: #f472b6; }
.code-attr { color: #60a5fa; }
.code-string { color: #34d399; }

.integration-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.integration-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--bg-glass);
    border-radius: 12px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.int-icon { font-size: 1.1rem; }

.integration-platforms {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.platform-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: all 0.2s;
}

.platform-item:hover {
    border-color: rgba(59, 130, 246, 0.3);
}

.platform-icon { font-size: 1.2rem; }

/* Responsive */
@media (min-width: 768px) {
    .pricing-grid-v2 { grid-template-columns: repeat(3, 1fr); }
    .addons-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .use-cases-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
    .features-grid-3 { grid-template-columns: repeat(3, 1fr); }
    .use-cases-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ========== ANIMATIONS ========== */
/* Shield Animation */
.shield-animation {
    position: relative;
    width: 280px;
    height: 280px;
}

.shield-ring {
    position: absolute;
    border: 2px solid;
    border-radius: 50%;
    animation: pulseRing 3s ease-out infinite;
}

.ring-1 {
    inset: 0;
    border-color: rgba(59, 130, 246, 0.3);
    animation-delay: 0s;
}

.ring-2 {
    inset: 20px;
    border-color: rgba(139, 92, 246, 0.3);
    animation-delay: 0.5s;
}

.ring-3 {
    inset: 40px;
    border-color: rgba(236, 72, 153, 0.3);
    animation-delay: 1s;
}

@keyframes pulseRing {
    0% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(1); opacity: 0.5; }
}

.shield-core {
    position: absolute;
    inset: 60px;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.shield-particles {
    position: absolute;
    inset: -20px;
}

.blocked-dot {
    position: absolute;
    font-size: 1.2rem;
    animation: blockParticle 4s ease-in-out infinite;
}

@keyframes blockParticle {
    0%, 100% {
        transform: rotate(var(--angle)) translateX(160px) rotate(calc(-1 * var(--angle)));
        opacity: 0;
    }
    20% { opacity: 1; }
    80% { opacity: 1; }
}

/* Fraud Demo */
.fraud-demo-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    overflow: hidden;
}

.fraud-demo-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.3);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.red-dot {
    width: 10px;
    height: 10px;
    background: var(--accent-red);
    border-radius: 50%;
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.fraud-demo-content {
    padding: 16px;
}

.fraud-line {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.02);
    font-size: 0.85rem;
    animation: fadeInLine 0.5s ease-out forwards;
    animation-delay: var(--delay);
    opacity: 0;
}

@keyframes fadeInLine {
    to { opacity: 1; }
}

.fraud-ip {
    font-family: monospace;
    color: var(--text-muted);
}

.fraud-type {
    font-size: 0.8rem;
}

.fraud-status {
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
}

.fraud-status.blocked {
    background: rgba(239, 68, 68, 0.15);
    color: var(--accent-red);
}

.fraud-status.allowed {
    background: rgba(16, 185, 129, 0.15);
    color: var(--accent-green);
}

.fraud-status.flagged {
    background: rgba(249, 115, 22, 0.15);
    color: var(--accent-orange);
}

/* Psychology */
.psychology-list {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.psychology-item {
    display: flex;
    gap: 16px;
}

.psych-icon {
    width: 48px;
    height: 48px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.psychology-item strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 4px;
}

.psychology-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.psychology-stats-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 30px;
}

.psychology-stats-card h4 {
    font-size: 1rem;
    margin-bottom: 24px;
    color: var(--text-muted);
}

.psych-stat {
    margin-bottom: 20px;
}

.psych-stat-bar {
    height: 32px;
    background: var(--gradient-purple);
    border-radius: 8px;
    width: var(--width);
    display: flex;
    align-items: center;
    padding-left: 14px;
    margin-bottom: 6px;
}

.psych-stat-bar span {
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
}

.psych-stat p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ========== PHONE ANIMATION ========== */
.phone-animation {
    position: relative;
    width: 280px;
    height: 400px;
}

.phone-device {
    width: 220px;
    height: 380px;
    background: var(--bg-card);
    border: 2px solid var(--border-glass);
    border-radius: 32px;
    padding: 10px;
    position: relative;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.phone-device::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    border-radius: 24px;
    padding: 40px 16px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.incoming-call {
    text-align: center;
    animation: callPulse 2s ease-in-out infinite;
}

@keyframes callPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.call-avatar {
    width: 70px;
    height: 70px;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 16px;
}

.call-info {
    margin-bottom: 20px;
}

.call-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.call-number {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
}

.call-source {
    background: rgba(249, 115, 22, 0.15);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 12px;
    padding: 12px;
}

.source-badge {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-orange);
    margin-bottom: 4px;
}

.source-campaign {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.call-tracking-lines {
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
}

.tracking-line {
    width: 30px;
    height: 2px;
    background: var(--gradient-orange);
    margin-bottom: 8px;
    border-radius: 2px;
    animation: trackPulse 1.5s ease-in-out infinite;
    animation-delay: var(--delay);
    opacity: 0.5;
}

@keyframes trackPulse {
    0%, 100% { width: 30px; opacity: 0.5; }
    50% { width: 50px; opacity: 1; }
}

/* ========== BOOSTER ANIMATION ========== */
.booster-animation {
    position: relative;
    width: 320px;
    height: 300px;
}

.demo-popup {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 14px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: popupFloat 4s ease-in-out infinite;
}

.popup-1 {
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.popup-2 {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    animation-delay: 1.5s;
}

.popup-3 {
    bottom: 0;
    left: 20px;
    animation-delay: 3s;
}

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

.popup-2 {
    animation-name: popupFloat2;
}

@keyframes popupFloat2 {
    0%, 100% { transform: translateY(-50%); }
    50% { transform: translateY(calc(-50% - 10px)); }
}

.popup-icon {
    width: 40px;
    height: 40px;
    background: rgba(139, 92, 246, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.popup-text {
    line-height: 1.3;
}

.popup-text strong {
    display: block;
    font-size: 0.85rem;
}

.popup-text span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.popup-time {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-left: auto;
}

/* ========== TRACKING DEMO CARD ========== */
.tracking-demo-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    overflow: hidden;
}

.tracking-header {
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.3);
    font-size: 0.9rem;
    font-weight: 600;
    border-bottom: 1px solid var(--border-glass);
}

.tracking-chart {
    padding: 24px;
}

.chart-bar-item {
    margin-bottom: 20px;
}

.chart-bar-item:last-child {
    margin-bottom: 0;
}

.bar-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.bar-container {
    height: 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 4px;
}

.bar-fill {
    height: 100%;
    border-radius: 6px;
    transition: width 1s ease-out;
}

.bar-value {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: right;
}

/* ========== SOLUTIONS DETAILED ========== */
.solutions-detailed-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.solution-detailed-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.solution-detailed-card:hover {
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-4px);
}

.solution-badge-corner {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 12px;
    background: var(--gradient-primary);
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
    color: white;
}

.solution-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.solution-icon-large {
    width: 64px;
    height: 64px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.solution-icon-large.purple { background: rgba(139, 92, 246, 0.1); }
.solution-icon-large.pink { background: rgba(236, 72, 153, 0.1); }
.solution-icon-large.orange { background: rgba(249, 115, 22, 0.1); }
.solution-icon-large.green { background: rgba(16, 185, 129, 0.1); }

.solution-header h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.solution-tagline {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

.solution-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.7;
}

.solution-demo-box {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
}

.solution-features-list {
    list-style: none;
}

.solution-features-list li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Live Popup Demo */
.live-popup-demo {
    position: relative;
    min-height: 100px;
}

.popup-demo-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 10px;
    animation: popupSlide 6s ease-in-out infinite;
    animation-delay: var(--delay, 0s);
    opacity: 0;
}

@keyframes popupSlide {
    0%, 100% { opacity: 0; transform: translateX(-20px); }
    10%, 45% { opacity: 1; transform: translateX(0); }
    55%, 100% { opacity: 0; transform: translateX(20px); }
}

.popup-avatar {
    width: 36px;
    height: 36px;
    background: var(--gradient-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.popup-demo-item strong {
    display: block;
    font-size: 0.85rem;
}

.popup-demo-item span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.popup-demo-item .time {
    margin-left: auto;
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* Exit Popup Demo */
.exit-popup-demo {
    display: flex;
    justify-content: center;
}

.exit-popup-mock {
    background: var(--bg-card);
    border: 2px solid var(--accent-pink);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    width: 220px;
}

.exit-header {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.exit-offer {
    margin-bottom: 16px;
}

.discount-badge {
    display: inline-block;
    font-size: 2rem;
    font-weight: 900;
    background: var(--gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.exit-offer p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.exit-cta {
    background: var(--gradient-pink);
    color: white;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Urgency Demo */
.urgency-demo {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.countdown-mock {
    text-align: center;
}

.countdown-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: block;
}

.countdown-boxes {
    display: flex;
    gap: 10px;
}

.countdown-box {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 10px;
    padding: 12px 16px;
    text-align: center;
}

.countdown-box span {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.countdown-box small {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.stock-mock {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 10px;
    padding: 12px 20px;
}

.stock-icon { font-size: 1.2rem; }

.stock-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.stock-text strong {
    color: var(--accent-red);
}

/* Callback Demo */
.callback-demo {
    display: flex;
    justify-content: center;
}

.callback-mock {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 20px;
    width: 240px;
}

.callback-header {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
}

.callback-mock input,
.callback-mock select {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    border-radius: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.callback-mock button {
    width: 100%;
    padding: 12px;
    background: var(--gradient-green);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
}

/* Gradient variations */
.gradient-pink {
    background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%);
}

.gradient-green {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

/* ========== RESPONSIVE ADDITIONS ========== */
@media (min-width: 768px) {
    .solutions-detailed-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .solutions-detailed-grid:not(.two-col) .solution-detailed-card:first-child {
        grid-column: span 2;
    }
    
    /* Two column layout - egyenlő kártyák */
    .solutions-detailed-grid.two-col {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .solutions-detailed-grid.two-col .solution-detailed-card {
        grid-column: span 1;
    }
    
    .urgency-demo {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }
}

@media (min-width: 1024px) {
    .solutions-detailed-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .solutions-detailed-grid.two-col {
        gap: 30px;
    }
}

/* ========== LOADING STATES ========== */
.skeleton {
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.03) 25%, 
        rgba(255, 255, 255, 0.08) 50%, 
        rgba(255, 255, 255, 0.03) 75%
    );
    background-size: 200% 100%;
    animation: skeleton 1.5s infinite;
    border-radius: 8px;
}

@keyframes skeleton {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ========== TOOLTIP ========== */
.tooltip {
    position: relative;
}

.tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
    z-index: 100;
}

.tooltip:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* ========== SCROLL INDICATOR ========== */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--gradient-primary);
    z-index: 9999;
    transition: width 0.1s;
}

/* ========== BACK TO TOP ========== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-4px);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
    stroke: white;
    stroke-width: 2;
    fill: none;
}

/* ========== MOBILE OPTIMIZATIONS ========== */
@media (max-width: 767px) {
    /* Hero stats mobil - szélesebb kártyák */
    .hero-stats {
        gap: 12px;
    }
    
    .hero-stat {
        padding: 20px 16px;
    }
    
    .hero-stat-value {
        font-size: 1.5rem;
    }
    
    .hero-stat-label {
        font-size: 0.7rem;
    }
    
    /* Solutions detailed mobil */
    .solutions-detailed-grid {
        gap: 20px;
    }
    
    .solution-detailed-card {
        padding: 24px;
    }
    
    .solution-header {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .solution-header h3 {
        font-size: 1.2rem;
    }
    
    .solution-icon-large {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }
    
    .solution-demo-box {
        padding: 16px;
    }
    
    /* Live popup demo mobil */
    .live-popup-demo {
        min-height: 80px;
    }
    
    .popup-demo-item {
        padding: 10px 12px;
        gap: 10px;
    }
    
    .popup-demo-item strong {
        font-size: 0.8rem;
    }
    
    .popup-avatar {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    /* Callback mock mobil */
    .callback-mock {
        width: 100%;
        max-width: 280px;
    }
    
    /* Exit popup mock mobil */
    .exit-popup-mock {
        width: 100%;
        max-width: 200px;
        padding: 20px;
    }
    
    .discount-badge {
        font-size: 1.6rem;
    }
    
    /* Urgency demo mobil */
    .urgency-demo {
        flex-direction: column;
        gap: 16px;
    }
    
    .countdown-boxes {
        gap: 8px;
    }
    
    .countdown-box {
        padding: 10px 14px;
    }
    
    .countdown-box span {
        font-size: 1.2rem;
    }
    
    /* Solution features list mobil */
    .solution-features-list li {
        font-size: 0.85rem;
        padding: 6px 0;
    }
    
    /* Stats bar mobil */
    .stats-bar-grid {
        gap: 16px;
    }
    
    .stat-value {
        font-size: 1.4rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    /* Page hero mobil */
    .page-hero {
        min-height: auto;
        padding: 100px 0 50px;
    }
    
    .page-hero h1 {
        font-size: 1.8rem;
    }
    
    .page-hero-desc {
        font-size: 1rem;
    }
    
    /* CTA mobil */
    .cta-box {
        padding: 40px 24px;
        border-radius: 24px;
    }
    
    .cta-box h2 {
        font-size: 1.4rem;
    }
    
    /* Psychology stats mobil */
    .psychology-stats-card {
        padding: 24px;
    }
    
    .psych-stat-bar {
        height: 28px;
    }
    
    /* Content grid mobil */
    .content-grid {
        gap: 40px;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
    
    /* Problem list mobil */
    .problem-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .problem-icon {
        margin: 0 auto;
    }
    
    /* Psychology list mobil */
    .psychology-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .psych-icon {
        margin: 0 auto;
    }
}

/* Extra small screens */
@media (max-width: 380px) {
    .hero-stat-value {
        font-size: 1.3rem;
    }
    
    .hero-stat-label {
        font-size: 0.65rem;
    }
    
    .countdown-box {
        padding: 8px 10px;
    }
    
    .countdown-box span {
        font-size: 1rem;
    }
}

/* ========== PRICING HERO WITH ANIMATION ========== */
.pricing-hero {
    padding: 120px 0 40px;
}

.pricing-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.pricing-hero-content {
    text-align: center;
}

.pricing-hero-content h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 16px;
}

.pricing-hero-visual {
    display: flex;
    justify-content: center;
    overflow: visible;
}

.pricing-animation {
    position: relative;
    width: 300px;
    height: 320px;
    overflow: visible;
    margin: 20px auto;
}

/* Central savings circle */
.savings-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background: var(--bg-card);
    border: 2px solid var(--accent-green);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.3);
    animation: savingsPulse 3s ease-in-out infinite;
    z-index: 2;
}

@keyframes savingsPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 0 40px rgba(16, 185, 129, 0.3); }
    50% { transform: translate(-50%, -50%) scale(1.05); box-shadow: 0 0 60px rgba(16, 185, 129, 0.5); }
}

.savings-amount {
    display: flex;
    align-items: flex-start;
    gap: 2px;
}

.savings-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.savings-percent {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-green);
    margin-top: 4px;
}

.savings-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Orbit ring */
.orbit-ring {
    position: absolute;
    inset: 0;
    border: 1px dashed rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    animation: orbitSpin 30s linear infinite;
}

@keyframes orbitSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Orbiting items */
.orbit-item {
    position: absolute;
    width: 44px;
    height: 44px;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    animation: orbitFloat 20s linear infinite;
}

.orbit-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.orbit-2 {
    bottom: 20px;
    left: 10px;
    animation-delay: -6.6s;
}

.orbit-3 {
    bottom: 20px;
    right: 10px;
    animation-delay: -13.3s;
}

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

/* Floating tags */
.float-tag {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 100px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    white-space: nowrap;
    animation: tagFloat 4s ease-in-out infinite;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.tag-icon {
    color: var(--accent-green);
    font-weight: 700;
}

.tag-1 {
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    bottom: auto;
    animation-delay: 0s;
}

.tag-2 {
    top: 50%;
    left: -70px;
    transform: translateY(-50%);
    right: auto;
    bottom: auto;
    animation-delay: 1.3s;
}

.tag-3 {
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    top: auto;
    right: auto;
    animation-delay: 2.6s;
}

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

/* ========== PRICING CARDS CENTERED ========== */
.pricing-grid-v2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 400px;
    margin: 0 auto;
}

.pricing-card-v2 {
    text-align: center;
}

.pricing-features-v2 {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-features-v2 li {
    justify-content: center;
}

/* ========== PRICING RESPONSIVE ========== */
@media (min-width: 768px) {
    .pricing-hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
    
    .pricing-hero-content {
        text-align: left;
    }
    
    .pricing-hero-visual {
        justify-content: flex-end;
    }
    
    .pricing-animation {
        width: 320px;
        height: 320px;
    }
    
    .savings-circle {
        width: 160px;
        height: 160px;
    }
    
    .savings-number {
        font-size: 3.5rem;
    }
    
    .pricing-grid-v2 {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1000px;
        gap: 24px;
    }
}

@media (min-width: 1024px) {
    .pricing-animation {
        width: 350px;
        height: 350px;
    }
    
    .savings-circle {
        width: 180px;
        height: 180px;
    }
    
    .savings-number {
        font-size: 4rem;
    }
    
    .orbit-item {
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
    }
    
    .pricing-grid-v2 {
        gap: 30px;
    }
}

/* Pricing mobile centered */
@media (max-width: 767px) {
    .pricing-hero {
        padding: 100px 0 30px;
    }
    
    .pricing-hero-content {
        order: 1;
    }
    
    .pricing-hero-visual {
        order: 2;
    }
    
    .pricing-animation {
        width: 240px;
        height: 240px;
    }
    
    .savings-circle {
        width: 120px;
        height: 120px;
    }
    
    .savings-number {
        font-size: 2.5rem;
    }
    
    .savings-percent {
        font-size: 1.2rem;
    }
    
    .savings-label {
        font-size: 0.7rem;
    }
    
    .orbit-item {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .float-tag {
        padding: 8px 12px;
        font-size: 0.7rem;
    }
    
    .tag-1 {
        top: -10px;
        left: 50%;
        transform: translateX(-50%);
        right: auto;
    }
    
    .tag-2 {
        left: -30px;
        top: 50%;
        transform: translateY(-50%);
        bottom: auto;
        right: auto;
    }
    
    .tag-3 {
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        right: auto;
        top: auto;
    }
    
    .pricing-grid-v2 {
        max-width: 340px;
    }
    
    .pricing-card-v2 {
        padding: 24px 20px;
    }
}

/* ========== MOBILE MENU FIXES ========== */
/* Hide nav-buttons on mobile */
@media (max-width: 767px) {
    .nav-buttons {
        display: none !important;
    }
    
    .mobile-menu-btn {
        display: flex !important;
    }
}

/* Mobile Menu Full Screen */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(3, 7, 18, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    padding: 100px 24px 40px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    height: 100%;
    overflow-y: auto;
}

.mobile-menu-item {
    display: block;
    padding: 16px 20px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.2s;
}

.mobile-menu-item:hover,
.mobile-menu-item:active {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.mobile-menu-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 20px 20px 8px;
}

.mobile-menu-divider {
    height: 1px;
    background: var(--border-glass);
    margin: 8px 0;
}

.mobile-menu-cta {
    margin-top: 20px;
    text-align: center;
    width: 100%;
}

/* Mobile menu button animation */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-secondary);
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hide mobile menu on desktop */
@media (min-width: 768px) {
    .mobile-menu {
        display: none !important;
    }
    
    .mobile-menu-btn {
        display: none !important;
    }
    
    .nav-buttons {
        display: flex !important;
    }
}

/* ========== REDUCE MOTION - ACCESSIBILITY ========== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .bg-grid,
    .bg-glow,
    .particle,
    .orbit-ring,
    .orbit-item,
    .float-tag,
    .savings-circle {
        animation: none !important;
    }
}

/* ========== PERFORMANCE OPTIMIZATIONS ========== */
.bg-glow,
.particle,
.orbit-item,
.float-tag {
    will-change: transform;
}

/* GPU acceleration for animated elements */
.solution-card,
.problem-card,
.who-card,
.pricing-card-v2 {
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* ========== MOBILE PERFORMANCE OPTIMIZATION ========== */
/* iPhone Safari optimalizált blur */
@media (max-width: 768px) {
    /* iPhone safe area fix */
    html, body {
        background: #030712 !important;
    }
    
    /* bg-effects korlátozott - ne menjen le az aljáig */
    .bg-effects {
        height: 100vh;
        max-height: 900px;
    }
    
    /* Háttér glow-ok: kisebb blur + GPU acceleration */
    .bg-glow {
        filter: blur(80px);
        opacity: 0.3;
        animation: none;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        will-change: transform;
    }
    
    /* Csak bg-glow-1 marad - a többi elrejtve (iPhone alsó sáv fix) */
    .bg-glow-2,
    .bg-glow-3 {
        display: none !important;
    }
    
    .bg-grid {
        animation: none !important;
        opacity: 0.4;
    }
    
    .particles {
        display: none !important;
    }
    
    /* Nav: átlátszó alapból, görgetéskor félig sötét */
    nav,
    #navbar {
        background: transparent !important;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    
    nav.scrolled,
    #navbar.scrolled {
        background: rgba(3, 7, 18, 0.6) !important;
        -webkit-backdrop-filter: blur(12px);
        backdrop-filter: blur(12px);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    
    /* CTA box pink nélkül mobilon */
    .cta-box {
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(139, 92, 246, 0.12) 100%) !important;
    }
    
    .cta-box::before {
        display: none;
    }
    
    /* Footer sötét háttér */
    footer {
        background: #030712;
    }
}

/* Menü nyitva: háttér elemek elrejtése */
body.menu-open .bg-glow,
body.menu-open .bg-grid {
    display: none !important;
}

/* ========== MOBILE MENU V2 ========== */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(3, 7, 18, 0.85);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    visibility: hidden;
    will-change: transform;
}

.mobile-menu.active {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    visibility: visible;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
}

.mobile-menu-close {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #94a3b8;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.mobile-menu-close:active {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(0.95);
}

.mobile-menu-content {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-menu-item {
    display: block;
    padding: 16px;
    color: #94a3b8;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.15s;
}

.mobile-menu-item:active {
    background: rgba(255, 255, 255, 0.05);
    color: #f8fafc;
}

.mobile-menu-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 20px 16px 8px;
}

.mobile-menu-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin: 12px 0;
}

.mobile-menu-footer {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
}

.mobile-menu-footer .btn-block {
    display: block;
    width: 100%;
    text-align: center;
    padding: 16px 24px;
    font-size: 1rem;
}

/* Hide nav buttons on mobile */
@media (max-width: 767px) {
    .nav-buttons {
        display: none !important;
    }
    
    .mobile-menu-btn {
        display: flex !important;
    }
}

/* Hide mobile menu on desktop */
@media (min-width: 768px) {
    .mobile-menu {
        display: none !important;
    }
    
    .mobile-menu-btn {
        display: none !important;
    }
    
    .nav-buttons {
        display: flex !important;
    }
}

/* ========== IPHONE SAFARI SAFE AREA FIX ========== */
/* svh = Small Viewport Height - megáll a böngészősáv tetejénél */

#mobileMenu, .mobile-menu {
    height: 100svh !important;
    bottom: auto !important;
}

.mobile-menu-content {
    padding-bottom: calc(30px + env(safe-area-inset-bottom)) !important;
}

/* bg-effects csak felül marad - nem megy le az aljáig */
@media (max-width: 768px) {
    .bg-effects {
        height: 60vh !important;
        max-height: 500px !important;
    }
}

/* ========== MARKETING BOOSTER - KISEBB KÁRTYÁK, KÖZÉPRE IGAZÍTVA ========== */
/* Desktop: 2 oszlop marad, de kisebb és középen */
@media (min-width: 768px) {
    .solutions-detailed-grid.two-col {
        grid-template-columns: repeat(2, 1fr) !important;
        max-width: 900px !important;
        margin: 0 auto !important;
    }
}

.solutions-detailed-grid .solution-detailed-card {
    text-align: center !important;
}

.solutions-detailed-grid .solution-header {
    justify-content: center !important;
    flex-direction: column !important;
    text-align: center !important;
    align-items: center !important;
}

.solutions-detailed-grid .solution-header > div {
    text-align: center !important;
}

.solutions-detailed-grid .solution-desc {
    text-align: center !important;
}

.solutions-detailed-grid .solution-features-list {
    text-align: left !important;
    display: inline-block !important;
}

.solutions-detailed-grid .solution-demo-box {
    max-width: 300px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}


/* ========== HOMEPAGE SPECIFIC (from index.php) ========== */



/* ========== HOMEPAGE SPECIFIC ========== */

        /* ========== HERO SECTION ========== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 120px 0 80px;
            position: relative;
        }
        
        .hero-content {
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: rgba(59, 130, 246, 0.1);
            border: 1px solid rgba(59, 130, 246, 0.2);
            border-radius: 100px;
            font-size: 0.8rem;
            color: var(--accent-blue);
            margin-bottom: 24px;
            animation: fadeInUp 0.8s ease-out;
        }
        
        .hero-badge-dot {
            width: 8px;
            height: 8px;
            background: var(--accent-green);
            border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.2); }
        }
        
        .hero h1 {
            font-size: clamp(2.2rem, 6vw, 4rem);
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 24px;
            animation: fadeInUp 0.8s ease-out 0.1s both;
        }
        
        .hero h1 .highlight {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
        }
        
        .hero h1 .highlight::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-primary);
            border-radius: 2px;
            transform: scaleX(0);
            animation: underline 0.8s ease-out 1s forwards;
        }
        
        @keyframes underline {
            to { transform: scaleX(1); }
        }
        
        .hero-desc {
            font-size: 1.15rem;
            color: var(--text-secondary);
            max-width: 650px;
            margin: 0 auto 32px;
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }
        
        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            justify-content: center;
            margin-bottom: 60px;
            animation: fadeInUp 0.8s ease-out 0.3s both;
        }
        
        .hero-buttons .btn {
            padding: 16px 32px;
            font-size: 1rem;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Hero Stats */
        .hero-stats {
            display: grid !important;
            grid-template-columns: repeat(2, 1fr) !important;
            gap: 16px;
            max-width: 100%;
            margin: 0 auto;
            animation: fadeInUp 0.8s ease-out 0.4s both;
            flex-wrap: initial;
        }
        
        .hero-stat {
            background: var(--bg-glass);
            border: 1px solid var(--border-glass);
            border-radius: 20px;
            padding: 28px 20px;
            text-align: center;
            backdrop-filter: blur(10px);
            transition: all 0.3s;
        }
        
        .hero-stat:hover {
            transform: translateY(-4px);
            border-color: rgba(59, 130, 246, 0.3);
            box-shadow: 0 10px 40px rgba(59, 130, 246, 0.1);
        }
        
        .hero-stat-value {
            font-size: 1.8rem;
            font-weight: 800;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            white-space: nowrap;
        }
        
        .hero-stat-label {
            font-size: 0.75rem;
            color: var(--text-muted);
            margin-top: 8px;
        }
        
        /* ========== PROBLEM SECTION ========== */
        .problem-section {
            padding: 100px 0;
            position: relative;
            text-align: center;
        }
        
        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--accent-red);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 16px;
        }
        
        .section-title {
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .section-desc {
            font-size: 1.1rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto 50px;
        }
        
        .problem-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .problem-card {
            background: var(--bg-glass);
            border: 1px solid var(--border-glass);
            border-radius: 20px;
            padding: 28px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 16px;
            transition: all 0.4s ease;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .problem-card.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .problem-card:hover {
            border-color: rgba(239, 68, 68, 0.3);
            background: rgba(239, 68, 68, 0.05);
            transform: translateX(8px);
        }
        
        .problem-icon {
            width: 56px;
            height: 56px;
            background: rgba(239, 68, 68, 0.1);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            flex-shrink: 0;
        }
        
        .problem-content h3 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 8px;
        }
        
        .problem-content p {
            font-size: 0.9rem;
            color: var(--text-muted);
        }
        
        .problem-result {
            margin-top: 50px;
            background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(249, 115, 22, 0.1) 100%);
            border: 1px solid rgba(239, 68, 68, 0.2);
            border-radius: 20px;
            padding: 32px;
            text-align: center;
        }
        
        .problem-result h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--accent-red);
        }
        
        .problem-result p {
            font-size: 1rem;
            color: var(--text-secondary);
        }
        
        .problem-result .highlight {
            color: var(--text-primary);
            font-weight: 600;
        }
        
        /* ========== SOLUTIONS SECTION ========== */
        .solutions-section {
            padding: 100px 0;
            text-align: center;
        }
        
        .solutions-section .section-label {
            color: var(--accent-blue);
        }
        
        .solutions-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }
        
        .solution-card {
            background: var(--bg-card);
            border: 1px solid var(--border-glass);
            border-radius: 24px;
            padding: 40px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            opacity: 0;
            transform: translateY(40px);
            text-align: center;
        }
        
        .solution-card.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .solution-icon {
            width: 72px;
            height: 72px;
            background: var(--icon-bg, rgba(59, 130, 246, 0.1));
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 24px;
            transition: transform 0.3s;
        }
        
        .solution-card:hover .solution-icon {
            transform: scale(1.1) rotate(-5deg);
        }
        
        .solution-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }
        
        .solution-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 12px;
            background: rgba(16, 185, 129, 0.1);
            border: 1px solid rgba(16, 185, 129, 0.2);
            border-radius: 100px;
            font-size: 0.7rem;
            font-weight: 600;
            color: var(--accent-green);
            margin-bottom: 20px;
        }
        
        .solution-badge.beta {
            background: rgba(249, 115, 22, 0.1);
            border-color: rgba(249, 115, 22, 0.2);
            color: var(--accent-orange);
        }
        
        .solution-icon {
            width: 72px;
            height: 72px;
            background: var(--icon-bg, rgba(59, 130, 246, 0.1));
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 24px;
            transition: transform 0.3s;
        }
        
        .solution-card:hover .solution-icon {
            transform: scale(1.1) rotate(-5deg);
        }
        
        .solution-card h3 {
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 8px;
        }
        
        .solution-card .subtitle {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-bottom: 20px;
        }
        
        .solution-card p.desc {
            font-size: 1rem;
            color: var(--text-secondary);
            margin-bottom: 28px;
            line-height: 1.7;
        }
        
        .solution-features {
            list-style: none;
            margin-bottom: 28px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .solution-features li {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 0;
            font-size: 0.95rem;
            color: var(--text-secondary);
            justify-content: center;
        }
        
        .solution-features li::before {
            content: '✓';
            width: 22px;
            height: 22px;
            background: rgba(16, 185, 129, 0.15);
            color: var(--accent-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            font-weight: bold;
            flex-shrink: 0;
            margin-top: 2px;
        }
        
        .solution-highlight {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 12px;
            padding: 16px 20px;
            margin-bottom: 28px;
        }
        
        .solution-highlight p {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin: 0;
        }
        
        .solution-highlight p strong {
            color: var(--text-primary);
        }
        
        .solution-results {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid var(--border-glass);
            justify-content: center;
        }
        
        .result-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 14px;
            background: rgba(16, 185, 129, 0.08);
            border-radius: 100px;
            font-size: 0.8rem;
            color: var(--accent-green);
        }
        
        .solution-card .btn {
            width: 100%;
            margin-top: 10px;
        }
        
        /* Card variations */
        .solution-card.blue {
            --card-gradient: var(--gradient-blue);
            --icon-bg: rgba(59, 130, 246, 0.1);
        }
        
        .solution-card.purple {
            --card-gradient: var(--gradient-purple);
            --icon-bg: rgba(139, 92, 246, 0.1);
        }
        
        .solution-card.orange {
            --card-gradient: linear-gradient(135deg, #f97316 0%, #eab308 100%);
            --icon-bg: rgba(249, 115, 22, 0.1);
        }
        
        .solution-card.cyan {
            --card-gradient: var(--gradient-cyan);
            --icon-bg: rgba(6, 182, 212, 0.1);
        }
        
        /* ========== WHO FOR SECTION ========== */
        .who-section {
            padding: 100px 0;
            text-align: center;
        }
        
        .who-section .section-label {
            color: var(--accent-purple);
        }
        
        .who-grid {
            display: grid;
            grid-template-columns: 1fr !important;
            gap: 16px;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .who-card {
            display: flex !important;
            flex-direction: row !important;
            align-items: center;
            gap: 16px;
            background: var(--bg-glass);
            border: 1px solid var(--border-glass);
            border-radius: 16px;
            padding: 20px 24px !important;
            transition: all 0.3s;
            opacity: 0;
            transform: translateY(20px);
            justify-content: center;
            text-align: left !important;
        }
        
        .who-card.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .who-card:hover {
            border-color: rgba(139, 92, 246, 0.3);
            background: rgba(139, 92, 246, 0.05);
            transform: translateY(-4px);
        }
        
        .who-icon {
            width: 48px;
            height: 48px;
            background: rgba(139, 92, 246, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            flex-shrink: 0;
            margin-bottom: 0 !important;
        }
        
        .who-card p {
            font-size: 1rem;
            color: var(--text-secondary);
        }
        
        /* ========== CTA SECTION ========== */
        .cta-section {
            padding: 100px 0;
        }
        
        .cta-box {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(139, 92, 246, 0.15) 50%, rgba(236, 72, 153, 0.15) 100%);
            border: 1px solid var(--border-glass);
            border-radius: 32px;
            padding: 60px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta-box::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 0deg, transparent, rgba(59, 130, 246, 0.1), transparent 30%);
            animation: rotate 10s linear infinite;
        }
        
        @keyframes rotate {
            100% { transform: rotate(360deg); }
        }
        
        .cta-content {
            position: relative;
            z-index: 1;
        }
        
        .cta-box h2 {
            font-size: clamp(1.6rem, 4vw, 2.4rem);
            font-weight: 800;
            margin-bottom: 16px;
        }
        
        .cta-box p {
            font-size: 1.1rem;
            color: var(--text-secondary);
            max-width: 500px;
            margin: 0 auto 32px;
        }
        
        .cta-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            justify-content: center;
        }
        
        /* ========== FOOTER ========== */
        footer {
            border-top: 1px solid var(--border-glass);
            padding: 60px 0 30px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-brand {
            max-width: 300px;
        }
        
        .footer-brand p {
            color: var(--text-muted);
            margin-top: 16px;
            font-size: 0.9rem;
            line-height: 1.7;
        }
        
        .footer-links-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }
        
        .footer-col h4 {
            font-size: 0.9rem;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--text-primary);
        }
        
        .footer-col ul {
            list-style: none;
        }
        
        .footer-col li {
            margin-bottom: 10px;
        }
        
        .footer-col a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.2s;
        }
        
        .footer-col a:hover {
            color: var(--accent-blue);
        }
        
        .footer-bottom {
            display: flex;
            flex-direction: column;
            gap: 16px;
            align-items: center;
            padding-top: 30px;
            border-top: 1px solid var(--border-glass);
            text-align: center;
        }
        
        .footer-bottom p {
            color: var(--text-muted);
            font-size: 0.85rem;
        }
        
        .footer-bottom a {
            color: var(--text-secondary);
            text-decoration: none;
        }
        
        .footer-bottom a:hover {
            color: var(--accent-blue);
        }
        
        /* ========== RESPONSIVE ========== */
        @media (min-width: 768px) {
            .nav-links {
                display: flex;
            }
            
            .mobile-menu-btn {
                display: none;
            }
            
            .hero-stats {
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 20px;
                max-width: 600px;
            }
            
            .hero-stat {
                padding: 32px 24px;
            }
            
            .hero-stat-value {
                font-size: 2.2rem;
            }
            
            .hero-stat-label {
                font-size: 0.8rem;
            }
            
            .problem-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .solutions-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .who-grid {
                grid-template-columns: repeat(2, 1fr) !important;
            }
            
            .footer-grid {
                grid-template-columns: 1.5fr 2fr;
            }
            
            .footer-links-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .footer-bottom {
                flex-direction: row;
                justify-content: space-between;
            }
        }
        
        @media (min-width: 1024px) {
            .hero-stats {
                grid-template-columns: repeat(4, 1fr) !important;
                max-width: 1100px;
                gap: 24px;
            }
            
            .hero-stat {
                padding: 36px 28px;
                border-radius: 24px;
            }
            
            .hero-stat-value {
                font-size: 2.6rem;
            }
            
            .hero-stat-label {
                font-size: 0.85rem;
                margin-top: 10px;
            }
            
            .solutions-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .who-grid {
                grid-template-columns: repeat(2, 1fr) !important;
            }
        }
        
        /* ========== ANIMATIONS ON SCROLL ========== */
        .fade-up {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Stagger animation delays */
        .stagger-1 { transition-delay: 0.1s; }
        .stagger-2 { transition-delay: 0.2s; }
        .stagger-3 { transition-delay: 0.3s; }
        .stagger-4 { transition-delay: 0.4s; }
        
        /* Counter animation */
        .counter {
            display: inline-block;
        }

/* ========== LEGAL PAGES ========== */
.legal-page {
    padding: 140px 0 80px;
}

.legal-header {
    text-align: center;
    margin-bottom: 60px;
}

.legal-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 12px;
}

.legal-updated {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.legal-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 1024px) {
    .legal-content {
        grid-template-columns: 250px 1fr;
    }
}

.legal-nav {
    position: sticky;
    top: 100px;
    align-self: start;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 24px;
}

.legal-nav h4 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.legal-nav ul {
    list-style: none;
}

.legal-nav li {
    margin-bottom: 8px;
}

.legal-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.legal-nav a:hover {
    color: var(--accent-blue);
}

.legal-body section {
    margin-bottom: 48px;
    scroll-margin-top: 100px;
}

.legal-body h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-glass);
}

.legal-body h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 24px 0 12px;
}

.legal-body p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-body ul {
    list-style: none;
    margin-bottom: 16px;
}

.legal-body ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.legal-body ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-blue);
}

.legal-body a {
    color: var(--accent-blue);
    text-decoration: none;
}

.legal-body a:hover {
    text-decoration: underline;
}

.legal-info-box {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 20px;
    margin: 16px 0;
}

.legal-info-box p {
    margin-bottom: 6px;
}

.legal-info-box p:last-child {
    margin-bottom: 0;
}

/* Cookie table */
.cookie-table {
    overflow-x: auto;
    margin: 16px 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.cookie-table th {
    text-align: left;
    padding: 12px 16px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--text-primary);
    font-weight: 600;
    border-bottom: 1px solid var(--border-glass);
}

.cookie-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-glass);
    color: var(--text-secondary);
}

.cookie-table code {
    background: rgba(255, 255, 255, 0.05);
    padding: 2px 8px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.85rem;
    color: var(--accent-cyan);
}

@media (max-width: 768px) {
    .legal-nav {
        position: static;
    }
}

/* ========== COOKIE CONSENT BANNER ========== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-glass);
    padding: 16px 0;
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-banner-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.cookie-link {
    color: var(--accent-blue);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.cookie-slide-enter-active,
.cookie-slide-leave-active {
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.cookie-slide-enter-from,
.cookie-slide-leave-to {
    transform: translateY(100%);
    opacity: 0;
}

/* ========== AI CHAT PAGE STYLES ========== */

/* Hero Chat Animation */
.chat-animation {
    position: relative;
    max-width: 340px;
    margin: 0 auto;
}

.chat-window {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(6, 182, 212, 0.15);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(6, 182, 212, 0.1);
}

.chat-header-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: rgba(6, 182, 212, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.chat-avatar-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gradient-cyan);
    flex-shrink: 0;
}

.chat-bot-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #f8fafc;
}

.chat-status {
    font-size: 0.7rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 4px;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b981;
    display: inline-block;
}

.chat-messages {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 260px;
}

.chat-msg {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 16px;
    font-size: 0.82rem;
    line-height: 1.5;
    opacity: 0;
    animation: chatMsgIn 0.4s ease forwards;
}

.chat-msg.bot {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #e2e8f0;
    border-bottom-left-radius: 4px;
}

.chat-msg.user {
    align-self: flex-end;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(59, 130, 246, 0.2));
    border: 1px solid rgba(6, 182, 212, 0.15);
    color: #f0f9ff;
    border-bottom-right-radius: 4px;
}

.chat-msg.lead-capture {
    border-color: rgba(16, 185, 129, 0.2);
    background: rgba(16, 185, 129, 0.08);
}

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

/* Missed Leads Card */
.missed-leads-card {
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(239, 68, 68, 0.15);
    border-radius: 16px;
    overflow: hidden;
}

.missed-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    background: rgba(239, 68, 68, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.85rem;
    color: #94a3b8;
}

.missed-content {
    padding: 12px;
}

.missed-line {
    display: grid;
    grid-template-columns: 50px 1fr auto;
    gap: 10px;
    align-items: center;
    padding: 10px 8px;
    border-radius: 8px;
    font-size: 0.82rem;
    opacity: 0;
    animation: chatMsgIn 0.4s ease forwards;
    animation-delay: var(--delay);
}

.missed-line:hover {
    background: rgba(255, 255, 255, 0.02);
}

.missed-time {
    color: #64748b;
    font-family: monospace;
    font-size: 0.78rem;
}

.missed-q {
    color: #cbd5e1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.missed-status {
    color: #ef4444;
    font-size: 0.75rem;
    white-space: nowrap;
}

.missed-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 8px;
    margin-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.85rem;
    color: #94a3b8;
}

.missed-value {
    color: #ef4444;
    font-weight: 700;
    font-size: 1rem;
}

/* Demo Chat Card */
.demo-chat-card {
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(6, 182, 212, 0.12);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(6, 182, 212, 0.08);
}

.demo-chat-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: rgba(6, 182, 212, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.demo-avatar {
    font-size: 1.5rem;
}

.demo-chat-header strong {
    display: block;
    font-size: 0.9rem;
    color: #f8fafc;
}

.demo-status {
    font-size: 0.72rem;
    color: #10b981;
}

.demo-chat-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 340px;
    overflow-y: auto;
}

.demo-msg {
    max-width: 88%;
    padding: 10px 14px;
    border-radius: 16px;
    font-size: 0.85rem;
    line-height: 1.5;
    color: #e2e8f0;
}

.demo-msg.bot {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom-left-radius: 4px;
}

.demo-msg.user {
    align-self: flex-end;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(59, 130, 246, 0.15));
    border: 1px solid rgba(6, 182, 212, 0.12);
    border-bottom-right-radius: 4px;
}

.demo-chat-input {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.82rem;
    color: #475569;
}

.send-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gradient-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: white;
}

/* Demo Highlights */
.demo-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.demo-highlight-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    transition: all 0.3s;
}

.demo-highlight-item:hover {
    border-color: rgba(6, 182, 212, 0.2);
    background: rgba(6, 182, 212, 0.03);
}

.demo-highlight-item .highlight-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.demo-highlight-item strong {
    display: block;
    font-size: 0.9rem;
    color: #f8fafc;
    margin-bottom: 4px;
}

.demo-highlight-item p {
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.4;
    margin: 0;
}

/* Comparison List */
.comparison-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 24px;
}

.comparison-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 10px;
}

.comp-old {
    font-size: 0.82rem;
    color: #64748b;
    text-decoration: line-through;
    text-decoration-color: rgba(239, 68, 68, 0.4);
}

.comp-new {
    font-size: 0.88rem;
    color: #10b981;
    font-weight: 500;
}
    
/* ============================================================
   HOME V3 - REDESIGNED SECTIONS
   ============================================================ */

/* ---------- HERO V3 ---------- */
.hero-v3 {
    padding: 140px 0 80px;
    position: relative;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}
@media (min-width: 960px) {
    .hero-grid { grid-template-columns: 1fr 1fr; }
}
.hero-left h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 20px 0 24px;
    color: var(--text-primary);
}
.gradient-text-hero {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 520px;
}
.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.btn-lg {
    padding: 16px 32px !important;
    font-size: 1rem !important;
}
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 28px;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.2s;
}
.btn-ghost:hover { color: var(--text-primary); background: rgba(255,255,255,0.04); }
.hero-trust-row {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.trust-check { color: var(--accent-green); font-weight: 600; }
.trust-sep { opacity: 0.3; margin: 0 4px; }

/* Hero Visual */
.hero-visual {
    position: relative;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1;
    margin: 0 auto;
}
.hero-shield-wrap {
    position: absolute;
    inset: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
}
.ring-outer {
    inset: 0;
    border-color: rgba(59,130,246,0.08);
    animation: heroRingSpin 30s linear infinite;
}
.ring-middle {
    inset: 15%;
    border-color: rgba(139,92,246,0.12);
    animation: heroRingSpin 20s linear infinite reverse;
}
.ring-inner {
    inset: 30%;
    border-color: rgba(236,72,153,0.1);
    animation: heroRingSpin 15s linear infinite;
}
@keyframes heroRingSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.hero-shield-core {
    position: relative;
    z-index: 2;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59,130,246,0.1);
    border: 1px solid rgba(59,130,246,0.2);
    border-radius: 50%;
    font-size: 2.4rem;
    box-shadow: 0 0 60px rgba(59,130,246,0.15);
}
.hero-orbit-item {
    position: absolute;
    font-size: 1.4rem;
    animation: heroOrbit 12s linear infinite;
    opacity: 0.7;
}
.orb-1 { top: 8%; left: 50%; animation-delay: 0s; }
.orb-2 { bottom: 12%; left: 10%; animation-delay: -4s; }
.orb-3 { bottom: 15%; right: 8%; animation-delay: -8s; }
@keyframes heroOrbit {
    0%, 100% { transform: translate(0,0) scale(1); opacity: 0.7; }
    25% { transform: translate(15px,-10px) scale(1.1); opacity: 1; }
    50% { transform: translate(0,-20px) scale(1); opacity: 0.5; }
    75% { transform: translate(-15px,-10px) scale(0.9); opacity: 0.8; }
}
.hero-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(15,23,42,0.85);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    backdrop-filter: blur(12px);
    z-index: 3;
    animation: heroFloat 6s ease-in-out infinite;
}
.hfc-1 { top: 5%; right: 0; animation-delay: 0s; }
.hfc-2 { bottom: 20%; left: -5%; animation-delay: -2s; }
.hfc-3 { bottom: 5%; right: 5%; animation-delay: -4s; }
@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.hero-float-card strong { display: block; color: var(--text-primary); font-size: 1rem; }
.hero-float-card small { display: block; color: var(--text-muted); font-size: 0.72rem; }
.hfc-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 700;
    flex-shrink: 0;
}
.hfc-icon.green { background: rgba(16,185,129,0.12); color: #10b981; }
.hfc-icon.red { background: rgba(239,68,68,0.12); color: #ef4444; }
.hfc-icon.blue { background: rgba(59,130,246,0.12); color: #3b82f6; }

@media (max-width: 959px) {
    .hero-right { display: none; }
}

/* ---------- HOME STATS BAR ---------- */
.home-stats-bar {
    padding: 40px 0;
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    background: rgba(255,255,255,0.01);
}

/* ---------- SECTION INTRO (shared) ---------- */
.section-intro { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-intro h2 {
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: var(--text-primary);
    margin: 12px 0 16px;
    line-height: 1.2;
}
.section-sub { color: var(--text-secondary); font-size: 1.05rem; line-height: 1.6; }

/* ---------- PROBLEM V3 ---------- */
.home-problem { padding: 100px 0; }
.problem-grid-v3 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}
.problem-card-v3 {
    padding: 28px;
    background: rgba(239,68,68,0.03);
    border: 1px solid rgba(239,68,68,0.08);
    border-radius: 16px;
    transition: all 0.25s;
}
.problem-card-v3:hover { border-color: rgba(239,68,68,0.18); transform: translateY(-2px); }
.pc-icon { font-size: 1.8rem; margin-bottom: 14px; }
.problem-card-v3 h3 { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.problem-card-v3 p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; }
.problem-result-v3 {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px 32px;
    background: rgba(249,115,22,0.04);
    border: 1px solid rgba(249,115,22,0.1);
    border-radius: 16px;
    max-width: 700px;
    margin: 0 auto;
}
.pr-arrow { font-size: 1.6rem; color: var(--accent-orange); flex-shrink: 0; margin-top: 2px; }
.problem-result-v3 h3 { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; }
.problem-result-v3 p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }
.problem-result-v3 em { color: var(--accent-orange); font-style: normal; font-weight: 600; }

/* ---------- SOLUTIONS V3 ---------- */
.home-solutions { padding: 100px 0; }
.solutions-grid-v3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
@media (min-width: 768px) { .solutions-grid-v3 { grid-template-columns: 1fr 1fr; } }
.sol-card {
    display: flex;
    flex-direction: column;
    padding: 32px;
    border-radius: 20px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid;
}
.sol-card:hover { transform: translateY(-4px); }
.sol-blue { background: rgba(59,130,246,0.04); border-color: rgba(59,130,246,0.12); }
.sol-blue:hover { border-color: rgba(59,130,246,0.25); box-shadow: 0 12px 40px rgba(59,130,246,0.08); }
.sol-orange { background: rgba(249,115,22,0.04); border-color: rgba(249,115,22,0.12); }
.sol-orange:hover { border-color: rgba(249,115,22,0.25); box-shadow: 0 12px 40px rgba(249,115,22,0.08); }
.sol-purple { background: rgba(139,92,246,0.04); border-color: rgba(139,92,246,0.12); }
.sol-purple:hover { border-color: rgba(139,92,246,0.25); box-shadow: 0 12px 40px rgba(139,92,246,0.08); }
.sol-cyan { background: rgba(6,182,212,0.04); border-color: rgba(6,182,212,0.12); }
.sol-cyan:hover { border-color: rgba(6,182,212,0.25); box-shadow: 0 12px 40px rgba(6,182,212,0.08); }
.sol-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 100px;
    background: rgba(255,255,255,0.06);
    color: var(--text-secondary);
}
.sol-badge.beta { background: rgba(249,115,22,0.12); color: var(--accent-orange); }
.sol-top { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.sol-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}
.sol-icon-wrap.blue { background: rgba(59,130,246,0.1); }
.sol-icon-wrap.orange { background: rgba(249,115,22,0.1); }
.sol-icon-wrap.purple { background: rgba(139,92,246,0.1); }
.sol-icon-wrap.cyan { background: rgba(6,182,212,0.1); }
.sol-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--text-primary); }
.sol-card > p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 16px; flex: 1; }
.sol-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.sol-tags span {
    padding: 4px 10px;
    background: rgba(255,255,255,0.04);
    border-radius: 100px;
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 500;
}
.sol-link { font-size: 0.88rem; font-weight: 600; color: var(--accent-blue); }
.sol-blue .sol-link { color: var(--accent-blue); }
.sol-orange .sol-link { color: var(--accent-orange); }
.sol-purple .sol-link { color: var(--accent-purple); }
.sol-cyan .sol-link { color: var(--accent-cyan); }

/* ---------- HOW IT WORKS ---------- */
.home-how { padding: 100px 0; }
.how-steps {
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.how-step {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding-bottom: 48px;
}
.how-step:last-child { padding-bottom: 0; }
.step-num {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--accent-blue);
    background: rgba(59,130,246,0.08);
    border: 1px solid rgba(59,130,246,0.15);
    border-radius: 12px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}
.step-line {
    position: absolute;
    left: 22px;
    top: 52px;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, rgba(59,130,246,0.2), transparent);
}
.how-step:last-child .step-line { display: none; }
.step-content { flex: 1; padding-top: 6px; }
.step-icon { font-size: 1.6rem; margin-bottom: 10px; }
.step-content h3 { font-size: 1.05rem; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.step-content p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }

/* ---------- TESTIMONIALS ---------- */
.home-testimonials { padding: 100px 0; }
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card {
    padding: 28px;
    border-radius: 20px;
    border: 1px solid var(--border-glass);
    background: rgba(15,23,42,0.4);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.25s;
}
.testimonial-card:hover { transform: translateY(-3px); border-color: rgba(255,255,255,0.1); }
.tc-blue { border-left: 3px solid rgba(59,130,246,0.4); }
.tc-purple { border-left: 3px solid rgba(139,92,246,0.4); }
.tc-green { border-left: 3px solid rgba(16,185,129,0.4); }
.tc-stars { color: #eab308; font-size: 0.85rem; letter-spacing: 2px; }
.tc-text { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.65; font-style: italic; flex: 1; }
.tc-author { display: flex; align-items: center; gap: 12px; }
.tc-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
    flex-shrink: 0;
}
.tc-author strong { display: block; font-size: 0.88rem; color: var(--text-primary); }
.tc-author span { display: block; font-size: 0.75rem; color: var(--text-muted); }
.tc-result {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(16,185,129,0.05);
    border: 1px solid rgba(16,185,129,0.1);
    border-radius: 10px;
}
.tc-metric { font-weight: 700; font-size: 0.92rem; color: var(--accent-green); }
.tc-period { font-size: 0.78rem; color: var(--text-muted); }

/* ---------- WHO V3 ---------- */
.home-who { padding: 100px 0; }
.who-grid-v3 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}
.who-card-v3 {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-glass);
    border-radius: 14px;
    transition: all 0.2s;
}
.who-card-v3:hover { border-color: rgba(255,255,255,0.1); background: rgba(255,255,255,0.03); }
.wc-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.who-card-v3 p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.55; }
.who-card-v3 strong { color: var(--text-primary); }

/* ---------- PRICING PREVIEW ---------- */
.home-pricing-preview { padding: 100px 0; }
.pricing-preview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto 32px;
}
@media (min-width: 640px) { .pricing-preview-grid { grid-template-columns: repeat(3, 1fr); } }
.pp-card {
    text-align: center;
    padding: 28px 20px;
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    background: rgba(255,255,255,0.02);
    position: relative;
    transition: all 0.25s;
}
.pp-card:hover { border-color: rgba(255,255,255,0.1); }
.pp-card.featured {
    border-color: rgba(59,130,246,0.25);
    background: rgba(59,130,246,0.04);
    transform: scale(1.02);
}
.pp-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.68rem;
    font-weight: 700;
    padding: 3px 12px;
    background: var(--gradient-primary);
    color: #fff;
    border-radius: 100px;
    white-space: nowrap;
}
.pp-card h4 { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.pp-price { margin-bottom: 8px; color: var(--text-secondary); font-size: 0.9rem; }
.pp-price strong { font-size: 1.5rem; font-weight: 800; color: var(--text-primary); }
.pp-card > p { font-size: 0.8rem; color: var(--text-muted); }
.pricing-preview-cta { text-align: center; }

/* ---------- HOME CTA V3 ---------- */
.home-cta { padding: 100px 0 120px; }
.cta-box-v3 {
    position: relative;
    text-align: center;
    padding: 64px 40px;
    border-radius: 24px;
    border: 1px solid rgba(59,130,246,0.15);
    background: rgba(59,130,246,0.03);
    overflow: hidden;
}
.cta-glow {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 200px;
    background: radial-gradient(ellipse, rgba(59,130,246,0.12), transparent);
    pointer-events: none;
}
.cta-box-v3 h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 14px;
    position: relative;
}
.cta-box-v3 > p { color: var(--text-secondary); margin-bottom: 28px; max-width: 480px; margin-left: auto; margin-right: auto; position: relative; }
.cta-box-v3 .cta-buttons { justify-content: center; position: relative; }
.cta-trust {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 28px;
    font-size: 0.8rem;
    color: var(--text-muted);
    position: relative;
}

