/* ===============================================
   Bringer Landing Page - Main Stylesheet
   =============================================== */

/* CSS Variables for Design System */
:root {
    /* Colors */
    --primary-blue: #1E3A8A;
    --secondary-cyan: #0EA5E9;
    --accent-yellow: #FFD700;
    --accent-blue-light: #60A5FA;
    --primary-blue-dark: #1E40AF;

    --gradient-primary: linear-gradient(135deg, #2563EB, #1D4ED8);
    --gradient-festive: linear-gradient(135deg, #FFF7ED, #EFF6FF);
    /* Subtle background */
    --gradient-blue: linear-gradient(135deg, #1E3A8A, #3B82F6);
    --gradient-highlight: linear-gradient(135deg, #2563EB, #60A5FA);
    --whatsapp-green: #25D366;

    /* Neutral Colors */
    --white: #FFFFFF;
    --cream: #FFFBEB;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;

    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-base: 300ms ease-in-out;
    --transition-slow: 500ms ease-in-out;
}

/* ===============================================
   Variables & Reset
   =============================================== */
:root {
    /* Colors */
    --primary: #2563EB;
    --primary-dark: #1D4ED8;
    --secondary: #0F172A;
    --accent: #FFD700;
    /* Yellow */
    --success: #10B981;
    --danger: #EF4444;

    /* Grays */
    --white: #FFFFFF;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-800: #1E293B;
    --gray-900: #0F172A;

    /* Spacing */
    --spacing-xs: 0.5rem;
    /* 8px */
    --spacing-sm: 1rem;
    /* 16px */
    --spacing-md: 2rem;
    /* 32px */
    --spacing-lg: 4rem;
    /* 64px */
    --spacing-xl: 8rem;
    /* 128px */

    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--gray-800);
    line-height: 1.6;
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--gray-900);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* ===============================================
   Buttons
   =============================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    text-decoration: none;
}

/* Button Overrides for Festive Theme */
.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    border-radius: 100px;
    /* Pillow shape for consistency */
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

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

.btn-white:hover {
    background-color: var(--gray-50);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    border-radius: 100px;
}

.btn-outline:hover {
    background: var(--gray-50);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* ===============================================
   Navigation
   =============================================== */
/* Navbar transparent initially for poster look */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    /* Changed from background: rgba(255, 255, 255, 0.9); */
    transition: background 0.3s ease, padding 0.3s ease;
    z-index: 1000;
    border-bottom: 1px solid transparent;
    padding: 1rem 0;
}

/* Add background on scroll */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-100);
    padding: 0.75rem 0;
    box-shadow: var(--shadow-sm);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo {
    height: 32px;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--gray-900);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

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

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

.mobile-menu-toggle {
    display: none;
}

/* ===============================================
   Hero Section
   =============================================== */
.hero {
    padding-top: 8rem;
    padding-bottom: var(--spacing-lg);
    position: relative;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at top right, var(--gray-50), transparent 70%);
    z-index: -1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--gray-100);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

.hero-headline {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-subheadline {
    font-size: 1.25rem;
    color: var(--gray-600);
    font-weight: 400;
    margin-bottom: 2rem;
    max-width: 90%;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.hero-trust {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: var(--gray-500);
}

.hero-visual {
    position: relative;
}

.browser-frame {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.browser-header {
    background: var(--gray-50);
    padding: 0.75rem 1rem;
    display: flex;
    gap: 0.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-300);
}

.dot.red {
    background: #FF5F56;
}

.dot.yellow {
    background: #FFBD2E;
}

.dot.green {
    background: #27C93F;
}

/* ===============================================
   Festive Poster Hero Section
   =============================================== */
.poster-hero {
    min-height: 100dvh;
    /* Mobile viewport height */
    padding: 8rem 1rem 1rem 1rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* V5: Cleaner, Softer Gradient */
    background: linear-gradient(180deg, #EFF6FF 0%, #DBEAFE 100%);
    /* Blue tint */
}

.poster-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

/* Reduced Noise Splashes */
.splash {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    /* Increased blur for softness */
    opacity: 0.5;
    /* Reduced opacity */
    mix-blend-mode: normal;
    /* Removed multiply for cleaner look */
    animation: float 10s ease-in-out infinite alternate;
}

.splash-1 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--primary), transparent 70%);
    top: -100px;
    left: -100px;
    z-index: 1;
}

.splash-2 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, var(--accent-yellow), transparent 70%);
    bottom: -5%;
    right: -80px;
    animation-delay: -2s;
    z-index: 1;
}

.splash-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--secondary-cyan), transparent 70%);
    top: 30%;
    left: -50px;
    opacity: 0.3;
    animation-delay: -4s;
    z-index: 1;
}

/* Sparkles */
.sparkle {
    position: absolute;
    color: var(--accent-yellow);
    /* Yellow for visibility */
    font-size: 2rem;
    animation: pulse 2s infinite;
    z-index: 2;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.sparkle-1 {
    top: 15%;
    right: 15%;
    animation-delay: 0.5s;
    font-size: 3rem;
}

.sparkle-2 {
    bottom: 25%;
    left: 10%;
    animation-delay: 1.5s;
}

.sparkle-3 {
    top: 60%;
    right: 5%;
    animation-delay: 1s;
    font-size: 1.5rem;
}

.poster-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 480px;
    /* Mobile poster width constraint */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.hero-header {
    margin-bottom: 0.5rem;
    flex-shrink: 0;
}

.hero-primary-action {
    width: 100%;
    margin-bottom: 0.5rem;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.poster-subtitle-compact {
    font-size: 0.9rem;
    color: var(--gray-600);
    font-weight: 500;
}

.hero-badge.pulse-badge {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    border: 1px solid var(--accent-yellow);
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.15);
    animation: bounce-slight 2s infinite;
}

.poster-title {
    font-size: 3rem;
    line-height: 1.1;
    color: var(--gray-900);
}

.poster-title .highlight-text {
    /* Stronger contrast: Blue Gradient */
    background: var(--gradient-highlight);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    font-weight: 800;
    /* Optional: Small drop shadow for pop */
    filter: drop-shadow(0 2px 2px rgba(37, 99, 235, 0.2));
}

.poster-title .sub-line {
    display: block;
    font-size: 1.5rem;
    font-weight: 500;
    margin-top: 0.25rem;
    color: var(--gray-600);
}

/* ===============================================
   V5 Phone Mockup & Chat UI
   =============================================== */
.phone-mockup {
    width: 280px;
    height: 500px;
    background: #fff;
    border-radius: 36px;
    border: 8px solid #1F2937;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25),
        inset 0 0 0 2px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transform: rotate(-2deg);
    margin: 0 auto;
    z-index: 2;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 24px;
    background: #1F2937;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #E5E5E5;
    /* WA bg color approx */
    background-image: url('data:image/svg+xml;base64,...');
    /* Optional Doodle Pattern */
    display: flex;
    flex-direction: column;
}

/* Chat Header */
.chat-header {
    background: #075E54;
    padding: 30px 15px 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}

.chat-avatar {
    width: 32px;
    height: 32px;
    background: white;
    border-radius: 50%;
    color: #075E54;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.chat-info {
    display: flex;
    flex-direction: column;
}

.chat-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.chat-status {
    font-size: 0.7rem;
    opacity: 0.8;
}

/* Chat Body */
.chat-body {
    flex: 1;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chat-date {
    background: rgba(225, 245, 254, 0.8);
    align-self: center;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 0.7rem;
    color: #555;
    margin-bottom: 5px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.message {
    max-width: 85%;
    padding: 8px 10px;
    border-radius: 8px;
    position: relative;
    font-size: 0.85rem;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    opacity: 0;
    /* Hidden initially for animation */
    transform: translateY(10px);
}

.message.received {
    background: white;
    align-self: flex-start;
    border-top-left-radius: 0;
}

.message.photo-msg {
    padding: 4px;
}

.chat-photo {
    width: 100%;
    border-radius: 6px;
    display: block;
}

.download-btn {
    background: #F0F2F5;
    padding: 6px;
    text-align: center;
    margin-top: 4px;
    border-radius: 4px;
    font-weight: 600;
    color: #075E54;
    font-size: 0.75rem;
}

.msg-time {
    display: block;
    text-align: right;
    font-size: 0.6rem;
    color: #999;
    margin-top: 2px;
}

/* Animations */
.delay-1 {
    animation: popIn 0.5s forwards 0.5s;
}

.delay-2 {
    animation: popIn 0.5s forwards 1.2s;
}

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

/* Notification Pop */
.notification-pop {
    position: absolute;
    top: 40px;
    left: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 20;
    opacity: 0;
    transform: translateY(-50px);
    animation: slideDown 0.5s forwards 2.5s;
}

.notif-icon {
    width: 36px;
    height: 36px;
    background: #25D366;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notif-content {
    display: flex;
    flex-direction: column;
}

.notif-title {
    font-weight: 600;
    font-size: 0.8rem;
    color: #333;
}

.notif-text {
    font-size: 0.75rem;
    color: #666;
}

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

/* Poster Card (Main Visual) - V2 Stack Effect */
.hero-visual-poster {
    width: 100%;
    perspective: 1000px;
    margin: 0.5rem 0;
    /* Reduced spacing */
    flex: 1;
    /* Allow it to take up remaining space */
    min-height: 0;
    /* Important for flex child squishing */
    display: flex;
    align-items: center;
    justify-content: center;
}

.poster-card {
    background: white;
    padding: 8px;
    /* Slightly smaller padding */
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    /* Clean border */
    transform: rotate(-2deg);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 2;
    max-height: 100%;
    /* Ensure it fits in the container */
    width: auto;
}

/* Stack Effect Pseudo-elements */
.poster-card::before,
.poster-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.1);
    z-index: -1;
    transition: transform 0.4s ease;
}

.poster-card::before {
    transform: rotate(-3deg) translate(-5px, 5px);
    opacity: 0.8;
}

.poster-card::after {
    transform: rotate(3deg) translate(5px, 5px);
    opacity: 0.6;
}

.poster-card:hover {
    transform: rotate(0deg) scale(1.05) translateY(-5px);
    z-index: 5;
}

.poster-card:hover::before {
    transform: rotate(-6deg) translate(-10px, 10px);
}

.poster-card:hover::after {
    transform: rotate(6deg) translate(10px, 10px);
}

.poster-img {
    border-radius: 12px;
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4/5;
    /* Force portrait ratio like a poster */
    object-fit: cover;
    max-height: 40vh;
    /* Restrict height so it doesn't push off screen on small phones */
}

.hero-footer-trust {
    margin-top: auto;
    /* Push to bottom if space permits */
    padding-bottom: 0.5rem;
}

.poster-overlay {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 12px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.overlay-text {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Group */
.hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.poster-subtitle {
    font-size: 1rem;
    color: var(--gray-600);
    max-width: 80%;
    margin-bottom: 0.5rem;
}

.poster-btn {
    width: auto;
    /* Allow auto width */
    min-width: 200px;
    /* Minimum clickable area */
    max-width: 280px;
    /* Prevent too wide on large phones */
    background: var(--gradient-primary);
    border: none;
    box-shadow: 0 10px 20px -5px rgba(37, 99, 235, 0.4);
    padding: 1rem 1.5rem;
    /* Adjusted padding */
    font-size: 1.15rem;
    border-radius: 100px;
    /* Pillow shape for modern poster feel */
    display: flex;
    justify-content: center;
    /* Center content */
    align-items: center;
    gap: 1rem;
    transition: transform 0.2s;
    margin: 0 auto;
    /* Center button in container */
}

/* Unify Badge Colors */
.hero-badge.pulse-badge {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--accent-yellow);
    color: var(--primary);
    /* Match button color */
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

transform: translateY(-2px) scale(1.02);
box-shadow: 0 15px 30px -5px rgba(37, 99, 235, 0.5);
}

.poster-btn .btn-arrow {
    background: white;
    color: var(--primary);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
}

.poster-trust {
    font-size: 0.85rem;
    color: var(--gray-500);
    font-weight: 500;
}

/* Animations */
@keyframes float {

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

    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(0.8);
        opacity: 0.7;
    }
}

@keyframes bounce-slight {

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

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

/* Mobile Adjustments */
@media (max-width: 480px) {
    .poster-title {
        font-size: 2.5rem;
    }

    .poster-title .sub-line {
        font-size: 1.2rem;
    }
}

/* ===============================================
   Social Proof
   =============================================== */
.social-proof {
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid var(--gray-100);
    background: var(--gray-50);
}

.social-proof-label {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--gray-500);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.social-proof-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.stat-block {
    text-align: center;
}

.stat-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
}

.stat-txt {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* ===============================================
   Comparison Section (Problem/Solution)
   =============================================== */
.comparison-section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--spacing-lg);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
}

.comparison-table-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

/* Comparison Cards (Removed Old Styles) */

/* ===============================================
   V6 Comparison Flow
   =============================================== */
.comparison-flow {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    /* Constrain width for storytelling flow */
    margin: 0 auto;
    align-items: center;
}

.flow-card {
    width: 100%;
    padding: 1.5rem;
    border-radius: 20px;
    text-align: left;
    position: relative;
    transition: transform 0.3s ease;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.icon-box {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

/* Pain Card (Old Way) */
.card-pain {
    background: var(--gray-50);
    border: 2px dashed var(--gray-300);
    opacity: 0.9;
}

.card-pain h3 {
    color: var(--gray-600);
    font-size: 1.25rem;
}

.pain-icon {
    background: var(--gray-200);
    filter: grayscale(1);
}

.pain-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pain-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--gray-500);
    font-size: 0.95rem;
}

.pain-list .list-icon {
    font-size: 1.2rem;
    opacity: 0.6;
    filter: grayscale(1);
}

/* Connector */
.flow-connector {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.connector-arrow {
    width: 40px;
    height: 60px;
    animation: bounce-slight 2s infinite;
    display: block;
}

/* Solution Card (New Way) */
.card-solution {
    background: white;
    border: 2px solid var(--primary);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.15);
    transform: scale(1.02);
    /* Slight elevation */
    z-index: 2;
    overflow: hidden;
}

.card-solution h3 {
    color: var(--gray-900);
    font-size: 1.4rem;
    font-weight: 700;
}

.solution-icon {
    background: var(--gradient-primary);
    color: white;
    /* Emoji might not take color, but background works */
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
}

.solution-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.solution-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--gray-800);
    font-size: 1rem;
}

.solution-list .list-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    display: block;
}

.card-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--gradient-primary);
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 4px 12px;
    border-bottom-left-radius: 12px;
}

/* ===============================================
   How It Works (Zig-Zag)
   =============================================== */
.how-it-works {
    padding: var(--spacing-xl) 0;
    background: var(--gray-50);
}

.zigzag-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    margin-bottom: var(--spacing-lg);
}

.zigzag-row:last-child {
    margin-bottom: 0;
}

.zigzag-row.reverse .zigzag-content {
    order: 2;
}

.zigzag-row.reverse .zigzag-visual {
    order: 1;
}

.step-badge {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-200);
    line-height: 1;
    margin-bottom: 1rem;
}

.zigzag-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.zigzag-content p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

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

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.feature-list li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

.browser-frame.small {
    box-shadow: var(--shadow-md);
}

.mobile-frame {
    background: var(--gray-900);
    padding: 10px;
    border-radius: 30px;
    box-shadow: var(--shadow-xl);
    max-width: 300px;
    margin: 0 auto;
    position: relative;
}

.mobile-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 20px;
    background: var(--gray-900);
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    z-index: 2;
}

.mobile-frame img {
    border-radius: 20px;
    display: block;
}

/* ===============================================
   Features (Clean Grid)
   =============================================== */
.features-section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

.features-bg-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30%;
    opacity: 0.05;
    pointer-events: none;
}

.clean-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-bottom: 1rem;
    border-radius: 8px;
    display: block;
}

.clean-feature-card {
    padding: 2rem;
    border-radius: 12px;
    background: white;
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
}

.clean-feature-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.clean-feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.clean-feature-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
}

/* ===============================================
   Pricing
   =============================================== */
.pricing-section {
    padding: var(--spacing-xl) 0;
    background: var(--gray-50);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
}

.pricing-cards.two-cards {
    grid-template-columns: repeat(2, 1fr);
    /* 2 Columns */
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .pricing-cards.two-cards {
        grid-template-columns: 1fr;
    }
}

.price-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    width: 100%;
    /* Ensure full width in grid */
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.price-card.popular {
    border: 2px solid var(--primary);
    /* Remove default scale for mobile to fix layout */
    transform: none;
    z-index: 1;
}

.price-card.popular:hover {
    transform: translateY(-5px);
}

.popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.3);
    white-space: nowrap;
    z-index: 2;
}

.price-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray-100);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0.5rem 0;
}

.currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.period {
    font-size: 1rem;
    color: var(--gray-500);
    font-weight: 400;
}

.price-body ul {
    list-style: none;
    margin-bottom: 2rem;
}

.price-body li {
    margin-bottom: 1rem;
    display: flex;
    gap: 0.75rem;
}

.check {
    color: var(--success);
    font-weight: bold;
}

.full-width {
    width: 100%;
}

.whatsapp-banner {
    margin-top: 3rem;
    text-align: center;
    background: #DCFCE7;
    /* Light green */
    padding: 1rem;
    border-radius: 8px;
    color: #166534;
}

.whatsapp-icon {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    display: inline-block;
    margin-right: 0.5rem;
}

/* ===============================================
   Demo (Tabbed Showcase)
   =============================================== */
.demo-section {
    padding: var(--spacing-xl) 0;
    background: var(--gray-50);
}

.tabbed-showcase {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-lg);
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    min-height: 500px;
    /* Prevent layout jump */
}

.demo-tabs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.demo-tab {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border: 2px solid transparent;
    border-radius: 12px;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.demo-tab:hover {
    border-color: var(--gray-200);
}

.demo-tab.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateX(10px);
}

.tab-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gray-300);
    font-family: var(--font-heading);
}

.demo-tab.active .tab-number {
    color: var(--primary);
}

.tab-info h3 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.tab-info p {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin: 0;
}

.demo-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.demo-screen {
    display: none;
    animation: fadeIn 0.5s ease;
    width: 100%;
}

.demo-screen.active {
    display: block;
}

.centered-frame {
    margin: 0 auto;
}

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

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

/* ===============================================
   FAQ
   =============================================== */
.faq-section {
    padding: var(--spacing-xl) 0;
    background: var(--gray-50);
}

/* ===============================================
   FAQ (Grid)
   =============================================== */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
}

.faq-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--gray-900);
}

.faq-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    text-align: left;
    background: none;
    border: none;
    font-size: 1.125rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

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

.faq-answer p {
    padding: 0 var(--spacing-md) var(--spacing-md);
    color: var(--gray-600);
    line-height: 1.7;
}

.faq-footer {
    text-align: center;
    margin-top: var(--spacing-lg);
    font-size: 1.125rem;
}

/* ===============================================
   Final CTA (Split Card)
   =============================================== */
.final-cta-section {
    padding: var(--spacing-xl) 0;
}

.cta-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 24px;
    padding: 4rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.cta-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.cta-note {
    font-size: 0.875rem;
    opacity: 0.8;
}

.cta-visual {
    position: relative;
}

.cta-image {
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    transform: rotate(-3deg);
    border: 4px solid rgba(255, 255, 255, 0.2);
}

.cta-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: white;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-900);
    font-weight: 700;
    transform: rotate(3deg);
}

/* ===============================================
   Footer (Dark & Minimal)
   =============================================== */
.footer {
    padding: 4rem 0 2rem;
    background: var(--gray-900);
    color: var(--gray-400);
    border-top: none;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    color: var(--gray-500);
    font-size: 0.95rem;
    max-width: 250px;
}

.footer-logo {
    height: 32px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-nav {
    display: flex;
    gap: 4rem;
}

.footer-group h4 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

.footer-group a {
    display: block;
    color: var(--gray-400);
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: color 0.2s;
}

.footer-group a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* ===============================================
   Modal
   =============================================== */

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 600px;
    width: 90%;
    max-height: 95%;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    z-index: 2001;
}

.modal-content.fullscreen {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    border-radius: 0;
    display: flex;
    flex-direction: column;
}

.modal-content.fullscreen .modal-body {
    flex: 1;
    padding: 0;
    height: 100%;
    overflow: hidden;
}

.modal-content.fullscreen iframe {
    height: 100%;
    width: 100%;
    display: block;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-100);
    color: var(--gray-700);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    z-index: 10;
}

.modal-close:hover {
    background: var(--gray-200);
    transform: rotate(90deg);
}

.modal-header {
    padding: var(--spacing-lg);
    text-align: center;
    border-bottom: 1px solid var(--gray-200);
}

.modal-header h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}

.modal-header p {
    color: var(--gray-600);
}

.modal-body {
    padding: var(--spacing-md);
}

/* ===============================================
   Form Styles
   =============================================== */

.demo-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--gray-700);
}

.form-group input,
.form-group select {
    padding: 0.75rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: inherit;
    transition: all var(--transition-fast);
    min-height: 44px;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.form-privacy {
    text-align: center;
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-top: var(--spacing-sm);
}

/* ===============================================
   Animations
   =============================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll animations will be handled by JavaScript */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===============================================
   Video Modal
   =============================================== */

.video-modal-content {
    max-width: 900px;
    width: 90%;
    padding: 0;
    background: black;
    overflow: hidden;
}

.video-modal-content .modal-close {
    color: white;
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

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

/* ===============================================
   Scroll Animations
   =============================================== */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up {
    /* Uses default transition above */
}

.scale-in {
    transform: scale(0.9);
}

.scale-in.visible {
    transform: scale(1);
}