/* ===== CSS Variables & Base Styles ===== */
:root {
    /* Brand Color Palette — Premium Inspiration */
    --primary: #FF5A20;
    --primary-dark: #E04815;
    --primary-light: #FFF0EB;
    
    --brand-dark: #0F0F11;
    --brand-muted: #8A8A93;
    --success: #10B981;

    /* Gradients */
    --gradient-1: linear-gradient(135deg, #FF5A20 0%, #D84210 100%);
    --gradient-2: linear-gradient(135deg, #FF5A20 0%, #FF8A50 100%);
    --gradient-bg: linear-gradient(135deg, #0F0F11 0%, #1A1A1D 100%);

    /* Premium Framed Colors */
    --bg-page-outer: #0F0F11; /* Pitch dark outer back */
    --bg-frame-inner: #F3EFE9; /* Warm beige inner */
    --bg-hero-dark: #161618; /* Dark section */
    
    /* Neutral Colors */
    --text-primary: #111111;
    --text-secondary: #5C5C60;
    --text-light: #9CA3AF;
    --bg-white: #FFFFFF;
    --bg-light: #F8F7F4;
    --border: #DEDCD5;

    /* Spacing */
    --section-padding: 100px;
    --container-max: 1240px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --radius-hero: 40px;

    /* Shadows - softer, more premium */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 24px 60px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 50px rgba(255, 90, 32, 0.15);
}

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

html {
    scroll-behavior: smooth;
    background: var(--bg-page-outer);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    background: var(--bg-page-outer);
    overflow-x: hidden;
    padding: 16px; /* Space for the outer frame on desktop */
}

/* ── Premium Site Wrapper ── */
.site-wrapper {
    background: var(--bg-frame-inner);
    border-radius: var(--radius-hero);
    overflow: hidden;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.05);
}

/* ── Module Card ── */
.module-card {
    background: var(--bg-hero-dark);
    border-radius: var(--radius-hero);
    max-width: var(--container-max);
    margin: 40px auto;
    padding: 60px 40px;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05), var(--shadow-xl);
    position: relative;
    overflow: hidden;
    color: #FFFFFF;
}

/* Fix text legibility overrides for inner elements */
.module-card .section-title,
.module-card h2 { color: #fff !important; }

.module-card .section-subtitle,
.module-card .sub,
.module-card .about-lead,
.module-card .slide-indicator,
.module-card .feature-content > p,
.module-card .feature-list li { color: rgba(255,255,255,0.7) !important; }

.module-card p {
    color: rgba(255,255,255,0.8);
}

/* Light Module Variant (For Alternating Sections) */
.module-card.module-card-light {
    background: transparent;
    color: var(--text-primary);
    box-shadow: none; /* Blends flawlessly into the beige site-wrapper */
}

/* Revert text colors inside the light module */
.module-card.module-card-light .section-title,
.module-card.module-card-light h2,
.module-card.module-card-light .section-subtitle,
.module-card.module-card-light .sub,
.module-card.module-card-light .about-lead {
    color: inherit !important; 
}
.module-card.module-card-light .section-subtitle,
.module-card.module-card-light .sub {
    color: var(--text-secondary) !important;
}

/* Make platform/about cards mimic the Pricing Card design (White background, soft shadow, dark text) */
.module-card.module-card-light .platform-card,
.module-card.module-card-light .about-feature-card {
    background: #FFFFFF !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04) !important;
    backdrop-filter: none !important;
    color: var(--text-primary) !important;
}

/* Make how-step orangey to resemble the lifetime card */
.module-card.module-card-light .how-step {
    background: var(--primary-light) !important;
    border: 1px solid rgba(232, 98, 42, 0.2) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04) !important;
    backdrop-filter: none !important;
    color: var(--text-primary) !important;
}

/* Ensure headings inside these white cards are dark */
.module-card.module-card-light .how-step h4,
.module-card.module-card-light .platform-card .pc-name,
.module-card.module-card-light .about-feature-card h3,
.module-card.module-card-light .about-feature-card h4 {
    color: var(--text-primary) !important;
}

/* Ensure paragraph text inside these white cards is crisp dark-grey */
.module-card.module-card-light .how-step p,
.module-card.module-card-light .platform-card p,
.module-card.module-card-light .about-feature-card p {
    color: var(--text-secondary) !important;
}

/* Fix circle step numbers for white background */
.module-card.module-card-light .how-step .step-number {
    background: var(--bg-hero-dark) !important;
    color: #FFFFFF !important;
}

@media (max-width: 768px) {
    body { padding: 0; }
    .site-wrapper { border-radius: 0; }
    .module-card { margin: 20px 16px; padding: 40px 24px; border-radius: var(--radius-xl); }
}

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

/* ===== Typography ===== */
h1, h2, h3, .logo-text, .section-title {
    font-family: 'Playfair Display', serif;
}

h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.8rem;
    font-weight: 500;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

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

.section-title {
    text-align: center;
    margin-bottom: 16px;
    font-weight: 600;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 60px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--brand-dark);
    color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: #222222;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.btn-accent {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(232, 98, 42, 0.35);
}

.btn-accent:hover {
    transform: translateY(-2px);
    background: var(--primary-dark);
    box-shadow: 0 8px 25px rgba(232, 98, 42, 0.45);
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--text-primary);
    border: 1.5px solid var(--border);
}

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

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
}

.btn-xlarge {
    padding: 22px 48px;
    font-size: 1.25rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.chrome-icon {
    width: 24px;
    height: 24px;
}

.play-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-dark);
    border-radius: 50%;
    color: white;
    font-size: 10px;
}

.chrome-icon-custom {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chrome-icon-custom svg {
    width: 20px;
    height: 20px;
}

.play-icon-gradient {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-2);
    border-radius: 50%;
    color: white;
}

.play-icon-gradient svg {
    width: 14px;
    height: 14px;
    margin-left: 2px;
}

/* ===== Navigation ===== */
.navbar {
    position: sticky;
    top: 0;
    background: linear-gradient(135deg, #0F0F11 0%, #1A1510 60%, #1C1208 100%);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 16px 0;
    border-bottom: 1px solid rgba(232, 98, 42, 0.15);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0;
}

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

.logo-text {
    font-size: 1.75rem;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: -0.02em;
}

.logo-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.03);
}

.brain-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.logo:hover .brain-icon {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.footer-logo .logo-text {
    color: white;
}

.footer-logo .brain-icon {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

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

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #FF5A20;
}

.nav-cta {
    background: #FF5A20;
    color: white;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 2px 12px rgba(255, 90, 32, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    background: #E04815;
    box-shadow: 0 4px 20px rgba(255, 90, 32, 0.45);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    padding: 24px 24px 40px;
    overflow: hidden;
}

.hero-card {
    background: var(--bg-hero-dark);
    border-radius: var(--radius-hero);
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 60px 56px;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05), var(--shadow-xl);
    position: relative;
    overflow: hidden;
    color: #FFFFFF;
}

.hero-card h1, .hero-card h2, .hero-card h3 {
    color: #FFFFFF;
}

/* Add a subtle CSS grid to the background like the inspiration */
.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse at 30% 20%, rgba(255, 90, 32, 0.08) 0%, transparent 50%),
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 100% 100%, 40px 40px, 40px 40px;
    background-position: center center;
    z-index: 0;
}

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

.hero-content {
    z-index: 1;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--primary-light);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
    border: 1px solid rgba(232, 98, 42, 0.2);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin: 24px 0 32px;
    line-height: 1.7;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.btn-watch-demo {
    background: white !important;
    color: var(--text-primary) !important;
    border: 1px solid var(--border) !important;
    box-shadow: var(--shadow-sm) !important;
}

.btn-watch-demo:hover {
    border-color: var(--primary) !important;
    box-shadow: var(--shadow-md) !important;
    transform: translateY(-2px);
}

.trust-badges {
    display: flex;
    gap: 24px;
    margin-top: 32px;
    flex-wrap: wrap;
}

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

.hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.phone-mockup {
    position: relative;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    padding: 8px;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.4s ease;
}

.phone-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.phone-mockup img {
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 350px;
    height: auto;
    display: block;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 10px 16px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 0.85rem;
    z-index: 10;
}

/* Card positions for hero slideshow - Far corners */
.card-top-left {
    top: 5%;
    left: -42%;
    /* Pushed further out to be 'attached' to edge */
    animation: bounce 3s ease-in-out infinite;
}

.card-bottom-right {
    bottom: 5%;
    right: -42%;
    /* Pushed further out to be 'attached' to edge */
    animation: bounce 3s ease-in-out infinite;
    animation-delay: 1.5s;
}

/* Legacy card positions */
.card-1 {
    top: 20%;
    left: -10%;
    animation: bounce 3s ease-in-out infinite;
}

.card-2 {
    bottom: 25%;
    right: -5%;
    animation: bounce 3s ease-in-out infinite;
    animation-delay: 1.5s;
}

@keyframes bounce {

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

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

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

/* ===== Hero Slideshow ===== */
.hero-slideshow {
    position: relative;
    width: 100%;
    min-height: 380px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    overflow: visible;
}

.hero-slide.active {
    opacity: 1;
    transform: translate(-45%, -50%) scale(1.10);
    /* Increase scale by another 5% */
    pointer-events: auto;
}

/* Make slides 3 and 4 smaller */
.hero-slide.slide-small .phone-mockup img {
    max-width: 300px;
}

.hero-slide .phone-mockup {
    animation: none;
}

.hero-slide.active .phone-mockup {
    animation: floatHero 4s ease-in-out infinite;
}

.hero-slide .floating-card {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.3s;
}

.hero-slide.active .floating-card {
    opacity: 1;
    transform: translateY(0);
}

@keyframes floatHero {

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

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

.hero-slideshow-dots {
    position: absolute;
    right: 0;
    /* Far right */
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 20;
    background: rgba(17, 17, 17, 0.06);
    padding: 12px 8px;
    border-radius: 20px 0 0 20px;
    /* Rounded only on left */
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(17, 17, 17, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot:hover {
    background: rgba(17, 17, 17, 0.45);
}

.hero-dot.active {
    background: var(--primary);
    height: 28px;
    border-radius: 5px;
}

/* ===== About Section ===== */
.about-section {
    padding: var(--section-padding) 0;
}

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

.about-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--primary-light);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
}

.about-content h2 {
    margin-bottom: 20px;
}

.about-lead {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

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

.about-story strong {
    color: var(--primary);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-feature-card {
    padding: 24px;
    background: rgba(255,255,255,0.05);
    color: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.about-feature-card:hover {
    transform: translateX(5px);
    background: rgba(255,255,255,0.08);
    border-color: rgba(255, 90, 32, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.about-feature-card h3 { color: #fff; margin-bottom: 8px; }
.about-feature-card p { color: rgba(255,255,255,0.7); }

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

.about-feature-card h4 {
    margin-bottom: 8px;
    color: var(--text-primary);
}

.about-feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.problem-card {
    background: rgba(255,255,255,0.05);
    color: #fff;
    padding: 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
}

.problem-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.08);
    border-color: rgba(255, 90, 32, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.problem-card h3 {
    margin-bottom: 12px;
    color: #fff;
}

.problem-card p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.problem-stat {
    text-align: center;
    padding: 32px;
    background: var(--gradient-2);
    border-radius: var(--radius-lg);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
}

.stat-text {
    font-size: 1.1rem;
    max-width: 400px;
    text-align: left;
}

/* ===== Features Carousel Section ===== */
.features-carousel-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.carousel-wrapper {
    position: relative;
    height: 100%;
    width: 100%;
}

/* Vertical Navigation Dots */
.carousel-nav {
    position: absolute;
    right: -24px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    z-index: 100;
    background: rgba(0, 0, 0, 0.6);
    padding: 20px 12px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.nav-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.nav-dot.active {
    background: var(--primary);
    width: 12px;
    height: 28px;
    border-radius: 6px;
}

.nav-dot.active::after {
    border-color: rgba(232, 98, 42, 0.3);
}

.carousel-pause-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-top: 8px;
    transition: all 0.3s ease;
}

.carousel-pause-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Carousel Container */
.carousel-container {
    position: relative;
    height: 100%;
    width: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.carousel-slide.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

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

/* Slide Indicator */
.slide-indicator {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

/* Feature Block in Carousel */
.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

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

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

.feature-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    line-height: 1.2;
}

.feature-content>p {
    color: var(--text-secondary);
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

.feature-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--primary-light);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
}

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

.feature-list li {
    padding: 10px 0;
    padding-left: 32px;
    position: relative;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
    font-size: 1.1rem;
}

.feature-image {
    position: relative;
    overflow: visible;
}

.feature-image > img {
    width: 100%;
    max-width: 450px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    animation: floatImage 4s ease-in-out infinite;
}

/* Browser frame inside feature-image inherits animation */
.feature-image > .browser-frame {
    max-width: 450px;
    width: 100%;
    animation: floatImage 4s ease-in-out infinite;
}

.feature-image > .db-frame {
    max-width: 520px;
    animation: floatImage 4s ease-in-out infinite;
}

@keyframes floatImage {

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

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

/* Slide 3 - make it smaller to match other screenshots */
.slide-3-image > .browser-frame,
.slide-3-image > img {
    max-width: 360px;
}

/* Demo Slide */
.demo-slide-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.demo-slide-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.demo-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.demo-video-container {
    max-width: 650px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-placeholder {
    aspect-ratio: 16/9;
    background: var(--gradient-2);
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: var(--shadow-xl);
}

.video-placeholder:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.play-button-large {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 16px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s;
}

.video-placeholder:hover .play-button-large {
    transform: scale(1.1);
}

.video-placeholder p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Scroll Hint */
.scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.9rem;
    animation: fadeInOut 2s ease-in-out infinite;
    z-index: 50;
}

.scroll-hint.hidden {
    opacity: 0;
    pointer-events: none;
}

.scroll-arrow {
    font-size: 1.5rem;
    animation: bounceDown 1.5s ease-in-out infinite;
}

@keyframes bounceDown {

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

    50% {
        transform: translateY(8px);
    }
}

@keyframes fadeInOut {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

/* ===== How It Works ===== */
.how-it-works {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.step {
    text-align: center;
    max-width: 280px;
    padding: 32px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: var(--brand-dark);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

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

.step h3 {
    margin-bottom: 12px;
}

.step p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.step-connector {
    width: 80px;
    height: 20px;
}

.step-connector svg {
    width: 100%;
    height: 100%;
}

/* ===== Feature Grid ===== */
.feature-grid-section {
    padding: var(--section-padding) 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.grid-feature {
    padding: 32px;
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,0.05);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.grid-feature:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255, 90, 32, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    transform: translateY(-5px);
}

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

.grid-feature h4 {
    margin-bottom: 12px;
    color: #fff;
}

.grid-feature p {
    color: rgba(255,255,255,0.7);
}

/* ===== Demo Section ===== */
.demo-section {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
}

.demo-video-container {
    max-width: 900px;
    margin: 0 auto;
}

.video-placeholder {
    aspect-ratio: 16/9;
    background: var(--gradient-2);
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: transform 0.3s;
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.play-button-large {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 16px;
    box-shadow: var(--shadow-lg);
}

.video-placeholder p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ===== Pricing Section ===== */
.pricing-section {
    padding: 40px 0 60px;
    scroll-margin-top: 80px;
    /* Offset for fixed navbar */
}

/* New Modern Pricing Cards */
.pricing-cards-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card-new {
    background: white;
    border-radius: 16px;
    padding: 24px;
    border: 2px solid #e5e7eb;
    position: relative;
    transition: all 0.3s ease;
    text-align: center;
}

.pricing-card-new:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(232, 98, 42, 0.12);
}

.pricing-card-new.featured {
    background: var(--primary-light);
    border-color: var(--primary);
    transform: scale(1.03);
}

.pricing-card-new.featured:hover {
    transform: scale(1.03) translateY(-4px);
}

.pricing-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    background: #f3f4f6;
    color: #6b7280;
    margin-bottom: 12px;
}

.pricing-badge.urgency {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #92400e;
}

.pricing-badge-wrapper {
    position: absolute;
    top: -16px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.pricing-card-new.featured .pricing-badge.popular {
    background: var(--primary);
    color: white;
    transform: rotate(-2deg);
    box-shadow: 0 4px 12px rgba(232, 98, 42, 0.35);
    border: none;
    font-size: 0.95rem;
    padding: 6px 20px;
    letter-spacing: 0.02em;
    margin: 0;
    text-transform: uppercase;
}

.pricing-crossed-out {
    font-size: 1.15rem;
    color: #94a3b8;
    text-decoration: line-through;
    margin-bottom: -5px;
    font-weight: 600;
}

.pricing-crossed-out .strikethrough-period {
    font-size: 0.9rem;
    font-weight: 500;
}

.pricing-tier {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.pricing-amount {
    margin-bottom: 8px;
}

.pricing-amount .currency {
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: top;
    color: var(--text-primary);
}

.pricing-amount .value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.original-price {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 1.2rem;
    margin-right: 8px;
}

.pricing-amount .decimal {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.pricing-amount .period {
    font-size: 0.9rem;
    color: #9ca3af;
    margin-left: 2px;
}

.pricing-tagline {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 16px;
}

.pricing-list {
    list-style: none;
    text-align: left;
    margin-bottom: 20px;
    padding: 0;
}

.pricing-list li {
    padding: 6px 0;
    font-size: 0.85rem;
    color: #374151;
}

.pricing-list li strong {
    color: var(--primary);
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pricing-btn.primary {
    background: var(--brand-dark);
    color: white;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.pricing-btn.primary:hover {
    transform: translateY(-2px);
    background: #222222;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

.pricing-btn.secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid #e5e7eb;
}

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

.pricing-note {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-top: 8px;
}

/* Old pricing styles - kept for compatibility */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 40px;
    border: 2px solid var(--border);
    position: relative;
    transition: all 0.3s;
}

.pricing-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-xl);
}

/* ===== Email Section ===== */
.email-section {
    padding: 80px 0;
    background: var(--brand-dark);
}

.email-content {
    text-align: center;
    color: white;
}

.email-content h2 {
    margin-bottom: 16px;
}

.email-content .gradient-text {
    background: linear-gradient(135deg, #fff 0%, #fcd9e5 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.email-content>p {
    opacity: 0.9;
    margin-bottom: 32px;
    font-size: 1.1rem;
}

.email-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.email-form input {
    flex: 1;
    min-width: 250px;
    padding: 16px 24px;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
}

.email-form .btn {
    background: var(--bg-dark);
    color: white;
}

.email-form .btn:hover {
    background: #000;
}

.email-note {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 16px;
}

/* ===== FAQ Section ===== */
.credits-section {
    padding: 50px 0;
    scroll-margin-top: 80px;
}

.faq-section {
    padding: 40px 0 40px;
    background: var(--bg-light);
    scroll-margin-top: 80px;
}

.faq-container {
    max-width: 700px;
    margin: 0 auto;
}

/* Fancy Giveaway Bar */
.giveaway-bar {
    margin-top: 32px;
    padding: 20px 28px;
    background: linear-gradient(135deg, #E8622A 0%, #CF5220 100%);
    border-radius: 16px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(232, 98, 42, 0.25);
}

.giveaway-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.giveaway-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.giveaway-text {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
}

.giveaway-icon {
    font-size: 2rem;
    animation: bounce 2s ease-in-out infinite;
}

.giveaway-text strong {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
}

.giveaway-sub {
    display: block;
    font-size: 0.85rem;
    opacity: 0.9;
}

.giveaway-form {
    display: flex;
    gap: 10px;
    flex: 1;
    max-width: 400px;
}

.giveaway-form input {
    flex: 1;
    padding: 12px 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.95);
    min-width: 180px;
}

.giveaway-form input:focus {
    outline: none;
    border-color: #fbbf24;
    box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.3);
}

.giveaway-form button {
    padding: 12px 24px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1f2937;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
}

.giveaway-form button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.5);
}

.faq-item {
    background: white;
    border-radius: var(--radius-md);
    margin-bottom: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    padding: 14px 20px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s;
}

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

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

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

.faq-answer p {
    padding: 0 24px 24px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== Final CTA ===== */
.final-cta {
    padding: var(--section-padding) 0;
    text-align: center;
}

.final-cta h2 {
    margin-bottom: 16px;
}

.final-cta>p {
    color: var(--text-secondary);
    font-size: 1.25rem;
    margin-bottom: 40px;
}

.final-trust {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 24px;
    color: var(--text-secondary);
    flex-wrap: wrap;
}

/* ===== Footer ===== */
.footer {
    background: linear-gradient(135deg, #0F0F11 0%, #1A1510 60%, #1C1208 100%);
    color: white;
    padding: 60px 0 24px;
    border-top: 1px solid rgba(232, 98, 42, 0.15);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 24px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 8px;
}

.footer-logo .logo-img {
    height: 36px;
}

/* Logo colors handled by inline styles or specific spans */
a.footer-logo {
    text-decoration: none !important;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #FF5A20;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ===== Browser Frame Mockup ===== */
.browser-frame {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.06);
    overflow: hidden;
    border: 1px solid var(--border);
    display: block;
}

.browser-bar {
    background: #F0EFEC;
    padding: 9px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}

.b-dots {
    display: flex;
    gap: 5px;
    align-items: center;
    flex-shrink: 0;
}

.b-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.b-dot-r { background: #FF5F57; }
.b-dot-y { background: #FFBD2E; }
.b-dot-g { background: #28C840; }

.browser-url {
    flex: 1;
    background: white;
    border-radius: 6px;
    padding: 3px 10px;
    font-size: 0.65rem;
    color: var(--text-secondary);
    text-align: center;
    border: 1px solid var(--border);
    max-width: 200px;
    margin: 0 auto;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.browser-frame-body {
    overflow: hidden;
    line-height: 0;
}

.browser-frame-body img {
    width: 100%;
    display: block;
    height: auto;
}

/* ===== Annotation Cards ===== */
.anno-card {
    position: absolute;
    background: white;
    color: var(--text-primary);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.10), 0 2px 6px rgba(0,0,0,0.05);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    z-index: 20;
    white-space: nowrap;
    border: 1px solid var(--border);
    animation: annoFloat 3s ease-in-out infinite;
    pointer-events: none;
}

.anno-card.anno-dark {
    background: var(--brand-dark);
    color: white;
    border-color: transparent;
}

.anno-card.anno-amber {
    background: var(--primary-light);
    color: var(--primary-dark);
    border-color: rgba(232, 98, 42, 0.2);
}

.anno-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.anno-icon-dark { background: rgba(255,255,255,0.12); }
.anno-icon-amber { background: rgba(232, 98, 42, 0.15); color: var(--primary); }
.anno-icon-white { background: var(--bg-light); color: var(--text-primary); }

.anno-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.anno-label {
    font-size: 0.62rem;
    font-weight: 700;
    opacity: 0.55;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1;
}

.anno-value {
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1.2;
}

.anno-card.anno-dark .anno-label { color: rgba(255,255,255,0.5); opacity: 1; }
.anno-card.anno-dark .anno-value { color: white; }
.anno-card.anno-amber .anno-label { color: rgba(207,82,32,0.65); opacity: 1; }
.anno-card.anno-amber .anno-value { color: var(--primary-dark); }

.anno-delay { animation-delay: 1.5s; }

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

/* Hero anno cards — hidden until slide active */
.hero-slide .anno-card {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.4s ease 0.3s, transform 0.4s ease 0.3s;
    animation: none;
}

.hero-slide.active .anno-card {
    opacity: 1;
    transform: translateY(0);
    animation: annoFloat 3s ease-in-out infinite;
}

.hero-slide.active .anno-card.anno-delay {
    animation-delay: 1.5s;
    transition-delay: 0.5s;
}

/* Hero browser frame */
.hero-browser-frame {
    max-width: 360px;
    width: 100%;
}

/* Hero anno positions */
.hero-anno-tl {
    top: 12%;
    left: -38%;
}

.hero-anno-br {
    bottom: 10%;
    right: -38%;
}

/* Carousel feature image anno positions */
.feat-anno-tr {
    top: -14px;
    right: -14px;
}

.feat-anno-bl {
    bottom: -14px;
    left: -14px;
}

/* ===== Dashboard HTML Mockup ===== */
.db-frame {
    width: 100%;
    max-width: 520px;
    background: var(--bg-light);
}

.db-layout {
    display: flex;
    height: 310px;
    overflow: hidden;
}

.db-sidebar {
    width: 150px;
    flex-shrink: 0;
    background: white;
    border-right: 1px solid var(--border);
    padding: 14px 10px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.db-brand {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    padding: 2px 6px;
    color: var(--brand-dark);
}

.db-re { color: var(--primary); }

.db-nav-items {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.db-nav-item {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 6px 8px;
    border-radius: 7px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.db-nav-item.db-active {
    background: var(--brand-dark);
    color: white;
    border-left: 3px solid var(--primary);
    padding-left: 6px;
}

.db-nav-icon {
    font-size: 12px;
    width: 14px;
    text-align: center;
    flex-shrink: 0;
}

.db-credits-widget {
    margin-top: auto;
    background: var(--bg-light);
    border-radius: 8px;
    padding: 9px;
    border: 1px solid var(--border);
}

.db-credits-label {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    margin-bottom: 5px;
}

.db-credits-bar {
    background: var(--border);
    border-radius: 4px;
    height: 4px;
    margin-bottom: 4px;
    overflow: hidden;
}

.db-credits-fill {
    background: var(--primary);
    height: 100%;
    border-radius: 4px;
}

.db-credits-text {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-primary);
}

.db-main-area {
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: var(--bg-light);
}

.db-top-bar {
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 9px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.db-search-bar {
    flex: 1;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 4px 10px;
    font-size: 0.68rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 5px;
}

.db-search-placeholder { opacity: 0.6; }

.db-upgrade-btn {
    background: var(--brand-dark);
    color: white;
    border-radius: 20px;
    padding: 4px 10px;
    font-size: 0.6rem;
    font-weight: 700;
    white-space: nowrap;
}

.db-stats-row {
    display: flex;
    gap: 6px;
    padding: 8px 12px;
}

.db-mini-stat {
    flex: 1;
    background: white;
    border-radius: 8px;
    padding: 7px 8px;
    border: 1px solid var(--border);
}

.db-mini-num {
    font-size: 1rem;
    font-weight: 900;
    color: var(--brand-dark);
    line-height: 1;
}

.db-mini-label {
    font-size: 0.58rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-top: 2px;
}

.db-link-cards {
    flex: 1;
    overflow: hidden;
    padding: 0 12px 12px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.db-link-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 9px;
    padding: 7px 9px;
    display: flex;
    align-items: center;
    gap: 9px;
}

.db-link-card.db-link-active {
    border-color: var(--primary);
    background: var(--primary-light);
}

.db-platform-badge {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 900;
    flex-shrink: 0;
    font-style: normal;
}

.db-yt { background: #FF0000; color: white; }
.db-li { background: #0077B5; color: white; font-size: 10px; }
.db-tw { background: #111111; color: white; }
.db-fb { background: #1877F2; color: white; }

.db-link-info {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.db-link-title {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--brand-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.db-link-summary {
    font-size: 0.6rem;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 2px;
}

.db-link-meta {
    font-size: 0.58rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: var(--bg-light);
    border-radius: 4px;
    padding: 2px 5px;
    flex-shrink: 0;
    border: 1px solid var(--border);
}

/* ===== Responsive Design ===== */
@media (max-width: 968px) {
    .hero {
        padding: 80px 12px 32px;
    }

    .hero-card {
        padding: 40px 28px;
        border-radius: 20px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .trust-badges {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 40px;
    }

    /* Hide anno cards on tablet/mobile — too cramped */
    .anno-card,
    .floating-card {
        display: none;
    }

    .phone-mockup {
        transform: none;
    }

    .hero-browser-frame {
        max-width: 300px;
    }

    .feature-block,
    .feature-block.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        text-align: center;
    }

    .feature-image {
        order: -1;
    }

    .feature-list {
        text-align: left;
        display: inline-block;
    }

    .steps-container {
        flex-direction: column;
    }

    .step-connector {
        transform: rotate(90deg);
        height: 50px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-features {
        margin-top: 40px;
    }

    .about-feature-card:hover {
        transform: translateY(-5px);
    }

    /* Carousel responsive */
    .carousel-nav {
        right: 16px;
        padding: 16px 10px;
        gap: 12px;
    }

    .nav-dot {
        width: 10px;
        height: 10px;
    }

    .nav-dot.active {
        height: 24px;
    }

    .carousel-pause-btn {
        width: 36px;
        height: 36px;
    }

    .feature-image img {
        max-width: 350px;
    }

    .demo-video-container {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }

    .nav-links {
        display: none;
    }

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

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

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-card {
        padding: 32px 16px;
        border-radius: 16px;
    }

    h1 {
        font-size: 2rem;
    }

    .btn-large {
        padding: 14px 24px;
        font-size: 1rem;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .email-form {
        flex-direction: column;
    }

    .email-form input {
        min-width: 100%;
    }
}
/* ===== Payment Modal Styles (Dashboard-Matched) ===== */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15, 15, 17, 0.8);
    backdrop-filter: blur(12px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.modal-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: white;
    width: 100%;
    max-width: 480px;
    border-radius: 40px;
    position: relative;
    box-shadow: 0 25px 80px rgba(0,0,0,0.25);
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid var(--border);
    max-height: 90vh;
    overflow-y: auto;
}
.modal-content::-webkit-scrollbar { display: none; }
.modal-content { -ms-overflow-style: none; scrollbar-width: none; }

.modal-overlay.show .modal-content {
    transform: translateY(0);
}

.modal-pad {
    padding: 2rem;
}

/* Header Row */
.modal-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}
.modal-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--brand-dark);
    margin: 0;
    line-height: 1.2;
}
.modal-subtitle {
    font-size: 0.75rem;
    color: var(--brand-muted);
    font-weight: 500;
    margin: 4px 0 0;
}
.modal-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.faq-toggle-btn {
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.625rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: var(--bg-light);
    color: var(--brand-muted);
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}
.faq-toggle-btn:hover {
    color: var(--brand-dark);
}
.faq-toggle-btn.active {
    background: var(--primary);
    color: white;
}
.modal-close-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-light);
    border: none;
    font-size: 1.25rem;
    color: var(--brand-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    line-height: 1;
}
.modal-close-btn:hover {
    background: var(--primary-light);
    color: var(--primary);
}

/* FAQ Section */
.faq-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 1rem;
}
.faq-card {
    background: var(--bg-light);
    padding: 16px 20px;
    border-radius: 16px;
}
.faq-card h4 {
    font-size: 0.875rem;
    font-weight: 900;
    color: var(--brand-dark);
    margin: 0 0 8px;
}
.faq-card p {
    font-size: 0.75rem;
    color: var(--brand-muted);
    line-height: 1.6;
    margin: 0;
}
.faq-back-btn {
    width: 100%;
    padding: 14px;
    background: var(--brand-dark);
    color: white;
    font-size: 0.75rem;
    font-weight: 900;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s;
}
.faq-back-btn:hover {
    background: #000;
}

/* Step 0: Pricing Hero Card */
.pricing-hero-card {
    background: white;
    border-radius: 32px;
    border: 2px solid var(--border);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s;
}
.pricing-hero-card:hover {
    border-color: var(--primary);
}
.pricing-deal-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #fb923c;
    color: white;
    font-size: 0.625rem;
    font-weight: 800;
    padding: 6px 16px;
    border-bottom-left-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.pricing-hero-tier {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--brand-dark);
    margin: 0 0 1rem;
}
.pricing-hero-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 1.5rem;
}
.pricing-hero-amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--brand-dark);
    line-height: 1;
}
.pricing-hero-period {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--brand-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.pricing-hero-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.pricing-hero-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--brand-dark);
}
.check-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 900;
    flex-shrink: 0;
}
.get-deal-btn {
    width: 100%;
    padding: 16px;
    background: var(--primary);
    color: white;
    font-weight: 900;
    font-size: 0.95rem;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 12px 30px rgba(255, 90, 32, 0.3);
}
.get-deal-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(255, 90, 32, 0.4);
}
.pricing-hero-note {
    text-align: center;
    margin: 16px 0 0;
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--brand-muted);
    letter-spacing: 0.04em;
}

/* Step 1: Payment Form */
.payment-price-bar {
    background: var(--primary-light);
    padding: 20px 24px;
    border-radius: 32px;
    border: 1px solid rgba(255, 90, 32, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}
.price-bar-label {
    font-size: 0.75rem;
    font-weight: 900;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 2px;
}
.price-bar-sub {
    font-size: 0.625rem;
    font-weight: 700;
    color: rgba(232, 98, 42, 0.6);
}
.price-bar-amount {
    font-size: 1.875rem;
    font-weight: 900;
    color: var(--primary);
}

.payment-tabs {
    display: flex;
    padding: 6px;
    background: var(--bg-light);
    border-radius: 16px;
    border: 1px solid var(--border);
    margin-bottom: 1.25rem;
}
.payment-tab {
    flex: 1;
    padding: 12px;
    border: none;
    background: none;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--brand-muted);
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.payment-tab.active {
    background: white;
    color: var(--primary);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid var(--border);
}

.payment-method-content {
    display: none;
    margin-bottom: 1.25rem;
}
.payment-method-content.active {
    display: block;
}

/* Binance QR */
.qr-container {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 24px;
    border: 1px solid var(--border);
    text-align: center;
}
.qr-box {
    max-width: 180px;
    max-height: 180px;
    background: white;
    margin: 0 auto 12px;
    padding: 8px;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}
.qr-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.qr-hint {
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--brand-muted);
    letter-spacing: 0.03em;
    margin: 0;
}
.qr-hint strong {
    color: var(--primary);
}

/* Payoneer */
.payoneer-box {
    background: var(--bg-light);
    padding: 1.75rem;
    border-radius: 32px;
    border: 1px solid var(--border);
    text-align: center;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.payoneer-icon-circle {
    width: 56px;
    height: 56px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    font-size: 1.5rem;
}
.payoneer-box h4 {
    font-size: 0.875rem;
    font-weight: 900;
    color: var(--brand-dark);
    margin: 0 0 4px;
}
.payoneer-box p {
    font-size: 0.6875rem;
    color: var(--brand-muted);
    font-weight: 500;
    margin: 0 0 16px;
}
.recipient-label {
    font-size: 0.625rem;
    font-weight: 900;
    color: var(--brand-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
    margin-left: 4px;
    text-align: left;
}
.copy-email-box {
    width: 100%;
    height: 48px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding: 0 16px;
    cursor: pointer;
    transition: all 0.2s;
    gap: 8px;
}
.copy-email-box:hover {
    border-color: var(--primary);
}
.copy-email-box code {
    flex: 1;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--brand-dark);
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.copy-icon {
    flex-shrink: 0;
    opacity: 0.4;
    transition: opacity 0.2s;
}
.copy-email-box:hover .copy-icon {
    opacity: 1;
}

/* Form Row */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 1rem;
}
@media (max-width: 480px) {
    .form-row { grid-template-columns: 1fr; }
}
.form-group {
    margin-bottom: 0;
}
.form-group label {
    display: block;
    font-size: 0.625rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--brand-muted);
    margin-bottom: 8px;
    margin-left: 4px;
}
.form-group input {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--brand-dark);
    transition: all 0.2s;
    outline: none;
    font-family: 'Inter', sans-serif;
}
.form-group input::placeholder {
    font-weight: 500;
    color: var(--brand-muted);
}
.form-group input:focus {
    background: white;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 90, 32, 0.08);
}
.field-hint {
    font-size: 0.6875rem;
    color: var(--brand-muted);
    margin-top: 6px;
    margin-left: 4px;
}

/* Submit Button */
.submit-payment-btn {
    width: 100%;
    padding: 16px;
    background: var(--primary);
    color: white;
    font-weight: 900;
    font-size: 0.875rem;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 12px 30px rgba(255, 90, 32, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
}
.submit-payment-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(255, 90, 32, 0.3);
}
.submit-payment-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}
.submit-check {
    font-size: 1rem;
}

/* Step 3: Success Screen */
#paymentSuccess {
    text-align: center;
    padding: 3rem 1rem;
}
.success-icon-box {
    width: 96px;
    height: 96px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 12px 30px rgba(255, 90, 32, 0.15);
}
.success-title {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--brand-dark);
    margin: 0 0 12px;
}
.success-desc {
    font-size: 0.875rem;
    color: var(--brand-muted);
    font-weight: 500;
    line-height: 1.7;
    margin: 0 0 2.5rem;
    padding: 0 1rem;
}
.success-desc strong {
    color: var(--brand-dark);
}
.success-next-step {
    background: var(--bg-light);
    padding: 16px 20px;
    border-radius: 16px;
    border: 1px solid var(--border);
    margin-bottom: 2rem;
    text-align: left;
}
.next-step-label {
    font-size: 0.625rem;
    font-weight: 900;
    color: var(--brand-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}
.next-step-text {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin: 0;
    line-height: 1.5;
}
.success-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px;
    background: var(--primary);
    color: white;
    font-weight: 900;
    font-size: 0.875rem;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 12px 30px rgba(255, 90, 32, 0.2);
    font-family: 'Inter', sans-serif;
}
.success-cta-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(255, 90, 32, 0.3);
}