/* ===== CSS RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary: #25D366;
    --primary-dark: #128C7E;
    --primary-light: #DCF8C6;
    --accent: #00C853;
    --dark: #0A0F1C;
    --dark-light: #1A1F2E;
    --dark-card: #12172B;
    --text: #FFFFFF;
    --text-muted: #8B95A5;
    --text-secondary: #B0BEC5;
    --gradient-start: #25D366;
    --gradient-end: #00C853;
    --border: rgba(255, 255, 255, 0.08);
    --glow: rgba(37, 211, 102, 0.3);

    /* Typography */
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --container: 1200px;
    --section-padding: 100px;

    /* Effects */
    --radius: 16px;
    --radius-sm: 8px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== SCROLL ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes glow-pulse {

    0%,
    100% {
        box-shadow: 0 0 20px var(--glow);
    }

    50% {
        box-shadow: 0 0 40px var(--glow), 0 0 60px var(--glow);
    }
}

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

    100% {
        background-position: 200% 0;
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
}

.animate-fade-up {
    animation: fadeInUp 0.8s ease forwards;
}

.animate-fade-left {
    animation: fadeInLeft 0.8s ease forwards;
}

.animate-fade-right {
    animation: fadeInRight 0.8s ease forwards;
}

.animate-scale {
    animation: fadeInScale 0.6s ease forwards;
}

.animate-slide-up {
    animation: slideInUp 0.9s ease forwards;
}

/* Staggered animations for cards */
.stagger-1 {
    animation-delay: 0.1s;
}

.stagger-2 {
    animation-delay: 0.2s;
}

.stagger-3 {
    animation-delay: 0.3s;
}

.stagger-4 {
    animation-delay: 0.4s;
}

.stagger-5 {
    animation-delay: 0.5s;
}

/* Floating animation for visuals */
.float-animation {
    animation: float 3s ease-in-out infinite;
}

/* Glow pulse for CTAs */
.glow-animation {
    animation: glow-pulse 2s ease-in-out infinite;
}

/* Shimmer effect for badges */
.shimmer {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(10, 15, 28, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
    font-weight: 800;
}

.brand-icon {
    font-size: 1.8rem;
}

.brand-ai {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-cta {
    display: flex;
    gap: 12px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: var(--transition);
}

/* ===== LANGUAGE SWITCHER ===== */
.lang-switcher {
    display: flex;
    gap: 4px;
    margin-left: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 4px;
}

.lang-btn {
    padding: 6px 12px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 16px;
    transition: var(--transition);
}

.lang-btn:hover {
    color: var(--text);
}

.lang-btn.active {
    background: var(--primary);
    color: white;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    box-shadow: 0 4px 20px var(--glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--glow);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
    border: 1px solid var(--border);
}

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

.btn-ghost {
    background: transparent;
    color: var(--text);
}

.btn-ghost:hover {
    color: var(--primary);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
    width: 100%;
    justify-content: center;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.05rem;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-glow {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse, var(--glow), transparent 70%);
    filter: blur(80px);
    opacity: 0.5;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 24px;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
}

.title-line {
    display: block;
}

.title-gradient {
    display: block;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-subtitle strong {
    color: var(--primary);
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Phone Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 320px;
    background: var(--dark-card);
    border-radius: 40px;
    padding: 12px;
    box-shadow:
        0 50px 100px rgba(0, 0, 0, 0.5),
        0 0 0 1px var(--border);
}

.phone-screen {
    background: linear-gradient(180deg, #0D1421, #0A0F1C);
    border-radius: 32px;
    padding: 20px 16px;
    min-height: 400px;
}

.chat-bubble {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 18px;
    margin-bottom: 12px;
    position: relative;
}

.chat-bubble.incoming {
    background: var(--dark-light);
    border-bottom-left-radius: 4px;
}

.chat-bubble.outgoing {
    background: var(--primary-dark);
    margin-left: auto;
    border-bottom-right-radius: 4px;
}

.chat-bubble.ai {
    background: linear-gradient(135deg, var(--primary-dark), #0D7B4C);
}

.ai-badge {
    display: inline-block;
    font-size: 0.7rem;
    padding: 2px 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    margin-bottom: 6px;
}

.chat-text {
    display: block;
    font-size: 0.9rem;
    line-height: 1.4;
}

.chat-time {
    display: block;
    font-size: 0.7rem;
    opacity: 0.6;
    text-align: right;
    margin-top: 4px;
}

.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 12px 16px;
    background: var(--dark-light);
    border-radius: 18px;
    width: fit-content;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: var(--text-muted);
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {

    0%,
    60%,
    100% {
        transform: translateY(0);
        opacity: 0.6;
    }

    30% {
        transform: translateY(-4px);
        opacity: 1;
    }
}

/* ===== TRUST BAR ===== */
.trust-bar {
    background: var(--dark-card);
    padding: 40px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-icon {
    font-size: 1.5rem;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
}

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

.trust-text {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== SECTION STYLES ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.section-badge.success {
    background: rgba(37, 211, 102, 0.1);
    border-color: rgba(37, 211, 102, 0.3);
    color: var(--primary);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* ===== PROBLEM SECTION ===== */
.problem-section {
    padding: var(--section-padding) 0;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.problem-card {
    background: var(--dark-card);
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition);
}

.problem-card:hover {
    border-color: rgba(255, 100, 100, 0.3);
    transform: translateY(-4px);
}

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

.problem-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.problem-result {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    background: rgba(255, 100, 100, 0.1);
    border: 1px solid rgba(255, 100, 100, 0.2);
    border-radius: var(--radius);
}

.result-icon {
    font-size: 1.5rem;
}

.problem-result p {
    font-size: 1.1rem;
    color: #FF6B6B;
}

/* ===== SOLUTION SECTION ===== */
.solution-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--dark), var(--dark-light));
}

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

.solution-card {
    background: var(--dark-card);
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition);
}

.solution-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.1);
}

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

.solution-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

/* ===== FEATURES SECTION ===== */
.features-section {
    padding: var(--section-padding) 0;
}

.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.feature-block.reverse {
    direction: rtl;
}

.feature-block.reverse>* {
    direction: ltr;
}

.feature-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.feature-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.feature-title .highlight {
    color: var(--primary);
}

.feature-list {
    list-style: none;
    margin-bottom: 24px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    font-size: 1.05rem;
    color: var(--text-secondary);
}

.feature-list .check {
    color: var(--primary);
    font-weight: bold;
}

.feature-result {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(37, 211, 102, 0.1);
    border-radius: var(--radius-sm);
    font-weight: 500;
}

.feature-result.highlight {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.feature-result small {
    color: var(--text-muted);
    font-weight: 400;
}

/* Feature Visuals */
.feature-visual {
    display: flex;
    justify-content: center;
}

.ai-demo-card {
    background: var(--dark-card);
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    min-width: 300px;
}

.ai-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-weight: 600;
}

.ai-status {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.ai-metrics {
    display: flex;
    gap: 24px;
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

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

/* Automation Flow */
.automation-flow {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 24px;
    background: var(--dark-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px;
    background: var(--dark-light);
    border-radius: var(--radius-sm);
    min-width: 80px;
}

.flow-icon {
    font-size: 1.5rem;
}

.flow-step span:last-child {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.flow-arrow {
    color: var(--primary);
    font-size: 1.5rem;
}

/* Campaign Stats */
.campaign-stats {
    width: 100%;
    max-width: 400px;
    background: var(--dark-card);
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.campaign-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.bar-label {
    width: 80px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.bar-track {
    flex: 1;
    height: 8px;
    background: var(--dark-light);
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    border-radius: 4px;
    transition: width 1s ease;
}

.bar-value {
    width: 40px;
    text-align: right;
    font-weight: 600;
    color: var(--primary);
}

/* Revenue Card */
.revenue-card {
    background: linear-gradient(135deg, var(--dark-card), var(--dark-light));
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    text-align: center;
}

.revenue-header {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.revenue-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.revenue-change {
    font-size: 0.9rem;
    font-weight: 600;
}

.revenue-change.positive {
    color: var(--accent);
}

/* Dashboard Preview */
.dashboard-preview {
    background: var(--dark-card);
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.dashboard-chart {
    height: 120px;
    background: linear-gradient(180deg, rgba(37, 211, 102, 0.1), transparent);
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    padding: 12px;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.dashboard-chart::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background:
        repeating-linear-gradient(0deg,
            transparent,
            transparent 20px,
            rgba(255, 255, 255, 0.03) 20px,
            rgba(255, 255, 255, 0.03) 21px);
}

.dashboard-chart .bar {
    width: 12%;
    background: linear-gradient(180deg, var(--primary), var(--primary-dark));
    border-radius: 4px 4px 0 0;
    animation: chart-grow 1.5s ease-out forwards;
    opacity: 0;
    transform-origin: bottom;
}

.dashboard-chart .bar:nth-child(1) {
    height: 45%;
    animation-delay: 0.1s;
}

.dashboard-chart .bar:nth-child(2) {
    height: 65%;
    animation-delay: 0.2s;
}

.dashboard-chart .bar:nth-child(3) {
    height: 40%;
    animation-delay: 0.3s;
}

.dashboard-chart .bar:nth-child(4) {
    height: 80%;
    animation-delay: 0.4s;
}

.dashboard-chart .bar:nth-child(5) {
    height: 55%;
    animation-delay: 0.5s;
}

.dashboard-chart .bar:nth-child(6) {
    height: 90%;
    animation-delay: 0.6s;
}

.dashboard-chart .bar:nth-child(7) {
    height: 70%;
    animation-delay: 0.7s;
}

@keyframes chart-grow {
    0% {
        opacity: 0;
        transform: scaleY(0);
    }

    100% {
        opacity: 1;
        transform: scaleY(1);
    }
}

.dashboard-metrics {
    display: flex;
    justify-content: space-around;
    font-weight: 600;
}

/* ===== SECURITY SECTION ===== */
.security-section {
    padding: var(--section-padding) 0;
    background: var(--dark-light);
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.security-card {
    background: var(--dark-card);
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition);
}

.security-card:hover {
    border-color: var(--primary);
}

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

.security-card h3 {
    font-size: 0.9rem;
    font-weight: 600;
}

/* ===== AUDIENCE SECTION ===== */
.audience-section {
    padding: var(--section-padding) 0;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.audience-card {
    background: var(--dark-card);
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition);
}

.audience-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.audience-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 16px;
}

.audience-card h3 {
    font-size: 1rem;
    font-weight: 600;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--dark-light), var(--dark));
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: var(--dark-card);
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.testimonial-content {
    margin-bottom: 24px;
}

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

.testimonial-content strong {
    color: var(--primary);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--dark-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.author-name {
    display: block;
    font-weight: 600;
}

.author-title {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===== PRICING ===== */
.pricing-section {
    padding: var(--section-padding) 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pricing-card {
    background: var(--dark-card);
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
}

.pricing-card.popular {
    border-color: var(--primary);
    box-shadow: 0 0 40px var(--glow);
}

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

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

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.pricing-header p {
    color: var(--text-muted);
}

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

.pricing-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: top;
}

.pricing-price .amount {
    font-size: 3rem;
    font-weight: 800;
}

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

.pricing-price .period {
    color: var(--text-muted);
}

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

.pricing-features li {
    padding: 8px 0;
    color: var(--text-secondary);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--dark), var(--dark-light));
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-wrapper {
    background: var(--dark-card);
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    background: var(--dark-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 1rem;
    font-family: var(--font);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238B95A5' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-group select option {
    background: var(--dark-card);
    color: var(--text);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button {
    grid-column: 1 / -1;
    margin-top: 10px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: var(--dark-card);
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.info-card:hover {
    border-color: var(--primary);
    transform: translateX(5px);
}

.info-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.info-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}

.info-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.social-links {
    display: flex;
    gap: 12px;
    padding-top: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 1.5rem;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    border-color: var(--primary);
    background: rgba(37, 211, 102, 0.1);
    transform: translateY(-3px);
}

/* ===== FINAL CTA ===== */
.final-cta {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--dark-card), var(--dark));
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.final-cta p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

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

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

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.25rem;
    font-weight: 700;
}

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

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

.footer-links a:hover {
    color: var(--primary);
}

.footer-badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-badge {
    font-size: 0.8rem;
    color: var(--text-muted);
    padding: 6px 12px;
    background: var(--dark-light);
    border-radius: var(--radius-sm);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

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

.footer-bottom .designer-credit {
    margin-top: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
    opacity: 0.8;
}

.footer-bottom .designer-credit .heart {
    color: #E040FB;
    font-size: 0.9rem;
}

.footer-bottom .designer-credit::before {
    content: '';
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle {
        margin: 0 auto 32px;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .feature-block,
    .feature-block.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
        direction: ltr;
    }

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

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

@media (max-width: 768px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .solution-grid,
    .audience-grid,
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .problem-grid,
    .security-grid {
        grid-template-columns: 1fr;
    }

    .trust-stats {
        gap: 24px;
    }

    .stat-item {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== NEW UX IMPROVEMENTS ===== */

/* Micro CTA Box (Revenue Section) */
.micro-cta-box {
    margin-top: 20px;
    padding: 20px;
    background: rgba(37, 211, 102, 0.08);
    border: 1px solid rgba(37, 211, 102, 0.2);
    border-radius: var(--radius);
    text-align: center;
}

.micro-cta-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.micro-cta-text strong {
    color: var(--primary);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Visual Caption (Dashboard) */
.visual-caption {
    margin-top: 16px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Feature Visual - flex direction for stacked items */
.feature-visual {
    flex-direction: column;
    align-items: center;
}

/* Audience Tags (Persona Descriptions) */
.audience-tag {
    display: block;
    margin-top: 12px;
    font-size: 0.8rem;
    color: var(--primary);
    opacity: 0.9;
}

/* Company Badge (Testimonials) */
.company-badge {
    display: inline-block;
    margin-top: 8px;
    padding: 4px 10px;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.2);
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--primary);
}

.author-title strong {
    color: var(--primary);
}

/* Risk Reversal (Pricing) */
.risk-reversal {
    margin-top: 16px;
    padding: 10px;
    background: rgba(37, 211, 102, 0.1);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    color: var(--primary);
    text-align: center;
}

/* Micro Reassurance (Final CTA) */
.micro-reassurance {
    margin-top: 24px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Responsive adjustments for new elements */
@media (max-width: 768px) {
    .micro-cta-box {
        padding: 16px;
    }

    .micro-cta-text {
        font-size: 0.85rem;
    }

    .audience-tag {
        font-size: 0.75rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-wrapper {
        padding: 24px;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .social-links {
        justify-content: center;
    }
}