/* ==========================================
   LUMO COFFEE - LIGHT THEME LANDING PAGE
   Modern 2026 Design with Warm Coffee Aesthetics
   ========================================== */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Mobile Performance: Eliminate 300ms tap delay on all interactive elements */
button,
a,
input,
select,
textarea,
[role="button"],
[onclick] {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

/* Button Loading Spinner */
.btn-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: btn-spin 0.8s linear infinite;
}

@keyframes btn-spin {
    to {
        transform: rotate(360deg);
    }
}


:root {
    /* Colors - Warm Light Coffee Theme */
    --primary: #d46211;
    --primary-hover: #c25810;
    --liquid-gold: #E6B325;
    --amber-glow: #92400E;
    --creamy-beige: #FDFBF7;
    --espresso-deep: #221810;
    --cream-white: #FFFCF5;

    /* Transparency variants */
    --primary-10: rgba(212, 98, 17, 0.1);
    --primary-15: rgba(212, 98, 17, 0.15);
    --primary-20: rgba(212, 98, 17, 0.2);
    --espresso-70: rgba(34, 24, 16, 0.7);
    --espresso-50: rgba(34, 24, 16, 0.5);
    --espresso-30: rgba(34, 24, 16, 0.3);
    --espresso-10: rgba(34, 24, 16, 0.1);
    --espresso-05: rgba(34, 24, 16, 0.05);

    /* Glass effects */
    --glass-bg: rgba(255, 255, 255, 0.4);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-shadow: 0 8px 32px 0 rgba(146, 64, 14, 0.1);

    /* Spacing */
    --section-padding: 120px;
    --container-padding: 24px;

    /* Border radius */
    --radius-blob: 3rem;
    --radius-liquid: 5rem;
    --radius-pill: 9999px;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

/* Scroll-reveal animations - GPU accelerated for performance */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* Elements waiting to animate - use visibility instead of display for better paint */
.feature-card,
.stat-card,
.workflow-step,
.testimonial-card {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
    will-change: transform, opacity;
}

/* Animated state - clean GPU-accelerated animation */
.animate-fade-in-up {
    animation: fadeInUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Disable animation setup on mobile (JS handles this differently) */
@media (max-width: 1024px) {

    .feature-card,
    .stat-card,
    .workflow-step,
    .testimonial-card {
        opacity: 1;
        transform: none;
        will-change: auto;
    }
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, var(--creamy-beige) 0%, #FFF8F0 50%, #F1E4D1 100%);
    background-attachment: fixed;
    color: var(--espresso-deep);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Ambient Background Blobs */
.ambient-blobs {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -10;
    overflow: hidden;
}

.ambient-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.ambient-blob-1 {
    top: -6rem;
    left: -6rem;
    width: 24rem;
    height: 24rem;
    background: var(--primary-10);
    filter: blur(120px);
}

.ambient-blob-2 {
    top: 50%;
    right: 0;
    width: 20rem;
    height: 20rem;
    background: rgba(230, 179, 37, 0.2);
    filter: blur(100px);
}

.ambient-blob-3 {
    bottom: 0;
    left: 25%;
    width: 31rem;
    height: 31rem;
    background: rgba(146, 64, 14, 0.05);
    filter: blur(150px);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: 0.015em;
    font-weight: 700;
    color: var(--espresso-deep);
}

/* Container */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .section-container {
        padding: 0 4rem;
    }
}

/* Section spacing */
section {
    position: relative;
    scroll-margin-top: 100px;
}

/* ==========================================
   SECTION SEPARATORS
   Subtle warm gradient dividers between sections
   Aesthetic: Organic warmth with glass-like translucency
   ========================================== */

/* Apply separator after sections (except hero, last sections) */
.features-section::after,
.ai-demo-section::after,
.smart-optimizer::after,
.screenshots-section::after,
.access-section::after,
.comparison-section::after,
.story-section::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(600px, 70%);
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(212, 98, 17, 0.08) 15%,
            rgba(230, 179, 37, 0.2) 50%,
            rgba(212, 98, 17, 0.08) 85%,
            transparent 100%);
}

/* Optional: Add a small decorative center dot for certain sections */
.features-section::before,
.smart-optimizer::before,
.access-section::before {
    content: '';
    display: block;
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, var(--primary), var(--liquid-gold));
    border-radius: 50%;
    opacity: 0.4;
    z-index: 1;
}

/* Subtle glow effect on separators for premium feel */
.smart-optimizer::after,
.access-section::after {
    box-shadow: 0 0 20px rgba(230, 179, 37, 0.15);
}

/* Glass Effect Card */
.liquid-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

/* Liquid Shadow */
.liquid-shadow {
    box-shadow: 0 20px 50px rgba(212, 98, 17, 0.15);
}

/* Blob Shape */
.blob-shape {
    border-radius: 60% 40% 70% 30% / 40% 50% 60% 50%;
}

/* ==========================================
   NAVIGATION
   ========================================== */
.nav {
    position: sticky;
    top: 0.5rem;
    z-index: 1000;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .nav {
        top: 1rem;
        padding: 0 2.5rem;
    }
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: var(--radius-pill);
}

@media (min-width: 768px) {
    .nav-container {
        padding: 0.75rem 2rem;
    }
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    z-index: 1001;
    text-decoration: none;
}

.logo-icon {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 0 8px rgba(242, 207, 123, 0.4));
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {

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

    50% {
        transform: translateY(-2px) rotate(3deg);
    }
}

.logo-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--espresso-deep);
    letter-spacing: -0.5px;
}

.logo-highlight {
    background: linear-gradient(135deg, var(--primary), var(--amber-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    color: var(--espresso-70);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--liquid-gold));
    transition: var(--transition);
}

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

.nav-link:hover::after {
    width: 100%;
}

.nav-link-login {
    color: var(--espresso-50);
    font-size: 0.8125rem;
}

.nav-link-login:hover {
    color: var(--primary);
}

/* Nav CTA Button */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1rem 2rem;
    border-radius: 0.875rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.cta-btn:hover::before {
    width: 400px;
    height: 400px;
}

.cta-btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--amber-glow) 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(212, 98, 17, 0.3);
}

.cta-btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 32px rgba(212, 98, 17, 0.4);
}

.cta-btn-primary:active {
    transform: translateY(-1px) scale(0.98);
}

.cta-btn-nav {
    padding: 0.75rem 1.5rem;
    font-size: 0.8125rem;
    font-weight: 700;
}

.cta-btn-secondary {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 98, 17, 0.25);
    color: var(--primary);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.6);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.cta-btn .material-symbols-outlined {
    font-size: 1.25rem;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.cta-btn:hover .material-symbols-outlined {
    transform: scale(1.1) rotate(5deg);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 10001;
    position: relative;
}

@media (min-width: 1024px) {
    .nav-toggle {
        display: none;
    }
}

.nav-toggle span {
    width: 24px;
    height: 2.5px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
    display: block;
}

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

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

/* ==========================================
   HERO SECTION
   ========================================== */

/* Hero Decorative Orbs - Hidden on mobile for performance */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    will-change: auto;
    /* Only promote to GPU when needed */
}

.hero-orb-1 {
    top: -20%;
    left: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 98, 17, 0.12) 0%, transparent 70%);
    filter: blur(100px);
}

.hero-orb-2 {
    top: 10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(230, 179, 37, 0.1) 0%, transparent 70%);
    filter: blur(80px);
}

.hero-orb-3 {
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(212, 98, 17, 0.08) 0%, transparent 70%);
    filter: blur(100px);
}

/* Hide expensive blur orbs on mobile */
@media (max-width: 768px) {
    .hero-orb {
        display: none !important;
    }
}

.hero {
    padding: 7rem 0 8rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

@media (min-width: 1024px) {
    .hero {
        flex-direction: row;
        align-items: center;
        gap: 6rem;
    }
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-pill);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin-bottom: 0px;
}

.hero-badge .material-symbols-outlined {
    font-size: 0.875rem;
    color: var(--primary);
}

.hero-badge-text {
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--amber-glow);
}

.hero-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 60px;
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.02em;
    color: var(--espresso-deep);
    margin-bottom: 10px;
}

/* Hero title rows — each row is a block line */
.hero-title-row {
    display: block;
}

.hero-title-row-mid {
    font-size: 1.25em;
    padding: 0.1em 0;
}

/* Mobile-only line breaks (hidden on desktop) */
.hero-br-mobile {
    display: none;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.25rem;
    }
}

.hero-title-gradient {
    background: linear-gradient(135deg, #f2cf7b, #D46211, #7d3f26);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title-accent {
    background: linear-gradient(135deg, var(--espresso-deep), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--espresso-70);
    line-height: 1.9;
    max-width: 35rem;
    letter-spacing: 0.02em;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 1rem 0;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary), var(--amber-glow));
    color: white;
    padding: 1.5rem 3rem;
    border-radius: var(--radius-liquid);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 20px 50px rgba(212, 98, 17, 0.15);
    transition: var(--transition);
}

.btn-primary:hover {
    transform: scale(1.05);
}

.btn-primary .material-symbols-outlined {
    font-size: 1.25rem;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid white;
    color: var(--espresso-deep);
    padding: 1.5rem 3rem;
    border-radius: var(--radius-liquid);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.6);
}

.btn-secondary .material-symbols-outlined {
    font-size: 1.25rem;
}

/* Button with Badge (Founders Pricing style) */
.btn-with-badge {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--amber-glow) 100%);
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 30px rgba(212, 98, 17, 0.3);
}

.btn-with-badge:hover {
    transform: scale(1.03);
    box-shadow: 0 16px 40px rgba(212, 98, 17, 0.4);
}

.btn-badge-label {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.9);
}

.btn-badge-label .material-symbols-outlined {
    font-size: 0.875rem;
}

.btn-main-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.375rem;
    font-weight: 800;
    color: white;
}

.btn-main-text .material-symbols-outlined {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.btn-with-badge:hover .btn-main-text .material-symbols-outlined {
    transform: translateX(4px);
}

/* Dark Button (Watch Demo style) */
.btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--espresso-deep);
    color: white;
    padding: 1.25rem 2rem;
    border-radius: var(--radius-lg);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(34, 24, 16, 0.3);
}

.btn-dark:hover {
    background: #2d1f15;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(34, 24, 16, 0.4);
}

.btn-dark .material-symbols-outlined {
    font-size: 1.25rem;
    color: var(--liquid-gold);
}

/* Hero Podcast Teaser */
.hero-podcast-teaser {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem 1rem 1rem;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    width: fit-content;
    margin-top: 0.5rem;
}

.hero-podcast-teaser:hover {
    opacity: 0.8;
}

.hero-podcast-teaser.playing .podcast-teaser-icon {
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {

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

    50% {
        transform: scale(1.05);
    }
}

.podcast-teaser-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.podcast-teaser-icon .material-symbols-outlined {
    font-size: 1.75rem;
}

.podcast-teaser-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.podcast-teaser-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--espresso-deep);
    line-height: 1.3;
}

.podcast-teaser-meta {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    margin-top: 0.25rem;
}

.podcast-teaser-play {
    font-size: 1rem !important;
    color: var(--primary);
}

.podcast-teaser-meta span:last-child {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
}

/* Hero Social Proof */
.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 0.5rem;
}

.hero-avatars {
    display: flex;
    margin-left: 1rem;
}

.hero-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-left: -1rem;
    background-size: cover;
    background-position: center;
}

.hero-social-text {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(146, 64, 14, 0.7);
}

/* Hero Visual */
.hero-visual {
    flex: 1;
    position: relative;
}

.hero-visual-blob {
    position: absolute;
    inset: -4rem;
    background: linear-gradient(135deg, rgba(230, 179, 37, 0.2), rgba(212, 98, 17, 0.2));
    border-radius: 60% 40% 70% 30% / 40% 50% 60% 50%;
    z-index: -1;
    opacity: 0.7;
}

.hero-image-container {
    position: relative;
    border-radius: 5rem;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(212, 98, 17, 0.15);
    transform: rotate(3deg);
}

@media (max-width: 1024px) {
    .hero-image-container {
        transform: rotate(0deg);
    }
}

.hero-image {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    transform: scale(1.1);
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(34, 24, 16, 0.4), transparent, transparent);
}

.hero-image-card {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 88%;
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 2rem;
    padding: 1.5rem 2rem;
    overflow: hidden;
}

/* Floating orbs for hero card */
.hero-card-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
}

.hero-card-orb-1 {
    top: -50%;
    right: -20%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(212, 98, 17, 0.4) 0%, transparent 70%);
    animation: orbFloat 6s ease-in-out infinite;
}

.hero-card-orb-2 {
    bottom: -40%;
    left: -15%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(230, 179, 37, 0.35) 0%, transparent 70%);
    animation: orbFloat 8s ease-in-out infinite reverse;
}

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

.hero-image-card-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.9);
}

.hero-image-card-label .material-symbols-outlined {
    font-size: 0.875rem;
    color: var(--liquid-gold);
}

.hero-image-card-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.375rem;
    font-weight: 600;
    color: white;
    margin-top: 0.375rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}


/* ==========================================
   PODCAST TEASER (Hero)
   ========================================== */
.hero-podcast {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.podcast-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--espresso-deep);
    border-radius: 50%;
    color: white;
}

.podcast-icon .material-symbols-outlined {
    font-size: 1.25rem;
}

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

.podcast-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--espresso-deep);
}

.podcast-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--espresso-50);
}

.podcast-meta .material-symbols-outlined {
    font-size: 1rem;
    color: var(--primary);
}

/* ==========================================
   STATS SECTION
   ========================================== */
.stats-section {
    padding: 4rem 0;
}

.stats-wrapper {
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 3rem;
    padding: 3rem 2rem;
    overflow: hidden;
}

@media (min-width: 768px) {
    .stats-wrapper {
        padding: 4rem;
    }
}

.stats-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.stats-orb-1 {
    top: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 98, 17, 0.15) 0%, transparent 70%);
    animation: orbFloat 8s ease-in-out infinite;
}

.stats-orb-2 {
    bottom: -30%;
    right: -10%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(230, 179, 37, 0.12) 0%, transparent 70%);
    animation: orbFloat 10s ease-in-out infinite reverse;
}

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

.stats-header {
    text-align: center;
    margin-bottom: 2rem;
}

.stats-header-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stats-header-text .material-symbols-outlined {
    color: var(--primary);
}

.stats-header h2 {
    font-size: 1.875rem;
}

.stats-header-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: rgba(146, 64, 14, 0.6);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.stats-header-meta .material-symbols-outlined {
    color: var(--primary);
    font-size: 1.125rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-blob);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.stat-value {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .stat-value {
        font-size: 3.125rem;
    }
}

.stat-label {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--espresso-50);
}

/* ==========================================
   FEATURES SECTION
   ========================================== */
.features-section {
    padding: 6rem 0;
}

.features-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 5rem;
}

.features-header .section-badge {
    margin-bottom: 1.5rem;
}

.features-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .features-header h2 {
        font-size: 3.125rem;
    }
}

.features-header p {
    font-size: 1.25rem;
    color: var(--espresso-50);
    line-height: 1.8;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.features-grid .feature-card {
    flex: 1 1 100%;
    max-width: 100%;
}

@media (min-width: 768px) {
    .features-grid .feature-card {
        flex: 0 1 calc(33.333% - 1.34rem);
        max-width: calc(33.333% - 1.34rem);
    }
}

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-blob);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
}

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

.feature-image {
    width: calc(100% + 6rem);
    margin: -3rem -3rem 1.5rem -3rem;
    border-radius: var(--radius-blob) var(--radius-blob) 0 0;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    display: block;
    aspect-ratio: 16/10;
    object-fit: cover;
    vertical-align: top;
}

.feature-icon {
    width: 5rem;
    height: 5rem;
    border-radius: var(--radius-blob);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.5rem;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: var(--transition-slow);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon.orange {
    background: #FFF1E6;
    color: var(--primary);
}

.feature-icon.amber {
    background: #FEF3C7;
    color: var(--amber-glow);
}

.feature-icon.dark {
    background: rgba(34, 24, 16, 0.05);
    color: var(--espresso-deep);
}

.feature-icon.espresso {
    background: rgba(34, 24, 16, 0.08);
    color: var(--espresso-deep);
}

.feature-icon.warm {
    background: #FFF7ED;
    color: #EA580C;
}

.feature-icon.cream {
    background: linear-gradient(135deg, #FEF3C7, #FFF7ED);
    color: var(--primary);
}

.feature-icon .material-symbols-outlined {
    font-size: 2.25rem;
}

.feature-tag {
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    padding: 0.375rem 1rem;
    border-radius: var(--radius-pill);
    margin-bottom: 1rem;
}

.feature-tag.orange {
    background: #FFF7ED;
    color: var(--primary);
}

.feature-tag.amber {
    background: #FFFBEB;
    color: var(--amber-glow);
}

.feature-tag.gray {
    background: #F3F4F6;
    color: var(--espresso-50);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-card p {
    font-size: 1.125rem;
    color: var(--espresso-50);
    line-height: 1.9;
}

/* ==========================================
   AI DEMO / HOW IT WORKS SECTION
   ========================================== */
.ai-demo-section {
    padding: 6rem 0 8rem;
}

.demo-header {
    text-align: center;
    margin-bottom: 5rem;
}

.demo-header .section-badge {
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--espresso-deep);
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3.25rem;
    }
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--espresso-50);
    max-width: 32rem;
    margin: 0 auto;
}

.demo-flow {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .demo-flow {
        flex-direction: row;
        align-items: flex-start;
        justify-content: center;
        gap: 1.5rem;
    }
}

.demo-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    max-width: 340px;
    width: 100%;
}

.demo-number {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, var(--primary), var(--amber-glow));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(212, 98, 17, 0.3);
}

.demo-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.demo-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.demo-icon.camera {
    background: #FFF7ED;
    color: var(--primary);
}

.demo-icon.brain {
    background: #FEF3C7;
    color: var(--amber-glow);
}

.demo-icon.success {
    background: #ECFDF5;
    color: #059669;
}

.demo-icon .material-symbols-outlined {
    font-size: 1.75rem;
}

.demo-card {
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    width: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.demo-card-header {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--espresso-deep);
    margin-bottom: 1rem;
    text-align: center;
}

.demo-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--espresso-05);
    font-size: 0.875rem;
}

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

.detail-row span:first-child {
    color: var(--espresso-50);
}

.detail-row .highlight {
    font-weight: 600;
    color: var(--primary);
}

.processing-bars {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.proc-bar {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.proc-bar span {
    font-size: 0.75rem;
    color: var(--espresso-50);
}

.bar-fill {
    height: 6px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--liquid-gold) 100%);
    border-radius: 3px;
    animation: fillBar 2s ease-in-out infinite;
}

@keyframes fillBar {
    0% {
        width: 0%;
    }

    50% {
        width: 100%;
    }

    100% {
        width: 100%;
        opacity: 0.5;
    }
}

.proc-bar:nth-child(2) .bar-fill {
    animation-delay: 0.3s;
}

.proc-bar:nth-child(3) .bar-fill {
    animation-delay: 0.6s;
}

.recipe-params {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.param {
    display: flex;
    justify-content: space-between;
    padding: 0.625rem 0.75rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 0.5rem;
}

.param span {
    font-size: 0.75rem;
    color: var(--espresso-50);
}

.param strong {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
}

.feedback-section {
    background: rgba(212, 98, 17, 0.05);
    border-radius: 0.75rem;
    padding: 1rem;
}

.feedback-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.feedback-header .material-symbols-outlined {
    font-size: 1rem;
    color: var(--primary);
}

.feedback-header span:last-child {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--espresso-deep);
}

.feedback-text {
    font-size: 0.75rem;
    color: var(--espresso-50);
    line-height: 1.5;
}

.demo-label {
    font-size: 0.875rem;
    color: var(--espresso-50);
    text-align: center;
    font-weight: 500;
}

.demo-arrow {
    display: none;
    color: var(--espresso-30);
}

@media (min-width: 1024px) {
    .demo-arrow {
        display: flex;
        align-items: center;
        padding-top: 8rem;
    }
}

.demo-arrow .material-symbols-outlined {
    font-size: 2rem;
}

/* ==========================================
   USE YOUR WAY / FLEXIBILITY SECTION
   ========================================== */
.use-your-way {
    padding: 6rem 0;
}

.uyw-wrapper {
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 3rem;
    padding: 3rem 2rem;
    overflow: hidden;
}

@media (min-width: 768px) {
    .uyw-wrapper {
        padding: 4rem;
    }
}

.uyw-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.uyw-orb-1 {
    top: -20%;
    right: -15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 98, 17, 0.15) 0%, transparent 70%);
    animation: orbFloat 8s ease-in-out infinite;
}

.uyw-orb-2 {
    bottom: -25%;
    left: -10%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(34, 24, 16, 0.08) 0%, transparent 70%);
    animation: orbFloat 10s ease-in-out infinite reverse;
}

.uyw-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

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

.uyw-text .section-badge {
    margin-bottom: 1.5rem;
}

.uyw-text .section-title {
    margin-bottom: 1rem;
}

.uyw-text .section-subtitle {
    max-width: 36rem;
    margin: 0 auto;
}

.uyw-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .uyw-options {
        grid-template-columns: repeat(2, 1fr);
    }
}

.uyw-option {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-blob);
    padding: 2.5rem;
    transition: var(--transition);
}

.uyw-option:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.uyw-option-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.uyw-option-icon.ai {
    background: linear-gradient(135deg, var(--primary), var(--amber-glow));
    color: white;
    box-shadow: 0 8px 20px rgba(212, 98, 17, 0.25);
}

.uyw-option-icon.manual {
    background: var(--espresso-deep);
    color: white;
    box-shadow: 0 8px 20px rgba(34, 24, 16, 0.2);
}

.uyw-option-icon .material-symbols-outlined {
    font-size: 1.75rem;
}

.uyw-option h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--espresso-deep);
    margin-bottom: 1rem;
}

.uyw-option>p {
    font-size: 1rem;
    color: var(--espresso-50);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.uyw-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.uyw-features li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9375rem;
    color: var(--espresso-70);
}

.uyw-features .material-symbols-outlined {
    font-size: 1rem;
    color: var(--primary);
}

/* ==========================================
   SMART OPTIMIZER / DIAL-IN COACH SECTION
   Premium 2026 Design - Luxury Minimal with Warm Undertones
   DFII: 13 (Excellent) - High impact, great fit, feasible
   Aesthetic: Warm Glassmorphism with Layered Depth
   ========================================== */
.smart-optimizer {
    padding: 30px 0 6rem 0;
    position: relative;
}

/* Premium Glass Wrapper */
.optimizer-wrapper {
    position: relative;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.85) 0%,
            rgba(255, 248, 240, 0.9) 50%,
            rgba(255, 255, 255, 0.8) 100%);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 3rem;
    padding: 4rem 2rem;
    overflow: hidden;
    box-shadow:
        0 4px 24px rgba(212, 98, 17, 0.06),
        0 20px 80px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

@media (min-width: 768px) {
    .optimizer-wrapper {
        padding: 5rem;
    }
}

@media (min-width: 1200px) {
    .optimizer-wrapper {
        padding: 5rem 6rem;
    }
}

/* Decorative gradient orbs - layered depth */
.optimizer-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.optimizer-orb-1 {
    top: -15%;
    right: -8%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(212, 98, 17, 0.2) 0%, transparent 70%);
    animation: orbFloat 8s ease-in-out infinite;
}

.optimizer-orb-2 {
    bottom: -20%;
    left: -12%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(230, 179, 37, 0.15) 0%, transparent 70%);
    animation: orbFloat 12s ease-in-out infinite reverse;
}

.optimizer-orb-3 {
    top: 40%;
    right: 20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(242, 207, 123, 0.1) 0%, transparent 70%);
    animation: orbFloat 15s ease-in-out infinite;
    animation-delay: -5s;
}

@keyframes orbFloat {

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

    33% {
        transform: translate(15px, -25px) scale(1.03);
    }

    66% {
        transform: translate(-10px, 15px) scale(0.98);
    }
}

.optimizer-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .optimizer-layout {
        grid-template-columns: 1fr 1.2fr;
        gap: 5rem;
        align-items: center;
    }
}

.optimizer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.optimizer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.optimizer-badge .material-symbols-outlined {
    font-size: 1rem;
    color: var(--primary);
}

.optimizer-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 3.3rem;
    /* +20% on mobile */
    font-weight: 700;
    line-height: 1.15;
    color: var(--espresso-deep);
}

@media (min-width: 768px) {
    .optimizer-title {
        font-size: 3.5rem;
    }
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--liquid-gold) 50%, var(--amber-glow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.optimizer-subtitle {
    font-size: 1.125rem;
    color: var(--espresso-50);
    line-height: 1.8;
    max-width: 28rem;
}

.optimizer-subtitle strong {
    color: var(--espresso-deep);
}

/* Flow Steps */
.optimizer-flow {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 1rem;
}

.flow-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 0;
}

.flow-icon {
    width: 3rem;
    height: 3rem;
    min-width: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: var(--espresso-deep);
    transition: var(--transition);
}

.flow-step:hover .flow-icon {
    transform: scale(1.1);
}

.flow-icon.ai {
    background: linear-gradient(135deg, var(--primary), var(--amber-glow));
    color: white;
    border: none;
    box-shadow: 0 8px 20px rgba(212, 98, 17, 0.3);
}

.flow-icon.success {
    background: #ECFDF5;
    color: #059669;
    border-color: rgba(5, 150, 105, 0.2);
}

.flow-icon .material-symbols-outlined {
    font-size: 1.25rem;
}

.flow-text h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--espresso-deep);
    margin-bottom: 0.25rem;
}

.flow-text p {
    font-size: 0.9375rem;
    color: var(--espresso-50);
    line-height: 1.5;
}

.flow-connector {
    width: 2px;
    height: 1.5rem;
    background: linear-gradient(to bottom, var(--espresso-10), var(--primary-20));
    margin-left: 1.4375rem;
    border-radius: 1px;
}

/* Optimizer Stats */
.optimizer-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 2rem;
    width: fit-content;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    margin-top: 1rem;
}

.opt-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.opt-stat-value {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.opt-stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--espresso-50);
}

.opt-stat-divider {
    width: 1px;
    height: 3rem;
    background: var(--espresso-10);
}

/* Bento Grid Visuals */
.optimizer-visuals {
    position: relative;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto auto;
    gap: 1rem;
}

@media (min-width: 768px) {
    .bento-grid {
        gap: 1.25rem;
    }
}

.bento-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 1.5rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.bento-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.1),
        0 8px 20px rgba(212, 98, 17, 0.08);
}

/* Main Phone Card */
.bento-main {
    grid-column: 1 / -1;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 248, 240, 0.8) 100%);
}

.bento-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--espresso-50);
    margin-bottom: 1rem;
}

.bento-label .material-symbols-outlined {
    font-size: 1rem;
    color: var(--primary);
}

.bento-phone {
    background: var(--espresso-deep);
    border-radius: 1.5rem;
    padding: 0.75rem;
    position: relative;
    overflow: hidden;
}

.phone-notch {
    width: 80px;
    height: 6px;
    background: #1a1410;
    border-radius: 3px;
    margin: 0 auto 1rem;
}

.phone-content {
    background: linear-gradient(180deg, #2d1f15 0%, #1a1410 100%);
    border-radius: 1rem;
    padding: 1.5rem;
}

.feedback-ui {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.taste-slider {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.taste-label {
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    width: 3rem;
    text-align: center;
}

.taste-label.sour {
    color: #fbbf24;
}

.taste-label.bitter {
    color: #a78bfa;
}

.slider-track {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    position: relative;
}

.slider-fill {
    height: 100%;
    background: linear-gradient(90deg, #fbbf24, var(--primary));
    border-radius: 4px;
}

.slider-fill.balanced {
    background: linear-gradient(90deg, #10b981, #059669);
}

.slider-thumb {
    position: absolute;
    top: 50%;
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.feedback-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem;
    background: linear-gradient(135deg, var(--primary), var(--amber-glow));
    border-radius: 0.75rem;
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    margin-top: 0.5rem;
}

.feedback-action .material-symbols-outlined {
    font-size: 1rem;
}

/* Adjustment Cards */
.bento-adjustment {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    animation: floatCard 4s ease-in-out infinite;
}

.bento-adjustment.grind {
    animation-delay: 0s;
}

.bento-adjustment.time {
    animation-delay: 1.3s;
}

.bento-adjustment.temp {
    animation-delay: 2.6s;
}

@keyframes floatCard {

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

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

.adjustment-icon {
    width: 2.5rem;
    height: 2.5rem;
    min-width: 2.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bento-adjustment.grind .adjustment-icon {
    background: #FEF3C7;
    color: #B45309;
}

.bento-adjustment.time .adjustment-icon {
    background: #DBEAFE;
    color: #1D4ED8;
}

.bento-adjustment.temp .adjustment-icon {
    background: #FCE7F3;
    color: #BE185D;
}

.adjustment-icon .material-symbols-outlined {
    font-size: 1.25rem;
}

.adjustment-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.adjustment-action {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--espresso-50);
}

.adjustment-value {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--espresso-deep);
}

.adjustment-arrow {
    color: var(--espresso-30);
}

.adjustment-arrow .material-symbols-outlined {
    font-size: 1.125rem;
}

/* Result Card */
.bento-result {
    grid-column: 1 / -1;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(5, 150, 105, 0.12) 100%);
    border-color: rgba(16, 185, 129, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.result-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.result-icon .material-symbols-outlined {
    font-size: 1.25rem;
    color: #10B981;
}

.result-text {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.result-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--espresso-deep);
}

.result-subtitle {
    font-size: 0.85rem;
    color: var(--espresso-50);
}

.result-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #059669;
    color: white;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.result-badge .material-symbols-outlined {
    font-size: 0.875rem;
}

.result-params {
    display: flex;
    gap: 1.5rem;
}

.result-param {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.result-param .param-label {
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--espresso-50);
}

.result-param .param-value {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #059669;
}

/* ==========================================
   SCREENSHOTS / INTERFACE SECTION
   ========================================== */
.screenshots-section {
    padding: 8rem 0;
}

.screenshots-header {
    text-align: center;
    margin-bottom: 4rem;
}

.screenshots-header .section-badge {
    margin-bottom: 1.5rem;
}

.screenshots-header .section-title {
    margin-bottom: 1rem;
}

/* Video Teaser */
.video-teaser {
    max-width: 900px;
    margin: 0 auto 5rem;
}

.video-teaser-wrapper {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

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

.video-teaser-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(ellipse at center, rgba(212, 98, 17, 0.2) 0%, transparent 70%);
    z-index: 0;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {

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

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.video-teaser-thumbnail {
    position: relative;
    z-index: 1;
}

.video-teaser-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.video-teaser-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
    border-radius: 2rem;
}

.video-play-btn {
    width: 5rem;
    height: 5rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.video-teaser-wrapper:hover .video-play-btn {
    transform: scale(1.1);
    background: white;
}

.video-play-btn .material-symbols-outlined {
    font-size: 2.5rem;
    color: var(--primary);
    margin-left: 4px;
}

.video-teaser-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Screenshots Grid */
.screenshots-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .screenshots-grid {
        grid-template-columns: repeat(3, 1fr);
        align-items: stretch;
    }
}

.screenshot-card {
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 1.5rem;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.screenshot-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.screenshot-image-wrapper {
    position: relative;
    background: linear-gradient(135deg, #1a1410, #2d1f15);
    padding: 1.5rem 1.5rem 0;
    overflow: hidden;
    flex-shrink: 0;
    height: 280px;
}

@media (min-width: 1200px) {
    .screenshot-image-wrapper {
        height: 320px;
    }
}

.screenshot-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    background: linear-gradient(135deg, var(--primary), var(--amber-glow));
    border-radius: 2rem;
    font-size: 0.625rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 10;
}

.screenshot-badge .material-symbols-outlined {
    font-size: 0.75rem;
}

.screenshot-badge.library {
    background: linear-gradient(135deg, #3B82F6, #8B5CF6);
}

.screenshot-badge.optimize {
    background: linear-gradient(135deg, #10B981, #059669);
}

.screenshot-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    border-radius: 0.75rem 0.75rem 0 0;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
}

.screenshot-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.screenshot-content h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--espresso-deep);
    margin-bottom: 0.5rem;
}

.screenshot-content p {
    font-size: 0.9375rem;
    color: var(--espresso-50);
    line-height: 1.6;
    flex-grow: 1;
}

/* ==========================================
   ACCESS ANYWHERE SECTION
   ========================================== */
.access-section {
    padding: 6rem 0;
}

.access-wrapper {
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 3rem;
    padding: 4rem 2rem;
    overflow: hidden;
}

@media (min-width: 768px) {
    .access-wrapper {
        padding: 5rem;
    }
}

.access-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.access-orb-1 {
    top: -20%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 98, 17, 0.12) 0%, transparent 70%);
    animation: orbFloat 8s ease-in-out infinite;
}

.access-orb-2 {
    bottom: -20%;
    left: -10%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    animation: orbFloat 10s ease-in-out infinite reverse;
}

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

.access-header {
    text-align: center;
    margin-bottom: 3rem;
}

.access-header .section-badge {
    margin-bottom: 1.5rem;
}

.access-header .section-title {
    margin-bottom: 1rem;
}

.access-header .section-subtitle {
    max-width: 28rem;
    margin: 0 auto;
}

/* Device Cards */
.access-devices {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.device-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 2rem 2.5rem;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 1.5rem;
    transition: var(--transition);
    min-width: 140px;
}

.device-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.device-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--primary), var(--amber-glow));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 20px rgba(212, 98, 17, 0.25);
}

.device-icon.tablet {
    background: linear-gradient(135deg, #8B5CF6, #A78BFA);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.25);
}

.device-icon.desktop {
    background: linear-gradient(135deg, #3B82F6, #60A5FA);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.25);
}

.device-icon .material-symbols-outlined {
    font-size: 1.75rem;
}

.device-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--espresso-deep);
}

.device-desc {
    font-size: 0.75rem;
    color: var(--espresso-50);
}

/* Access Benefits */
.access-benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .access-benefits {
        gap: 2rem;
    }
}

.access-benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 3rem;
    transition: var(--transition);
}

.access-benefit:hover {
    background: rgba(255, 255, 255, 0.8);
}

.benefit-icon {
    width: 2rem;
    height: 2rem;
    background: rgba(212, 98, 17, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon .material-symbols-outlined {
    font-size: 1rem;
    color: var(--primary);
}

.access-benefit span:last-child {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--espresso-deep);
}

/* ==========================================
   COMPARISON SECTION
   ========================================== */
.comparison-section {
    padding: 7rem 0;
    position: relative;
}

.comparison-container {
    position: relative;
}

.comparison-bg {
    position: absolute;
    inset: 0;
    background: var(--espresso-deep);
    border-radius: 5rem;
    transform: rotate(-1deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.comparison-content {
    position: relative;
    z-index: 10;
    padding: 3rem 3rem;
    color: white;
}

@media (min-width: 768px) {
    .comparison-content {
        padding: 6rem;
    }
}

.comparison-header {
    text-align: center;
    margin-bottom: 5rem;
}

.comparison-header .material-symbols-outlined {
    font-size: 2.25rem;
    color: var(--liquid-gold);
    margin-bottom: 1rem;
}

.comparison-header h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .comparison-header h2 {
        font-size: 3.125rem;
    }
}

.comparison-header p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.6);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .comparison-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.comparison-card {
    border-radius: var(--radius-blob);
    padding: 3rem;
}

.comparison-card.without {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-card.with {
    background: rgba(212, 98, 17, 0.2);
    border: 1px solid rgba(212, 98, 17, 0.3);
    position: relative;
    overflow: hidden;
}

.comparison-recommended {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--liquid-gold);
    color: var(--espresso-deep);
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-pill);
    display: flex;
    align-items: center;
    gap: 0.35rem;
    letter-spacing: 0.03em;
    box-shadow: 0 4px 12px rgba(230, 179, 37, 0.4);
}

.comparison-recommended .material-symbols-outlined {
    font-size: 0.875rem;
}

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

.comparison-card-header .material-symbols-outlined {
    font-size: 1.875rem;
}

.comparison-card.without .comparison-card-header {
    color: rgba(255, 255, 255, 0.4);
}

.comparison-card.with .comparison-card-header {
    color: var(--liquid-gold);
}

.comparison-card-header h3 {
    font-size: 1.5rem;
    color: white;
}

.comparison-rows {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.comparison-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-card.with .comparison-row {
    border-color: rgba(255, 255, 255, 0.1);
}

.comparison-row-label {
    color: rgba(255, 255, 255, 0.6);
}

.comparison-card.with .comparison-row-label {
    color: rgba(255, 255, 255, 0.8);
}

.comparison-row-value {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
}

.comparison-card.with .comparison-row-value {
    color: var(--liquid-gold);
}

/* Enhanced card styling */
.comparison-card.with {
    box-shadow: 0 0 60px rgba(212, 98, 17, 0.15), inset 0 0 30px rgba(212, 98, 17, 0.05);
}

.comparison-card.with::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--liquid-gold), transparent);
}

.comparison-footer {
    margin-top: 5rem;
    text-align: center;
}

.comparison-footer-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--liquid-gold);
    margin-bottom: 2rem;
}

.comparison-footer-text .material-symbols-outlined {
    font-size: 1.5rem;
}

.comparison-cta {
    background: var(--liquid-gold);
    color: var(--espresso-deep);
    padding: 1.5rem 3.5rem;
    border-radius: var(--radius-liquid);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 25px 50px rgba(230, 179, 37, 0.5), 0 10px 25px rgba(230, 179, 37, 0.3);
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    transform: translateY(0);
}

.comparison-cta:hover {
    background: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

/* ==========================================
   MACHINES SECTION
   ========================================== */
.machines-section {
    padding: 6rem 0;
    text-align: center;
}

.machines-label {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.45em;
    color: var(--amber-glow);
    opacity: 0.7;
    margin-bottom: 4rem;
}

.machines-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem 5rem;
    opacity: 0.3;
    filter: grayscale(100%);
    transition: all 1s ease;
}

.machines-grid:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.machine-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--espresso-deep);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: rgba(253, 251, 247, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--espresso-05);
    padding: 8rem 0 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5rem;
    margin-bottom: 7rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr repeat(3, auto);
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.footer-logo-icon .material-symbols-outlined {
    font-size: 1.375rem;
}

.footer-logo-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--espresso-deep);
    letter-spacing: -0.01em;
}

.footer-tagline {
    font-size: 1rem;
    color: var(--espresso-50);
    line-height: 1.8;
}

.footer-column h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--espresso-deep);
    margin-bottom: 2rem;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-column a {
    color: var(--espresso-70);
    text-decoration: none;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    transition: var(--transition);
}

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

.footer-cta {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-cta p {
    font-size: 0.875rem;
    color: var(--espresso-50);
}

.footer-cta-btn {
    background: var(--espresso-deep);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    text-align: center;
}

.footer-cta-btn:hover {
    background: var(--primary);
}

.footer-bottom {
    padding-top: 2.5rem;
    border-top: 1px solid var(--espresso-05);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-copyright {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--espresso-30);
}

.footer-legal {
    display: flex;
    gap: 2.5rem;
}

.footer-legal a {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--espresso-30);
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
}

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

/* ==========================================
   UTILITY CLASSES
   ========================================== */
.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--liquid-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.testimonials-section {
    padding: 6rem 0;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-header h2 {
    font-size: 2.5rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-blob);
    padding: 2.5rem;
}

.testimonial-rating {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--espresso-70);
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-name {
    font-weight: 700;
    color: var(--espresso-deep);
}

.testimonial-title {
    font-size: 0.875rem;
    color: var(--espresso-50);
}

/* ==========================================
   PRICING SECTION
   ========================================== */
.pricing-section {
    padding: 6rem 0;
}

.pricing-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-badge .material-symbols-outlined {
    font-size: 1.125rem;
    color: var(--primary);
}

.pricing-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.pricing-header p {
    font-size: 1.125rem;
    color: var(--espresso-50);
}

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

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pricing-card {
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-blob);
    padding: 3rem;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    background: linear-gradient(135deg, rgba(212, 98, 17, 0.1), rgba(230, 179, 37, 0.1));
    border-color: rgba(212, 98, 17, 0.3);
    position: relative;
}

.pricing-save-badge {
    position: absolute;
    top: -0.75rem;
    right: 2rem;
    background: var(--primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-pill);
}

.pricing-card-header {
    margin-bottom: 2rem;
}

.pricing-plan-type {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--espresso-50);
    margin-bottom: 0.5rem;
}

.pricing-plan-name {
    font-size: 1.5rem;
    font-weight: 700;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin: 1.5rem 0 0.5rem;
}

.pricing-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.pricing-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
}

.pricing-period {
    font-size: 1rem;
    color: var(--espresso-50);
}

.pricing-billing {
    font-size: 0.875rem;
    color: var(--espresso-50);
}

.pricing-features {
    flex: 1;
    margin: 2rem 0;
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.pricing-feature .material-symbols-outlined {
    color: var(--primary);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.pricing-feature span {
    color: var(--espresso-70);
}

.pricing-cta {
    width: 100%;
    padding: 1.25rem;
    border-radius: var(--radius-liquid);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    text-align: center;
    display: block;
}

.pricing-cta.primary {
    background: linear-gradient(135deg, var(--primary), var(--amber-glow));
    color: white;
    box-shadow: 0 10px 30px rgba(212, 98, 17, 0.3);
}

.pricing-cta.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(212, 98, 17, 0.4);
}

.pricing-cta.secondary {
    background: transparent;
    border: 2px solid var(--espresso-30);
    color: var(--espresso-deep);
}

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

.pricing-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: var(--espresso-50);
}

.pricing-guarantee .material-symbols-outlined {
    color: var(--primary);
    font-size: 1.125rem;
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.faq-section {
    padding: 6rem 0;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-header h2 {
    font-size: 2.5rem;
}

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

.faq-item {
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    overflow: hidden;
}

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

.faq-question h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--espresso-deep);
}

.faq-question .material-symbols-outlined {
    color: var(--espresso-50);
    transition: var(--transition);
}

.faq-item.active .faq-question .material-symbols-outlined {
    transform: rotate(180deg);
}

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

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

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: var(--espresso-70);
    line-height: 1.8;
}

/* ==========================================
   FINAL CTA SECTION
   Ultra-Premium 2026 Design - Matching Glass Aesthetic
   ========================================== */
.final-cta-section {
    padding: 6rem 0;
}

/* Premium Glass Wrapper */
.final-cta-wrapper {
    position: relative;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.88) 0%,
            rgba(255, 248, 240, 0.92) 40%,
            rgba(255, 252, 248, 0.9) 70%,
            rgba(255, 255, 255, 0.85) 100%);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 3rem;
    padding: 3rem 2rem;
    overflow: hidden;
    box-shadow:
        0 4px 32px rgba(212, 98, 17, 0.08),
        0 24px 80px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

@media (min-width: 768px) {
    .final-cta-wrapper {
        padding: 4rem 4rem;
    }
}

@media (min-width: 1024px) {
    .final-cta-wrapper {
        padding: 5rem 6rem;
    }
}

/* Notice callout — clean centered layout */
.final-cta-notice {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.6rem;
    max-width: 520px;
    margin: 0 auto 2rem;
    padding: 1.5rem 1.75rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(212, 98, 17, 0.12);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.final-cta-notice-icon {
    font-size: 1.35rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.final-cta-notice-text {
    display: contents;
    /* let children participate in parent flex */
}

.final-cta-notice-lead {
    margin: 0;
    font-size: 1rem;
    line-height: 1.55;
    font-weight: 600;
    color: var(--espresso-deep);
}

.final-cta-notice-cta {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 700;
    color: var(--primary);
}

.final-cta-notice-warning {
    border-color: rgba(212, 98, 17, 0.14);
}

.final-cta-notice-warning .final-cta-notice-icon {
    color: var(--primary);
}

@media (max-width: 768px) {
    .final-cta-notice {
        padding: 1.25rem 1.25rem;
        gap: 0.5rem;
    }

    .final-cta-notice-lead {
        font-size: 0.95rem;
    }

    .final-cta-notice-cta {
        font-size: 0.9rem;
    }
}

/* Floating Orbs - 3 for depth */
.final-cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.final-cta-orb-1 {
    top: -25%;
    right: -8%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 98, 17, 0.22) 0%, transparent 70%);
    animation: orbFloat 10s ease-in-out infinite;
}

.final-cta-orb-2 {
    bottom: -30%;
    left: -12%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(230, 179, 37, 0.18) 0%, transparent 70%);
    animation: orbFloat 14s ease-in-out infinite reverse;
}

.final-cta-orb-3 {
    top: 50%;
    left: 40%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(139, 90, 43, 0.1) 0%, transparent 70%);
    animation: orbFloat 18s ease-in-out infinite;
    animation-delay: -6s;
}

.final-cta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

/* Benefits card - dark gradient like closing statement */
.final-cta-benefits-card {
    width: 100%;
}

.final-cta-benefits-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--liquid-gold);
    text-align: center;
    margin: 0 0 1.25rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.final-cta-benefits-list {
    display: grid;
    gap: 0.875rem;
}

.final-cta-benefit-row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
}

.final-cta-benefit-icon {
    font-size: 1.25rem;
    color: #4ade80;
    flex-shrink: 0;
}

.final-cta-benefit-main {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

.final-cta-benefit-sub {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
    margin-left: 0.5rem;
}

/* Header */
.final-cta-header {
    text-align: center;
    max-width: 600px;
}

.final-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(212, 98, 17, 0.12), rgba(230, 179, 37, 0.12));
    border: 1px solid rgba(212, 98, 17, 0.25);
    border-radius: var(--radius-pill);
    margin-bottom: 1.5rem;
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(212, 98, 17, 0.15);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(212, 98, 17, 0);
    }
}

.final-cta-badge .material-symbols-outlined {
    color: var(--primary);
    font-size: 1rem;
}

.final-cta-badge span {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
}

.final-cta-header h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--espresso-deep);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .final-cta-header h2 {
        font-size: 3rem;
    }
}

.final-cta-subtitle {
    font-size: 1.125rem;
    color: var(--espresso-50);
    line-height: 1.7;
}

/* Main Card */
.final-cta-main-card {
    position: relative;
    width: 100%;
    max-width: 700px;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.98);
    border-radius: 2rem;
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.08),
        0 4px 12px rgba(212, 98, 17, 0.06);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.final-cta-main-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.12),
        0 8px 24px rgba(212, 98, 17, 0.1);
}

@media (min-width: 768px) {
    .final-cta-main-card {
        padding: 3rem;
    }
}

.final-cta-card-glow {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 98, 17, 0.15) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.final-cta-card-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
}

@media (min-width: 768px) {
    .final-cta-card-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 2.5rem;
    }
}

/* Divider between price and action */
.final-cta-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 98, 17, 0.2), transparent);
    margin: 1.5rem 0;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .final-cta-divider {
        width: 1px;
        height: auto;
        min-height: 120px;
        margin: 0;
        background: linear-gradient(180deg, transparent, rgba(212, 98, 17, 0.25), transparent);
    }
}

/* Price Block */
.final-cta-price-block {
    text-align: center;
}

@media (min-width: 768px) {
    .final-cta-price-block {
        text-align: left;
    }
}

.final-cta-price-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.final-cta-price-tag .price-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--espresso-50);
}

.final-cta-price-tag .price-save {
    font-size: 0.6875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: white;
    background: linear-gradient(135deg, #DC2626, #EF4444);
    padding: 0.25rem 0.625rem;
    border-radius: 2rem;
}

.final-cta-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    line-height: 1;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .final-cta-price {
        justify-content: flex-start;
    }
}

.final-cta-price .price-currency {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 0.25rem;
}

.final-cta-price .price-amount {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--primary) 0%, var(--amber-glow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.final-cta-price .price-period {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--espresso-50);
    align-self: flex-end;
    margin-bottom: 0.75rem;
    margin-left: 0.25rem;
}

.final-cta-billing {
    font-size: 1rem;
    color: var(--espresso-50);
    margin: 0;
    line-height: 1.5;
}

.final-cta-was {
    opacity: 0.8;
}

/* Action Block */
.final-cta-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.875rem;
    text-align: center;
}

@media (min-width: 768px) {
    .final-cta-action {
        align-items: center;
        text-align: center;
        min-width: 320px;
    }
}

/* Scarcity pill */
.final-cta-scarcity {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: var(--radius-pill);
    font-size: 0.8125rem;
    font-weight: 700;
    color: #b91c1c;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.final-cta-scarcity-dot {
    width: 6px;
    height: 6px;
    background: #ef4444;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

.final-cta-action .final-cta-btn {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.75rem;
    font-size: 1.0625rem;
    font-weight: 700;
}

@media (min-width: 768px) {
    .final-cta-action .final-cta-btn {
        width: auto;
        min-width: 280px;
    }
}

.final-cta-lock {
    font-size: 0.9375rem;
    color: var(--espresso-50);
    margin: 0;
    line-height: 1.5;
    max-width: 260px;
}

.final-cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    color: var(--espresso-50);
    margin: 0;
}

.final-cta-guarantee .material-symbols-outlined {
    font-size: 1rem;
    color: #10B981;
}

/* ---- Simplified final CTA card ---- */
.final-cta-main-card--simple {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    padding: 2.5rem 2rem;
}

.final-cta-simple-hook {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--espresso-deep);
    margin: 0;
    line-height: 1.45;
}

.final-cta-simple-hook .final-cta-hook-emphasis {
    color: var(--primary);
    font-weight: 800;
    font-size: 1.15em;
    letter-spacing: 0.02em;
}

.final-cta-simple-highlights {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.final-cta-simple-badge {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: white;
    background: linear-gradient(135deg, #DC2626, #EF4444);
    padding: 0.35rem 0.9rem;
    border-radius: 2rem;
}

.final-cta-simple-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--espresso-deep);
}

.final-cta-simple-price strong {
    font-weight: 800;
    color: var(--primary);
    font-size: 1.35em;
    letter-spacing: 0.02em;
}

/* Scarcity chip in final CTA (matches main-pricing) */
.final-cta-section .final-cta-scarcity-chip,
.final-cta-section .scarcity-chip.scarcity-chip-founders {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.55rem 0.75rem;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: 0.02em;
    border: 1px solid rgba(212, 98, 17, 0.2);
    background: rgba(255, 255, 255, 0.6);
}

.final-cta-section .final-cta-scarcity-chip .material-symbols-outlined,
.final-cta-section .scarcity-chip-founders .material-symbols-outlined {
    font-size: 1.1rem;
    color: var(--primary);
}

.final-cta-section .final-cta-scarcity-chip .scarcity-chip-label,
.final-cta-section .scarcity-chip-founders .scarcity-chip-label {
    font-size: 0.875rem;
    letter-spacing: 0.03em;
    color: var(--espresso-deep);
    font-weight: 700;
}

.final-cta-section .final-cta-scarcity-chip .scarcity-chip-value,
.final-cta-section .scarcity-chip-founders .scarcity-chip-value {
    font-variant-numeric: tabular-nums;
    color: var(--primary);
    font-weight: 900;
    font-size: 0.9375rem;
}

.final-cta-simple-spots {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #b91c1c;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.final-cta-simple-spots::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #ef4444;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
    flex-shrink: 0;
}

.final-cta-main-card--simple .final-cta-btn {
    width: 100%;
    max-width: 420px;
    justify-content: center;
    padding: 1.15rem 2rem;
}

.final-cta-main-card--simple .btn-pricing-headline {
    font-size: 1.35rem;
}

.final-cta-simple-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--espresso-50);
    margin: 0;
}

.final-cta-simple-guarantee .material-symbols-outlined {
    font-size: 1.125rem;
    color: #10B981;
}

@media (min-width: 768px) {
    .final-cta-main-card--simple {
        padding: 3rem;
    }

    .final-cta-simple-hook {
        font-size: 1.35rem;
    }
}

@media (max-width: 480px) {
    .final-cta-main-card--simple .btn-pricing-headline {
        font-size: clamp(16px, 5vw, 20px);
    }
}

.final-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--amber-glow) 100%);
    color: white;
    padding: 1.125rem 2rem;
    border-radius: 1rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow:
        0 8px 24px rgba(212, 98, 17, 0.35),
        0 2px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.final-cta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.final-cta-btn:hover::before {
    width: 400px;
    height: 400px;
}

.final-cta-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 16px 40px rgba(212, 98, 17, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.15);
}

.final-cta-btn .material-symbols-outlined {
    font-size: 1.25rem;
    position: relative;
    z-index: 1;
}

.final-cta-btn .material-symbols-outlined:last-child {
    transition: transform 0.3s ease;
}

.final-cta-btn:hover .material-symbols-outlined:last-child {
    transform: translateX(4px);
}

/* Trust Badges */
.final-cta-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 700px;
}

@media (min-width: 768px) {
    .final-cta-trust {
        gap: 2rem;
    }
}

.final-cta-trust-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.625rem 1rem;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 2rem;
    transition: var(--transition);
}

.final-cta-trust-item:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.final-cta-trust-item .trust-icon {
    width: 1.75rem;
    height: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 98, 17, 0.1);
    border-radius: 50%;
}

.final-cta-trust-item .trust-icon .material-symbols-outlined {
    font-size: 0.875rem;
    color: var(--primary);
}

.final-cta-trust-item>span {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--espresso-70);
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .final-cta-wrapper {
        padding: 2rem 1.25rem;
        border-radius: 2rem;
    }

    .final-cta-header h2 {
        font-size: 1.75rem;
    }

    .final-cta-price .price-amount {
        font-size: 3rem;
    }

    .final-cta-main-card {
        padding: 1.5rem;
    }

    .final-cta-btn {
        padding: 1rem 1.5rem;
        font-size: 0.9375rem;
        width: 100%;
        justify-content: center;
    }

    .final-cta-trust {
        flex-direction: column;
        gap: 0.75rem;
    }

    .final-cta-trust-item {
        justify-content: center;
    }
}

/* ==========================================
   MOBILE MENU
   ========================================== */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, var(--creamy-beige) 0%, #FFF8F0 100%);
    z-index: 9999;
    padding: 100px 2rem 2rem;
    flex-direction: column;
    gap: 1rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

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

.mobile-menu a {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--espresso-deep);
    text-decoration: none;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--espresso-10);
    transition: var(--transition);
}

.mobile-menu a:last-child {
    border-bottom: none;
    margin-top: 1rem;
}

.mobile-menu a:hover {
    color: var(--primary);
}

.mobile-menu .cta-btn-primary {
    text-align: center;
    justify-content: center;
    padding: 1.25rem 2rem;
    font-size: 1rem;
    border-radius: 1rem;
}

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

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

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

/* ==========================================
   PODCAST SECTION
   ========================================== */
.podcast-section {
    padding: 6rem 0;
}

.podcast-header {
    text-align: center;
    margin-bottom: 3rem;
}

.podcast-card {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-blob);
    padding: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .podcast-card {
        flex-direction: row;
        padding: 3rem;
    }
}

.podcast-cover {
    width: 100%;
    max-width: 200px;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.podcast-content {
    flex: 1;
}

.podcast-episode {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.podcast-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.podcast-description {
    color: var(--espresso-70);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.podcast-player {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.podcast-play-btn {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--primary), var(--amber-glow));
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: var(--transition);
}

.podcast-play-btn:hover {
    transform: scale(1.1);
}

.podcast-progress {
    flex: 1;
    height: 4px;
    background: var(--espresso-10);
    border-radius: 2px;
    overflow: hidden;
}

.podcast-progress-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--liquid-gold));
    transition: width 0.1s linear;
}

.podcast-time {
    font-size: 0.875rem;
    color: var(--espresso-50);
    font-variant-numeric: tabular-nums;
}

/* ==========================================
   CREATOR SECTION
   ========================================== */
.creator-section {
    padding: 6rem 0;
}

.creator-card {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-blob);
    padding: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .creator-card {
        flex-direction: row;
        align-items: flex-start;
    }
}

.creator-visual {
    text-align: center;
}

.creator-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.creator-name {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.creator-title {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--espresso-50);
}

.creator-message {
    flex: 1;
}

.creator-quote {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 4rem;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 1rem;
}

.creator-message h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.creator-message p {
    color: var(--espresso-70);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.creator-signature {
    font-weight: 700;
    color: var(--primary);
    font-style: italic;
    margin-top: 1.5rem;
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.testimonials-section {
    padding: 6rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.rating {
    color: #F59E0B;
    margin-bottom: 1rem;
    letter-spacing: -2px;
}

.testimonial-text {
    font-size: 1rem;
    font-style: italic;
    color: var(--espresso-deep);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-name {
    font-weight: 700;
    font-size: 0.9375rem;
}

.testimonial-title {
    font-size: 0.75rem;
    color: var(--espresso-50);
}

/* ==========================================
   STORY SECTION (Podcast + Creator Combined)
   Ultra-Premium 2026 Design
   ========================================== */
.story-section {
    padding: 6rem 0;
}

.story-wrapper {
    position: relative;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.88) 0%,
            rgba(255, 248, 240, 0.92) 40%,
            rgba(255, 252, 248, 0.9) 70%,
            rgba(255, 255, 255, 0.85) 100%);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 3rem;
    padding: 3rem 2rem;
    overflow: hidden;
    box-shadow:
        0 4px 32px rgba(212, 98, 17, 0.08),
        0 24px 80px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

@media (min-width: 768px) {
    .story-wrapper {
        padding: 4rem 4rem;
    }
}

@media (min-width: 1024px) {
    .story-wrapper {
        padding: 5rem 6rem;
    }
}

/* Floating Orbs - 3 for depth */
.story-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.story-orb-1 {
    top: -20%;
    right: -10%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(212, 98, 17, 0.18) 0%, transparent 70%);
    animation: orbFloat 12s ease-in-out infinite;
}

.story-orb-2 {
    bottom: -25%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(230, 179, 37, 0.15) 0%, transparent 70%);
    animation: orbFloat 14s ease-in-out infinite reverse;
}

.story-orb-3 {
    top: 40%;
    left: 30%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 90, 43, 0.08) 0%, transparent 70%);
    animation: orbFloat 16s ease-in-out infinite;
    animation-delay: -5s;
}

.story-inner {
    position: relative;
    z-index: 1;
}

/* Header */
.story-header {
    text-align: center;
    margin-bottom: 3rem;
}

.story-header h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    margin-top: 1rem;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, var(--espresso-deep) 0%, #8B5A2B 50%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .story-header h2 {
        font-size: 2.75rem;
    }
}

.story-header p {
    color: var(--espresso-50);
    font-size: 1.0625rem;
    max-width: 500px;
    margin: 0 auto;
}

/* Two Column Grid */
.story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .story-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
        align-items: stretch;
    }
}

/* Podcast Card in Story */
.story-podcast .podcast-card {
    height: 100%;
    flex-direction: column;
}

@media (min-width: 768px) and (max-width: 1023px) {
    .story-podcast .podcast-card {
        flex-direction: row;
        max-width: none;
    }
}

@media (min-width: 1024px) {
    .story-podcast .podcast-card {
        flex-direction: column;
    }

    .story-podcast .podcast-cover {
        width: 100%;
        height: 200px;
    }
}

/* Creator Card in Story */
.story-creator .creator-card {
    height: 100%;
    flex-direction: column;
    padding: 2rem;
}

@media (min-width: 768px) {
    .story-creator .creator-card {
        padding: 2.5rem;
    }
}

/* Creator Card Styles */
.creator-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.95);
    display: flex;
    gap: 2rem;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04);
}

.creator-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 20px 48px rgba(0, 0, 0, 0.1),
        0 8px 24px rgba(212, 98, 17, 0.06);
}

.creator-visual {
    text-align: center;
    flex-shrink: 0;
}

.creator-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    margin-bottom: 0.75rem;
}

.creator-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--espresso-deep);
}

.creator-title {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
}

.creator-message {
    flex: 1;
}

.creator-quote {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    line-height: 0.8;
    color: var(--primary);
    opacity: 0.25;
    display: block;
    margin-bottom: 0.5rem;
}

.creator-message h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.35;
    color: var(--espresso-deep);
}

.creator-message p {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 0.875rem;
    color: var(--espresso-70);
}

.creator-signature {
    font-weight: 700;
    font-style: italic;
    color: var(--primary) !important;
}

/* Premium Card */
.podcast-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 2rem;
    overflow: hidden;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.95);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.podcast-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow:
        0 24px 64px rgba(0, 0, 0, 0.12),
        0 8px 24px rgba(212, 98, 17, 0.08);
}

@media (min-width: 768px) {
    .podcast-card {
        flex-direction: row;
        align-items: stretch;
        max-width: 900px;
        margin: 0 auto;
    }
}

/* Cover Image */
.podcast-cover {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.podcast-card:hover .podcast-cover {
    transform: scale(1.05);
}

@media (min-width: 768px) {
    .podcast-cover {
        width: 280px;
        height: auto;
        min-height: 280px;
        flex-shrink: 0;
    }
}

/* Content */
.podcast-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.podcast-episode {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary);
    margin-bottom: 0.75rem;
    background: rgba(212, 98, 17, 0.08);
    padding: 0.35rem 0.75rem;
    border-radius: 2rem;
    width: fit-content;
}

.podcast-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.35;
    color: var(--espresso-deep);
}

.podcast-description {
    color: var(--espresso-50);
    margin-bottom: 1.5rem;
    font-style: italic;
    font-size: 0.9375rem;
    line-height: 1.6;
    flex: 1;
}

/* Player */
.podcast-player {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(249, 250, 251, 0.9) 0%, rgba(243, 244, 246, 0.95) 100%);
    padding: 0.875rem 1.25rem;
    border-radius: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.02);
}

.podcast-play-btn {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, #E85D04 100%);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
    box-shadow:
        0 4px 16px rgba(212, 98, 17, 0.35),
        0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}

.podcast-play-btn::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 98, 17, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.podcast-play-btn:hover {
    transform: scale(1.1);
    box-shadow:
        0 8px 24px rgba(212, 98, 17, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.15);
}

.podcast-play-btn:hover::before {
    opacity: 1;
}

.podcast-player.playing .podcast-play-btn {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 4px 16px rgba(212, 98, 17, 0.35);
    }

    50% {
        box-shadow: 0 4px 24px rgba(212, 98, 17, 0.5), 0 0 0 8px rgba(212, 98, 17, 0.1);
    }
}

.podcast-play-btn .material-symbols-outlined {
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
}

/* Wave Animation */
.podcast-waves {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 24px;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.podcast-player.playing .podcast-waves {
    opacity: 1;
}

.podcast-waves span {
    display: block;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary) 0%, #E6B325 100%);
    border-radius: 4px;
    animation: wave 0.8s ease-in-out infinite;
    animation-play-state: paused;
}

.podcast-player.playing .podcast-waves span {
    animation-play-state: running;
}

.podcast-waves span:nth-child(1) {
    animation-delay: 0s;
    animation-duration: 0.7s;
    height: 55%;
}

.podcast-waves span:nth-child(2) {
    animation-delay: 0.1s;
    animation-duration: 0.85s;
    height: 100%;
}

.podcast-waves span:nth-child(3) {
    animation-delay: 0.15s;
    animation-duration: 0.65s;
    height: 45%;
}

.podcast-waves span:nth-child(4) {
    animation-delay: 0.25s;
    animation-duration: 0.9s;
    height: 85%;
}

.podcast-waves span:nth-child(5) {
    animation-delay: 0.35s;
    animation-duration: 0.75s;
    height: 35%;
}

@keyframes wave {

    0%,
    100% {
        transform: scaleY(0.5);
    }

    50% {
        transform: scaleY(1);
    }
}

.podcast-progress {
    flex: 1;
    height: 6px;
    background: #E5E7EB;
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    overflow: visible;
    /* Allow thumb to overflow */
}

.podcast-progress-fill {
    height: 100%;
    background: var(--primary);
    border-radius: 3px;
    width: 0%;
    /* JS updates this */
    position: relative;
    transition: width 0.1s linear;
}

.podcast-progress-thumb {
    width: 12px;
    height: 12px;
    background: white;
    border: 2px solid var(--primary);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 0%;
    /* JS updates this */
    opacity: 0;
    /* Hidden by default */
    transition: opacity 0.2s, left 0.1s linear;
    pointer-events: none;
    /* Let clicks pass through to bar */
}

.podcast-progress:hover .podcast-progress-thumb {
    opacity: 1;
}

.podcast-time {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--espresso-50);
    min-width: 80px;
    text-align: right;
    font-variant-numeric: tabular-nums;
}

/* ==========================================
   CREATOR SECTION
   ========================================== */
.creator-section {
    padding: 6rem 0;
}

.creator-wrapper {
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 3rem;
    padding: 3rem 2rem;
    overflow: hidden;
}

@media (min-width: 768px) {
    .creator-wrapper {
        padding: 5rem;
    }
}

.creator-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.creator-orb-1 {
    top: -20%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 98, 17, 0.15) 0%, transparent 70%);
    animation: orbFloat 8s ease-in-out infinite;
}

.creator-orb-2 {
    bottom: -20%;
    left: -10%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(230, 179, 37, 0.12) 0%, transparent 70%);
    animation: orbFloat 10s ease-in-out infinite reverse;
}

.creator-card {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 2rem;
    padding: 2.5rem;
    transition: var(--transition);
}

.creator-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

@media (min-width: 768px) {
    .creator-card {
        flex-direction: row;
        align-items: center;
        gap: 4rem;
        padding: 3rem;
    }
}

.creator-visual {
    text-align: center;
    flex-shrink: 0;
}

.creator-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 4px solid white;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.creator-name {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.creator-title {
    font-size: 0.9375rem;
    color: var(--espresso-50);
}

.creator-message {
    flex: 1;
}

.creator-quote {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    line-height: 0.5;
    color: var(--primary);
    opacity: 0.2;
    display: block;
    margin-bottom: 1rem;
}

.creator-message h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--espresso-deep);
}

.creator-message p {
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--espresso-deep);
}

.creator-signature {
    font-family: 'Dancing Script', cursive;
    font-size: 1.5rem !important;
    color: var(--primary) !important;
    font-weight: 700;
}

/* ==========================================
   PRICING SECTION
   ========================================== */
.pricing-section {
    padding: 6rem 0;
}

.pricing-wrapper {
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 3rem;
    padding: 3rem 1.5rem;
    overflow: hidden;
}

@media (min-width: 768px) {
    .pricing-wrapper {
        padding: 5rem 3rem;
    }
}

.pricing-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.pricing-orb-1 {
    top: -20%;
    right: -10%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(212, 98, 17, 0.15) 0%, transparent 70%);
    animation: orbFloat 8s ease-in-out infinite;
}

.pricing-orb-2 {
    bottom: -20%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(230, 179, 37, 0.12) 0%, transparent 70%);
    animation: orbFloat 10s ease-in-out infinite reverse;
}

.pricing-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.pricing-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: var(--espresso-deep);
}

.pricing-header p {
    color: var(--espresso-50);
}

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

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        align-items: stretch;
    }
}

.pricing-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 2rem;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.pricing-card.featured {
    background: rgba(255, 255, 255, 0.85);
    /* Slightly more opaque for featured */
    border: 1px solid var(--primary);
    box-shadow: 0 10px 30px rgba(212, 98, 17, 0.1);
}

.pricing-card.featured:hover {
    box-shadow: 0 25px 50px rgba(212, 98, 17, 0.15);
}

.pricing-save-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: #DC2626;
    /* Red for savings */
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-card-header {
    margin-bottom: 2rem;
    text-align: center;
}

.pricing-plan-type {
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--espresso-50);
    margin-bottom: 0.5rem;
    display: block;
}

.pricing-plan-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--espresso-deep);
    margin-bottom: 1rem;
}

.pricing-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    color: var(--espresso-deep);
    line-height: 1;
}

.pricing-currency {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 0.25rem;
}

.pricing-amount {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.pricing-period {
    align-self: flex-end;
    margin-bottom: 0.5rem;
    margin-left: 0.25rem;
    color: var(--espresso-50);
    font-weight: 600;
}

.pricing-billing {
    font-size: 0.875rem;
    color: var(--espresso-50);
    margin-top: 0.5rem;
}

.pricing-features {
    flex: 1;
    margin-bottom: 2.5rem;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
    color: var(--espresso-deep);
    text-align: left;
}

.pricing-feature .material-symbols-outlined {
    font-size: 1.25rem;
    color: var(--primary);
    flex-shrink: 0;
}

/* ==========================================
   MODERN PRICING SECTION STYLES
   ========================================== */

.pricing-wrapper-modern {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%);
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    text-align: center;
}

.pricing-wrapper-modern .pricing-header {
    margin-bottom: 3rem;
}

.pricing-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    background: linear-gradient(135deg, rgba(212, 98, 17, 0.12), rgba(230, 179, 37, 0.08));
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    margin-bottom: 1.25rem;
}

.pricing-wrapper-modern .pricing-header h2 {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
}

.pricing-card-container {
    max-width: 680px;
    margin: 0 auto;
}

.pricing-card-modern {
    background: white;
    border: 2px solid rgba(212, 98, 17, 0.15);
    border-radius: 2.5rem;
    padding: 3rem 3.5rem;
    text-align: center;
    box-shadow:
        0 20px 60px rgba(212, 98, 17, 0.1),
        0 8px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card-modern:hover {
    transform: translateY(-4px);
    box-shadow:
        0 30px 80px rgba(212, 98, 17, 0.15),
        0 12px 35px rgba(0, 0, 0, 0.08);
}

.pricing-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #DC2626, #EF4444);
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    padding: 0.625rem 1.5rem;
    border-radius: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.pricing-badge-modern .material-symbols-outlined {
    font-size: 1.125rem;
}

.pricing-display {
    margin-bottom: 2.5rem;
}

.pricing-original {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--espresso-50);
    font-size: 35px;
    font-weight: 600;
}

.pricing-original .strikethrough {
    text-decoration: line-through;
    color: var(--espresso-50);
}

.pricing-current {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    color: var(--espresso-deep);
    line-height: 1;
    margin-bottom: 0.75rem;
}

.pricing-current .pricing-currency {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 0.5rem;
    color: var(--primary);
}

.pricing-current .pricing-amount {
    font-size: 5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--espresso-deep), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-current .pricing-period {
    align-self: flex-end;
    margin-bottom: 1rem;
    margin-left: 0.25rem;
    font-size: 1.25rem;
    color: var(--espresso-50);
    font-weight: 600;
}

.pricing-monthly {
    font-size: 1.125rem;
    color: var(--espresso-70);
    margin: 0;
}

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

.pricing-features-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 2rem;
    text-align: left;
    margin-bottom: 2.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(212, 98, 17, 0.1);
    border-bottom: 1px solid rgba(212, 98, 17, 0.1);
}

.pricing-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--espresso-deep);
}

.pricing-feature-item .material-symbols-outlined {
    font-size: 1.25rem;
    color: var(--primary);
    flex-shrink: 0;
}

.pricing-cta-modern {
    margin-bottom: 1.5rem;
}

.btn-pricing-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.875rem;
    width: 100%;
    max-width: 460px;
    background: linear-gradient(135deg, #f2cf7b, #D46211, #7d3f26);
    color: white;
    padding: 1.44rem 2.875rem;
    border-radius: 1.15rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.29rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(212, 98, 17, 0.25);
    transition: all 0.3s ease;
}

.btn-pricing-modern:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(212, 98, 17, 0.35);
}

.btn-pricing-modern .material-symbols-outlined {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.btn-pricing-modern:hover .material-symbols-outlined {
    transform: translateX(4px);
}

/* Make the first CTA pricing button ~20% larger (only in #pricing) */
#pricing .pricing-cta-modern .btn-pricing-modern {
    max-width: 552px;
    /* 460 * 1.2 */
    padding: 1.728rem 3.45rem;
    /* 1.44/2.875 * 1.2 */
    font-size: 1.548rem;
    /* 1.29 * 1.2 */
    border-radius: 1.38rem;
    /* 1.15 * 1.2 */
}

/* Same 20% size bump for the repeated CTA pricing section */
#pricing-repeat .pricing-cta-modern .btn-pricing-modern {
    max-width: 552px;
    /* 460 * 1.2 */
    padding: 1.728rem 3.45rem;
    /* 1.44/2.875 * 1.2 */
    font-size: 1.548rem;
    /* 1.29 * 1.2 */
    border-radius: 1.38rem;
    /* 1.15 * 1.2 */
}

.pricing-payment-methods {
    opacity: 1;
}

.pricing-payment-methods img {
    max-width: 280px;
    height: auto;
}

/* Mobile Responsive for Modern Pricing */
@media (max-width: 768px) {
    .pricing-wrapper-modern .pricing-header h2 {
        font-size: 2rem;
    }

    .pricing-card-modern {
        padding: 2rem 1.5rem;
        border-radius: 2rem;
    }

    /* Make the discount badge ~20% bigger on mobile for the 2 top CTAs */
    #pricing .pricing-badge-modern,
    #pricing-repeat .pricing-badge-modern {
        font-size: calc(0.875rem * 1.2);
        padding: calc(0.625rem * 1.2) calc(1.5rem * 1.2);
    }

    .pricing-current .pricing-amount {
        font-size: 4rem;
    }

    /* Fix "Regular Price" line wrapping on mobile */
    .pricing-original {
        font-size: clamp(1rem, 4vw, 1.125rem);
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        line-height: 1.25;
        gap: 0.35rem 0.6rem;
    }

    /* Make "Regular Price" ~20% bigger on mobile for the 2 top CTAs */
    #pricing .pricing-original,
    #pricing-repeat .pricing-original {
        font-size: clamp(1.2rem, 4.8vw, 1.35rem);
    }

    .pricing-original span {
        white-space: normal;
    }

    .pricing-features-modern {
        grid-template-columns: 1fr;
        gap: 0.875rem;
    }

    .btn-pricing-modern {
        padding: 1.15rem 2.3rem;
        font-size: 1.15rem;
    }

    /* Make the 2 top CTA buttons ~20% taller on mobile */
    #pricing .pricing-cta-modern .btn-pricing-modern,
    #pricing-repeat .pricing-cta-modern .btn-pricing-modern {
        padding-top: calc(1.15rem * 1.2) !important;
        padding-bottom: calc(1.15rem * 1.2) !important;
        min-height: 71px;
        /* ~59px * 1.2 */
    }
}

/* Stack "Regular Price" label + value on very small screens */
@media (max-width: 420px) {
    .pricing-original {
        flex-direction: column;
        align-items: center;
        gap: 0.25rem;
    }
}

.pricing-cta {
    width: 100%;
    padding: 1rem;
    border-radius: 1rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: none;
}

.pricing-cta.secondary {
    background: transparent;
    border: 2px solid var(--espresso-10);
    color: var(--espresso-deep);
}

.pricing-cta.secondary:hover {
    background: var(--espresso-10);
}

.pricing-cta.primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 12px rgba(212, 98, 17, 0.3);
}

.pricing-cta.primary:hover {
    background: #d46211;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(212, 98, 17, 0.4);
}

.pricing-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.75rem;
    color: var(--espresso-50);
}

.pricing-guarantee .material-symbols-outlined {
    font-size: 1rem;
    color: var(--primary);
}

/* ==========================================
   CONTACT MODAL
   ========================================== */
.contact-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-modal.active {
    display: flex;
    opacity: 1;
}

.contact-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(30, 20, 10, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.contact-modal-content {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin: 20px;
    padding: 40px;
    background: linear-gradient(145deg, rgba(255, 252, 248, 0.98), rgba(250, 245, 235, 0.98));
    border: 1px solid rgba(212, 98, 17, 0.25);
    border-radius: 24px;
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.3),
        0 0 80px rgba(212, 98, 17, 0.1);
    animation: contactSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes contactSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }

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

.contact-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--espresso-50);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.contact-close:hover {
    background: rgba(212, 98, 17, 0.15);
    border-color: rgba(212, 98, 17, 0.3);
    color: var(--primary);
}

.contact-close .material-symbols-outlined {
    font-size: 20px;
}

.contact-header {
    text-align: center;
    margin-bottom: 32px;
}

.contact-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary), var(--amber-glow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(212, 98, 17, 0.35);
}

.contact-icon .material-symbols-outlined {
    font-size: 28px;
    color: white;
}

.contact-header h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--espresso-deep);
    margin-bottom: 8px;
}

.contact-header p {
    font-size: 14px;
    color: var(--espresso-50);
    line-height: 1.5;
}

.contact-email-box {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(212, 98, 17, 0.15);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
}

.contact-email-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--espresso-50);
    margin-bottom: 10px;
}

.contact-email-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.contact-email {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.3px;
}

.contact-copy-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(212, 98, 17, 0.1);
    border: 1px solid rgba(212, 98, 17, 0.25);
    border-radius: 8px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.contact-copy-btn:hover {
    background: rgba(212, 98, 17, 0.2);
    border-color: var(--primary);
}

.contact-copy-btn.copied {
    background: rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.4);
    color: #22c55e;
}

.contact-copy-btn .material-symbols-outlined {
    font-size: 16px;
}

.contact-send-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary), var(--amber-glow));
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(212, 98, 17, 0.3);
}

.contact-send-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(212, 98, 17, 0.4);
}

.contact-send-btn .material-symbols-outlined {
    font-size: 20px;
}

.contact-response {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 13px;
    color: var(--espresso-50);
}

.contact-response .material-symbols-outlined {
    font-size: 18px;
    color: var(--primary);
}

/* Contact Modal Responsive */
@media (max-width: 480px) {
    .contact-modal-content {
        padding: 32px 24px;
        margin: 16px;
    }

    .contact-icon {
        width: 56px;
        height: 56px;
    }

    .contact-icon .material-symbols-outlined {
        font-size: 24px;
    }

    .contact-header h3 {
        font-size: 20px;
    }

    .contact-email {
        font-size: 15px;
    }

    .contact-email-row {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-copy-btn {
        justify-content: center;
    }
}

/* ==========================================
   RESPONSIVE ADJUSTMENTS - COMPREHENSIVE MOBILE
   ========================================== */

/* Extra Small Devices (phones, 480px and down) */
@media (max-width: 480px) {
    :root {
        --section-padding: 60px;
        --container-padding: 16px;
    }

    .section-container {
        padding: 0 1rem;
    }

    /* Navigation - Force mobile on small screens */
    .nav-links {
        display: none !important;
    }

    .nav-toggle {
        display: flex !important;
    }

    .nav-container {
        padding: 0.5rem 1rem;
    }

    /* Typography scaling */
    .hero-title {
        font-size: 2rem;
        line-height: 1.15;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-badge {
        font-size: 0.65rem;
        padding: 0.4rem 0.75rem;
    }

    /* Hero layout - single column */
    .hero-layout {
        flex-direction: column !important;
    }


    /* Story Section */
    .story-wrapper {
        padding: 2rem 1.25rem;
        border-radius: 2rem;
    }

    .story-header h2 {
        font-size: 1.75rem;
    }

    .story-header p {
        font-size: 0.9375rem;
    }

    /* Podcast */
    .podcast-content {
        padding: 1.25rem;
    }

    .podcast-title {
        font-size: 1.125rem;
    }

    .podcast-player {
        padding: 0.75rem 1rem;
        gap: 0.75rem;
    }

    .podcast-play-btn {
        width: 2.75rem;
        height: 2.75rem;
    }

    .podcast-time {
        font-size: 0.65rem;
        min-width: 65px;
    }

    /* Creator */
    .creator-card {
        padding: 1.5rem !important;
    }

    .creator-avatar {
        width: 80px;
        height: 80px;
    }

    .creator-message h3 {
        font-size: 1.0625rem;
    }

    .creator-message p {
        font-size: 0.875rem;
    }

    .creator-quote {
        font-size: 2.5rem;
    }

    /* Pricing */
    .pricing-wrapper {
        padding: 2rem 1rem;
        border-radius: 2rem;
    }

    .pricing-header h2 {
        font-size: 1.75rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .pricing-amount {
        font-size: 2.5rem;
    }

    /* Features */
    .feature-card {
        padding: 1.5rem;
    }

    .feature-image {
        width: calc(100% + 3rem);
        margin: -1.5rem -1.5rem 1.5rem -1.5rem;
    }

    /* Stats */
    .stat-card {
        padding: 1.25rem;
    }

    .stat-value {
        font-size: 2rem;
    }

    /* Buttons - larger touch targets */
    .btn-primary,
    .btn-secondary {
        padding: 1rem 1.5rem;
        font-size: 0.9375rem;
        min-height: 52px;
    }

    /* FAQ */
    .faq-question {
        padding: 1rem;
        font-size: 0.9375rem;
    }

    /* Footer */
    .footer {
        padding: 3rem 0 2rem;
    }

    .footer-grid {
        gap: 2rem;
    }

    /* Hero Layout */
    .hero-layout {
        gap: 2rem !important;
    }

    /* Hero Podcast Teaser */
    .hero-podcast-teaser {
        padding: 0.75rem 1rem;
        gap: 0.75rem;
    }

    .podcast-teaser-title {
        font-size: 0.8125rem;
    }

    .podcast-teaser-icon {
        width: 36px;
        height: 36px;
    }

    .podcast-teaser-icon .material-symbols-outlined {
        font-size: 1rem;
    }

    /* Screenshots - horizontal scroll */
    .screenshots-scroll {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding: 1rem;
    }

    .screenshot-item {
        scroll-snap-align: center;
        flex-shrink: 0;
        width: 280px;
    }

    /* AI Demo */
    .ai-demo-showcase {
        flex-direction: column;
    }

    .ai-demo-visual {
        order: -1;
    }
}

/* Small Devices (phones, 768px and down) */
@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }

    .section-container {
        padding: 0 1.25rem;
    }

    /* Navigation - Force hide on mobile */
    .nav-links {
        display: none !important;
    }

    .nav-cta {
        display: none !important;
    }

    .nav-toggle {
        display: flex !important;
    }

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

    .hero-layout {
        flex-direction: column !important;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }


    /* Stats Grid */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    /* Features Grid */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Story Section */
    .story-grid {
        gap: 1.5rem;
    }

    .story-wrapper {
        padding: 2.5rem 1.5rem;
    }

    /* Podcast card - vertical on mobile */
    .podcast-card {
        flex-direction: column;
        max-width: none;
    }

    .podcast-cover {
        width: 100%;
        height: 180px;
    }

    /* Creator card - vertical on mobile */
    .creator-card {
        flex-direction: column;
        text-align: center;
    }

    .creator-visual {
        margin-bottom: 1rem;
    }

    .creator-message {
        text-align: left;
    }

    /* Pricing Grid */
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    /* Comparison */
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Section Headers */
    .comparison-header h2,
    .features-header h2,
    .story-header h2,
    .pricing-header h2 {
        font-size: 2rem;
    }

    /* Bento Grid */
    .bento-grid {
        grid-template-columns: 1fr;
    }

    /* Access devices - smaller grid */
    .access-devices {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    /* Machines */
    .machines-grid {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .machine-name {
        font-size: 0.875rem;
    }

    /* Footer Grid */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }

    .footer-column ul {
        align-items: center;
    }

    /* Bottom Bar - sticky CTA */
    .bottom-bar {
        padding: 0.75rem 1rem;
    }

    .bottom-bar-content {
        flex-direction: column;
        gap: 0.5rem;
    }

    /* Hero Social Proof */
    .hero-social-proof {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .hero-avatars {
        justify-content: flex-start;
    }

    /* Screenshots scroll container */
    .screenshots-grid,
    .screenshots-scroll {
        grid-template-columns: 1fr;
        overflow-x: auto;
        display: flex;
        gap: 1rem;
        padding-bottom: 1rem;
        -webkit-overflow-scrolling: touch;
    }

    .screenshot-card {
        flex-shrink: 0;
        width: 85vw;
        max-width: 320px;
    }

    /* Smart Optimizer */
    .optimizer-wrapper {
        padding: 2rem 1.5rem;
    }

    .optimizer-header h2 {
        font-size: 1.875rem;
    }

    /* Workflow */
    .workflow-steps {
        flex-direction: column;
        gap: 2rem;
    }

    .workflow-connector {
        display: none;
    }

    /* Use Your Way */
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
}

/* Tablet Adjustments (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-podcast .podcast-card {
        flex-direction: row;
        max-width: 100%;
    }

    .story-podcast .podcast-cover {
        width: 250px;
        height: auto;
    }

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

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

/* Navigation Mobile Override (under 1024px) */
@media (max-width: 1023px) {
    .nav-links {
        display: none !important;
    }

    .nav-toggle {
        display: flex !important;
    }

    .hero-layout {
        flex-direction: column !important;
        gap: 2rem !important;
    }

    .hero-image-container {
        max-width: 100%;
        transform: none;
    }
}

/* Prevent Horizontal Overflow */
html,
body {
    overflow-x: hidden;
    max-width: 100vw;
}

img,
video,
iframe {
    max-width: 100%;
    height: auto;
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {

    /* Larger touch targets */
    .btn-primary,
    .btn-secondary,
    .podcast-play-btn,
    .faq-question,
    .pricing-cta {
        min-height: 48px;
    }

    /* Remove hover effects that don't work well on touch */
    .podcast-card:hover,
    .creator-card:hover,
    .pricing-card:hover,
    .feature-card:hover {
        transform: none;
    }

    /* Keep subtle shadow on active instead */
    .podcast-card:active,
    .creator-card:active,
    .pricing-card:active {
        transform: scale(0.99);
    }
}

/* Safe area insets for notched devices */
@supports (padding: max(0px)) {
    .header {
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
    }

    .bottom-bar {
        padding-bottom: max(0.75rem, env(safe-area-inset-bottom));
    }

    .footer {
        padding-bottom: max(2rem, env(safe-area-inset-bottom));
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .story-orb,
    .pricing-orb,
    .ambient-blob {
        animation: none;
    }
}

/* ================================================================
   SALES PAGE SECTIONS (Phases 1-8)
   Added for the new landing page structure
   ================================================================ */

/* Hero Section Adjustments */
.hero {
    padding: 30px 0 6rem;
}

/* Hero Logo Styling */
.hero-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0px;
}

.logo-icon-hero {
    filter: drop-shadow(0 0 12px rgba(242, 207, 123, 0.5));
    animation: logoFloat 3s ease-in-out infinite;
}

.logo-text-hero {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--espresso-deep);
}

.logo-text-hero .logo-highlight {
    background: linear-gradient(135deg, var(--primary), var(--amber-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========== HERO VIDEO PLAYER ========== */
.hero-video-wrapper {
    width: 100%;
    max-width: 1380px;
    margin: 0 auto 3rem;
}

.hero-video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 1.5rem;
    overflow: hidden;
    background: var(--espresso-deep);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.25),
        0 10px 30px rgba(212, 98, 17, 0.15);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ========== HERO IMAGE PLACEHOLDER ========== */
.hero-image-wrapper {
    width: 100%;
    max-width: 1380px;
    margin: 0 auto 3rem;
    transform: none;
}

.hero-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 1.5rem;
    overflow: hidden;
    background: var(--espresso-deep);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.25),
        0 10px 30px rgba(212, 98, 17, 0.15);
    border: 3px solid rgba(255, 255, 255, 0.2);
    transform: none;
    isolation: isolate;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ========== HERO IMAGE OVERLAY ========== */
.hero-image-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    /* Align to bottom */
    justify-content: center;
    padding-bottom: 0.5rem;
    /* Moved down (was 2rem) */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.45) 0%, transparent 40%);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.hero-scroll-cta {
    pointer-events: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-scroll-cta:hover {
    color: white;
    transform: translateY(2px);
}

.scroll-text {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.scroll-icon {
    font-size: 2rem !important;
    animation: scrollBounce 2s infinite;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

@keyframes scrollBounce {

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

    40% {
        transform: translateY(-6px);
    }

    60% {
        transform: translateY(-3px);
    }
}

/* Hero Image Mobile Responsive */
@media (max-width: 768px) {
    .hero-image-wrapper {
        max-width: 92%;
        margin: 0 auto 2rem;
    }

    .hero-image-container {
        aspect-ratio: 4 / 3;
        border-radius: 1rem;
        border-width: 2px;
        box-shadow:
            0 15px 35px rgba(0, 0, 0, 0.2),
            0 5px 15px rgba(212, 98, 17, 0.1);
    }

    .hero-image-overlay {
        padding-bottom: 0.75rem;
    }

    .scroll-text {
        font-size: 0.7rem;
        letter-spacing: 0.1em;
    }

    .scroll-icon {
        font-size: 1.5rem !important;
    }
}

@media (max-width: 480px) {
    .hero-image-wrapper {
        max-width: 95%;
        margin: 0 auto 1.5rem;
    }

    .hero-image-container {
        aspect-ratio: 1 / 1;
        border-radius: 0.75rem;
    }

    .scroll-text {
        font-size: 0.65rem;
    }

    .scroll-icon {
        font-size: 1.25rem !important;
    }
}

/* Play Button Overlay */
.hero-video-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-video-play-overlay:hover {
    background: rgba(0, 0, 0, 0.2);
}

.hero-video-play-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.hero-play-btn {
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.3));
}

.hero-play-btn:hover {
    transform: scale(1.1);
}

.hero-play-btn svg circle {
    transition: all 0.3s ease;
}

.hero-play-btn:hover svg circle {
    fill: rgba(255, 255, 255, 1);
}

/* Video Controls */
.hero-video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-video-container:hover .hero-video-controls,
.hero-video-container.playing .hero-video-controls {
    opacity: 1;
}

.hero-control-btn {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: all 0.2s ease;
}

.hero-control-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

/* Progress Bar */
.hero-progress-container {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
    cursor: default;
}

.hero-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), var(--liquid-gold));
    border-radius: 3px;
    transition: width 0.1s linear;
}

/* Time Display */
.hero-time-display {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.8);
    min-width: 90px;
    text-align: center;
}

/* Volume Control */
.hero-volume-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-volume-slider {
    width: 70px;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    cursor: pointer;
}

.hero-volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--liquid-gold);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.hero-volume-slider::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--liquid-gold);
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

/* Responsive Video Player */
@media (max-width: 768px) {
    .hero-video-wrapper {
        margin: 0 auto 2rem;
    }

    .hero-video-container {
        border-radius: 1rem;
        border-width: 2px;
    }

    .hero-play-btn svg {
        width: 60px;
        height: 60px;
    }

    .hero-video-controls {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }

    .hero-control-btn {
        width: 36px;
        height: 36px;
    }

    .hero-control-btn svg {
        width: 20px;
        height: 20px;
    }

    .hero-time-display {
        font-size: 0.75rem;
        min-width: 75px;
    }

    .hero-volume-slider {
        width: 50px;
    }
}

@media (max-width: 480px) {
    .hero-video-controls {
        padding: 0.5rem 0.75rem;
    }

    .hero-play-btn svg {
        width: 50px;
        height: 50px;
    }

    .hero-time-display {
        display: none;
    }

    .hero-volume-slider {
        width: 40px;
    }
}

/* Hero Responsive Adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem !important;
    }

    .hero-title span.hero-title-gradient {
        font-size: 1.15em !important;
    }

    .btn-with-badge {
        width: 100%;
        text-align: center;
        align-items: center !important;
    }
}

/* ========== HERO FEATURES - PREMIUM DESIGN ========== */

/* Features Wrapper - matches pricing-wrapper style */
.features-wrapper-hero {
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 2.5rem;
    padding: 2.5rem;
    max-width: 1380px;
    margin: 0 auto;
    overflow: hidden;
}

/* Decorative Orbs for Features */
.features-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.features-orb-1 {
    top: -30%;
    right: -15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 98, 17, 0.18) 0%, transparent 70%);
    animation: orbFloat 8s ease-in-out infinite;
}

.features-orb-2 {
    bottom: -30%;
    left: -15%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(230, 179, 37, 0.15) 0%, transparent 70%);
    animation: orbFloat 10s ease-in-out infinite reverse;
}

.features-orb-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(242, 207, 123, 0.1) 0%, transparent 70%);
    animation: orbFloat 12s ease-in-out infinite;
}

/* Features Grid - 3 columns layout with centered last row */
.features-grid-hero {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.25rem;
    text-align: left;
}

/* Items 1-6: span 2 columns each (3 per row) */
.features-grid-hero .feature-item-hero:nth-child(1),
.features-grid-hero .feature-item-hero:nth-child(2),
.features-grid-hero .feature-item-hero:nth-child(3),
.features-grid-hero .feature-item-hero:nth-child(4),
.features-grid-hero .feature-item-hero:nth-child(5),
.features-grid-hero .feature-item-hero:nth-child(6) {
    grid-column: span 2;
}

/* Items 7-8: centered in last row */
.features-grid-hero .feature-item-hero:nth-child(7) {
    grid-column: 2 / 4;
}

.features-grid-hero .feature-item-hero:nth-child(8) {
    grid-column: 4 / 6;
}

/* Feature Item - Premium Card (Vertical Layout) */
.feature-item-hero {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.75rem 1.75rem 2rem;
    position: relative;
    text-align: left;

    /* Clean white background */
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    /* Subtle warm border */
    border: 1px solid rgba(249, 235, 222, 0.9);
    border-radius: 1.25rem;

    /* Elegant shadow */
    box-shadow:
        0 2px 12px rgba(212, 98, 17, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);

    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-item-hero:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(212, 98, 17, 0.12);
    box-shadow:
        0 16px 40px rgba(212, 98, 17, 0.12),
        0 6px 16px rgba(212, 98, 17, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

/* Feature Icon */
.feature-item-hero img,
.feature-item-hero svg.feature-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
    flex-shrink: 0;
}

/* SVG Feature Icons Styling */
.feature-item-hero svg.feature-icon {
    filter: drop-shadow(0 2px 8px rgba(212, 98, 17, 0.25));
    transition: all 0.3s ease;
}

.feature-item-hero:hover svg.feature-icon {
    filter: drop-shadow(0 4px 16px rgba(242, 207, 123, 0.5));
    transform: scale(1.1);
}

/* Feature Text - 15% bigger */
.feature-item-hero h4 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.35rem;
    font-size: 1.035rem;
    /* was 0.9rem, now 15% bigger */
    line-height: 1.35;
}

.feature-item-hero p {
    font-size: 0.935rem;
    /* was 0.8125rem, now 15% bigger */
    color: var(--espresso-70);
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .features-wrapper-hero {
        padding: 1.5rem;
        border-radius: 1.5rem;
    }

    .features-grid-hero {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    /* Reset all items to single column on mobile */
    .features-grid-hero .feature-item-hero:nth-child(1),
    .features-grid-hero .feature-item-hero:nth-child(2),
    .features-grid-hero .feature-item-hero:nth-child(3),
    .features-grid-hero .feature-item-hero:nth-child(4),
    .features-grid-hero .feature-item-hero:nth-child(5),
    .features-grid-hero .feature-item-hero:nth-child(6),
    .features-grid-hero .feature-item-hero:nth-child(7),
    .features-grid-hero .feature-item-hero:nth-child(8) {
        grid-column: span 1;
    }

    .feature-item-hero {
        padding: 1.5rem;
    }

    .feature-item-hero img,
    .feature-item-hero svg.feature-icon {
        width: 44px;
        height: 44px;
    }

    .feature-item-hero h4 {
        font-size: 0.975rem;
    }

    .feature-item-hero p {
        font-size: 0.875rem;
    }

    .features-orb-1,
    .features-orb-2,
    .features-orb-3 {
        opacity: 0.7;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .features-wrapper-hero {
        padding: 2rem;
    }

    /* 2 columns on tablet */
    .features-grid-hero {
        grid-template-columns: repeat(4, 1fr);
    }

    .features-grid-hero .feature-item-hero:nth-child(1),
    .features-grid-hero .feature-item-hero:nth-child(2),
    .features-grid-hero .feature-item-hero:nth-child(3),
    .features-grid-hero .feature-item-hero:nth-child(4),
    .features-grid-hero .feature-item-hero:nth-child(5),
    .features-grid-hero .feature-item-hero:nth-child(6),
    .features-grid-hero .feature-item-hero:nth-child(7),
    .features-grid-hero .feature-item-hero:nth-child(8) {
        grid-column: span 2;
    }

    .feature-item-hero {
        padding: 1.5rem;
    }
}

/* Pricing section spacing for first CTA */
#pricing {
    padding-top: 60px;
    padding-bottom: 10px;
}

/* Logo SVG styling - nav logo uses the default .logo-icon styles */

/* ========== PHASE 2 RESPONSIVE STYLES ========== */

/* How It Works Section */
.how-it-works-section {
    padding: 6rem 0;
}

/* Step Cards - Responsive */
@media (max-width: 900px) {
    .step-card {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .step-card .step-visual-left {
        order: 0 !important;
    }

    .step-card .step-content {
        order: 1 !important;
    }

    .step-card h3 {
        font-size: 2rem !important;
    }

    .how-intro h2 {
        font-size: 2.25rem !important;
    }
}

/* How-it-works heading: cleaner 2-line layout on mobile */
@media (max-width: 768px) {
    .how-intro .section-title {
        line-height: 1.15;
        margin-bottom: 2rem !important;
    }

    .how-intro .how-steps-line {
        display: block;
        margin-top: 0.5rem;
    }

    .how-intro .how-title-in {
        display: inline-block;
        opacity: 0.9;
    }

    /* Override the inline 1.25em on mobile so it fits */
    .how-intro .hero-title-gradient {
        font-size: 1.12em !important;
    }
}

/* Guarantee Section */
.guarantee-section {
    padding: 6rem 0 0 0;
}

@media (max-width: 900px) {
    .guarantee-wrapper {
        padding: 3rem 1.5rem !important;
    }

    .guarantee-wrapper h2 {
        font-size: 2.5rem !important;
    }

    .guarantee-wrapper>div>p {
        font-size: 1.25rem !important;
    }

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

@media (max-width: 600px) {
    .guarantee-grid {
        grid-template-columns: 1fr !important;
        max-width: 300px !important;
    }
}

/* Problem Section */
.problem-section {
    padding: 4rem 0;
}

/* Make "The Problem" badge red (override inline styles) */
#problem .fact-badge {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.14), rgba(239, 68, 68, 0.08)) !important;
    border: 1px solid rgba(220, 38, 38, 0.28) !important;
    color: #B91C1C !important;
    box-shadow: 0 10px 26px rgba(220, 38, 38, 0.12);
}

.problem-card {
    /* Match the inline "glass" card styling used by other problem cards */
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 1.25rem;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 900px) {
    .problem-grid {
        grid-template-columns: 1fr !important;
        max-width: 400px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

@media (max-width: 768px) {
    .problem-section {
        padding: 3rem 0;
    }

    .problem-section h2 {
        font-size: 1.75rem !important;
    }

    /* Add breathing room below the grid on mobile */
    .problem-grid {
        margin-bottom: 1.5rem;
    }

    .problem-section>.section-container>.problem-content>div:nth-child(4) {
        flex-direction: column !important;
    }

    .problem-section>.section-container>.problem-content>div:nth-child(4)>div {
        flex: none !important;
    }
}

/* Guarantee item hover effect */
.guarantee-item {
    transition: var(--transition);
}

.guarantee-item:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Step card hover effect */
.step-visual {
    transition: var(--transition);
}

.step-card:hover .step-visual {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

/* ========== PHASE 3 RESPONSIVE STYLES ========== */

/* Options Section */
.options-section {
    padding: 4rem 0;
}

.option-container {
    transition: transform 0.3s ease;
}

.option-container:hover {
    transform: translateY(-4px);
}

.option-card-featured {
    border-radius: 1.5rem;
}

@media (max-width: 900px) {
    .options-section {
        padding: 3rem 0;
    }

    .options-section .hero-title {
        font-size: 2.4rem !important;
        /* +20% on mobile */
        margin-bottom: 2rem !important;
    }

    .option-card {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        padding: 1.5rem !important;
    }

    .option-card .option-content {
        order: 1 !important;
    }

    .option-card .option-visual {
        order: 2 !important;
    }

    .option-card h3 {
        font-size: 1.375rem !important;
    }
}

/* Introducing Section */
.introducing-section {
    padding: 0 0 40px 0;
}

.introducing-wrapper {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .introducing-section h2 {
        font-size: 1.75rem !important;
    }

    .introducing-content>div>h2 {
        font-size: 1.75rem !important;
    }

    .introducing-content img[alt="Lumo Coffee"] {
        max-width: 220px !important;
    }

    .introducing-content .video-container {
        border-radius: var(--radius-lg) !important;
    }

    /* Fix Key Benefits cards layout on mobile (inline grid is 2-col by default) */
    #introducing .introducing-benefits-grid {
        grid-template-columns: 1fr !important;
    }

    #introducing .introducing-benefit-card {
        padding: 1.5rem !important;
        gap: 1rem !important;
    }

    /* Hero title: show mobile line breaks for 5-row layout */
    .hero-br-mobile {
        display: block;
    }
}

/* Mobile surface separation: make cards stand out from background */
@media (max-width: 768px) {

    .problem-card,
    .option-card,
    .feature-card,
    .introducing-benefit-card,
    .uyw-wrapper,
    .testimonial-card {
        /* Warm accent separation (matches the orange/gold brand gradient vibe) */
        border-color: rgba(212, 98, 17, 0.18) !important;
        box-shadow:
            0 10px 28px rgba(212, 98, 17, 0.12),
            0 2px 10px rgba(230, 179, 37, 0.08) !important;
    }
}

/* ========== PHASE 4 RESPONSIVE STYLES ========== */

/* Comparison Section Mobile */
@media (max-width: 768px) {
    .comparison-section {
        padding: 4rem 0;
    }

    .comparison-bg {
        border-radius: 2rem;
        transform: rotate(-0.5deg);
    }

    .comparison-content {
        padding: 2rem 1.5rem;
    }

    .comparison-header {
        margin-bottom: 3rem;
    }

    .comparison-header h2 {
        font-size: 1.75rem;
    }

    .comparison-header p {
        font-size: 1rem;
    }

    .comparison-card {
        padding: 1.5rem;
    }

    .comparison-card-header {
        margin-bottom: 1.5rem;
    }

    .comparison-card-header h3 {
        font-size: 1.25rem;
    }

    .comparison-rows {
        gap: 1rem;
    }

    .comparison-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
        padding-bottom: 0.75rem;
    }

    .comparison-row-value {
        font-size: 1.125rem;
    }

    .comparison-footer {
        margin-top: 3rem;
    }

    .comparison-footer-text {
        font-size: 1.125rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .comparison-cta {
        padding: 1.25rem 2.5rem;
        font-size: 1rem;
        width: 100%;
        text-align: center;
    }

    .comparison-recommended {
        top: 1rem;
        right: 1rem;
        font-size: 0.5rem;
        padding: 0.35rem 0.75rem;
    }
}

/* Setups Section */
.setups-section {
    padding: 6rem 0;
}

.setup-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.setup-card:hover img {
    transform: scale(1.05);
}

@media (max-width: 1100px) {
    .setups-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .setups-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }

    .setups-section h2 {
        font-size: 2rem !important;
    }

    .setup-card>div:last-child {
        padding: 1rem !important;
    }

    .setup-card p {
        font-size: 0.8125rem !important;
    }
}

@media (max-width: 500px) {
    .setups-grid {
        grid-template-columns: 1fr !important;
        max-width: 300px;
        margin: 0 auto;
    }
}

/* Comparison Table Section */
.comparison-table-section {
    padding: 6rem 0;
}

@media (max-width: 900px) {
    .comparison-columns {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
        max-width: 500px !important;
    }

    .comparison-table-section h2 {
        font-size: 2rem !important;
    }

    .comparison-col {
        padding: 2rem 1.5rem !important;
    }
}

@media (max-width: 500px) {
    .comparison-col h3 {
        font-size: 1.25rem !important;
    }

    .comp-point {
        font-size: 0.9375rem;
    }
}

/* Comparison column hover effects */
.comparison-col-with {
    transition: var(--transition);
}

.comparison-col-with:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(212, 98, 17, 0.15);
}

/* ========== PHASE 5 RESPONSIVE STYLES ========== */

/* Features Showcase Section */
.features-showcase-section {
    padding: 6rem 0;
}

.feature-showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1024px) {
    .features-showcase-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 650px) {
    .features-showcase-grid {
        grid-template-columns: 1fr !important;
        max-width: 450px;
        margin: 0 auto;
    }

    .features-showcase-section h2 {
        font-size: 2.25rem !important;
    }
}

/* Use Cases Section */
.use-cases-section {
    padding: 6rem 0;
}

.use-case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1024px) {
    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 700px) {
    .use-cases-grid {
        grid-template-columns: 1fr !important;
        max-width: 450px;
        margin: 0 auto;
    }

    .use-cases-section h2 {
        font-size: 2rem !important;
    }

    .use-case-card h3 {
        font-size: 1rem !important;
    }
}

/* ========== PHASE 6 RESPONSIVE STYLES ========== */

/* No Other Tool Section */
.no-other-tool-section {
    padding: 6rem 0;
}

@media (max-width: 768px) {
    .no-other-tool-section h2 {
        font-size: 2.25rem !important;
    }
}

/* Main Pricing Section - THE MOST IMPORTANT */
.main-pricing-section {
    padding: 6rem 0;
}

#main-pricing .pricing-card.featured {
    text-align: center;
}

#main-pricing .pricing-card-header {
    margin-bottom: 0;
}

#main-pricing .pricing-original {
    font-size: calc(1.125rem * 1.4) !important;
    /* +40% */
    margin-top: 21px;
}

/* Stack TODAY ONLY above the price */
#main-pricing .main-pricing-price-row {
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.5rem !important;
}

#main-pricing .pricing-current {
    margin-bottom: -3px;
}

#main-pricing button.btn-pricing-modern {
    height: 100px;
}

#main-pricing .btn-pricing-headline {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.1;
    white-space: normal;
    max-width: 100%;
}

#main-pricing .pricing-plan-name {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
}

#main-pricing .pricing-amount {
    font-size: 4rem;
}

#main-pricing .pricing-features {
    text-align: left;
    margin-bottom: 2.5rem;
}

#main-pricing .pricing-feature {
    font-size: 1.125rem;
    margin-bottom: 1.125rem;
    align-items: flex-start;
    line-height: 1.35;
}

#main-pricing .pricing-feature .material-symbols-outlined {
    font-size: 1.375rem;
    margin-top: 0.1rem;
}

#main-pricing .pricing-feature span {
    max-width: 100%;
    overflow-wrap: anywhere;
}

#main-pricing .pricing-feature strong {
    color: var(--espresso-deep);
}

/* Main pricing scarcity module (countdown + spots + loading bar) */
#main-pricing .scarcity-container {
    margin-top: 38px;
    padding: 1rem 1.1rem;
    border-radius: 1.25rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 248, 240, 0.82));
    border: 1px solid rgba(212, 98, 17, 0.18);
    box-shadow:
        0 16px 40px rgba(212, 98, 17, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

#main-pricing .scarcity-top {
    display: flex;
    gap: 0.75rem;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0.85rem;
}

#main-pricing .scarcity-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.75rem;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: 0.02em;
    border: 1px solid rgba(212, 98, 17, 0.18);
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

#main-pricing .scarcity-chip .material-symbols-outlined {
    font-size: 1.1rem;
    color: var(--primary);
}

#main-pricing .scarcity-chip-label {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--espresso-50);
    text-transform: uppercase;
}

#main-pricing .scarcity-chip-value {
    font-size: 0.9375rem;
    font-weight: 900;
    color: var(--espresso-deep);
}

#main-pricing .scarcity-chip-timer {
    border-color: rgba(239, 68, 68, 0.18);
}

#main-pricing .scarcity-chip-timer .material-symbols-outlined {
    color: #DC2626;
}

#main-pricing .scarcity-chip-founders {
    border-color: rgba(212, 98, 17, 0.20);
}

#main-pricing .scarcity-chip-founders .scarcity-chip-label {
    font-size: 0.875rem;
    letter-spacing: 0.03em;
    color: var(--espresso-deep);
    font-weight: 700;
    text-transform: none;
}

#main-pricing .scarcity-chip-founders .scarcity-chip-value {
    font-variant-numeric: tabular-nums;
    color: var(--primary);
    font-weight: 900;
}

#main-pricing .scarcity-meter-track {
    position: relative;
    height: 12px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(34, 24, 16, 0.08);
    border: 1px solid rgba(212, 98, 17, 0.14);
}

#main-pricing .scarcity-meter-fill {
    height: 100%;
    width: 0%;
    border-radius: 999px;
    background: linear-gradient(90deg, #DC2626 0%, #D46211 45%, #f2cf7b 100%);
    box-shadow: 0 10px 22px rgba(212, 98, 17, 0.18);
    transition: width 0.6s ease;
    position: relative;
}

#main-pricing .scarcity-meter-fill::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: translateX(-60%);
    animation: scarcityShimmer 2.2s ease-in-out infinite;
    mix-blend-mode: overlay;
}

@keyframes scarcityShimmer {
    0% {
        transform: translateX(-60%);
    }

    100% {
        transform: translateX(160%);
    }
}

#main-pricing .scarcity-meter-foot {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0.65rem;
    text-align: center;
}

#main-pricing .scarcity-footnote {
    font-size: 0.85rem;
    color: var(--espresso-50);
    font-weight: 650;
    text-align: center;
}

#main-pricing .scarcity-footnote-strong {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--primary);
}

@media (max-width: 600px) {
    #main-pricing .scarcity-container {
        padding: 0.9rem 0.95rem;
        border-radius: 1.1rem;
    }

    #main-pricing .scarcity-chip {
        width: 100%;
        justify-content: center;
    }

    #main-pricing .scarcity-meter-foot {
        justify-content: center;
        text-align: center;
    }

    /* Main pricing features: larger but still fits the card */
    #main-pricing .pricing-feature {
        font-size: 1.05rem;
        margin-bottom: 0.95rem;
    }

    /* Main pricing CTA: prevent headline overflow/overlap on small screens */
    #main-pricing button.btn-pricing-modern {
        padding-left: 1.25rem !important;
        padding-right: 3.25rem !important;
        /* make room for absolute arrow */
    }

    #main-pricing .btn-pricing-headline {
        font-size: clamp(18px, 5.4vw, 22px);
    }

    #main-pricing button.btn-pricing-modern>.material-symbols-outlined {
        right: 1rem !important;
        font-size: 1.25rem !important;
    }
}

#main-pricing .pricing-save-badge {
    position: absolute;
    top: -1.25rem;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    background: linear-gradient(135deg, #DC2626, #B91C1C);
    color: white;
    font-size: 0.875rem;
    font-weight: 800;
    padding: 0.75rem 2rem;
    border-radius: var(--radius-pill);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.main-cta-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 18px 45px rgba(212, 98, 17, 0.5);
}

.main-cta-button:active {
    transform: translateY(-2px) scale(0.98);
}

@media (max-width: 900px) {
    .main-pricing-wrapper {
        padding: 3rem 1.5rem !important;
    }

    .main-pricing-section h2 {
        font-size: 2.4rem !important;
        /* +20% on mobile */
    }

    .pricing-box-main {
        padding: 2rem 1.5rem !important;
    }

    .pricing-box-main .main-cta-button {
        font-size: 1.125rem !important;
        padding: 1.25rem 2rem !important;
    }
}

@media (max-width: 600px) {
    .main-pricing-section h3 {
        font-size: 1.375rem !important;
    }

    /* Price sizing on mobile - still prominent */
    .pricing-box-main>div:first-of-type span:nth-child(2) {
        font-size: 4.5rem !important;
    }
}

/* Testimonials Section */
.testimonials-main-section {
    padding: 6rem 0;
}

.testimonial-main-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .testimonials-main-grid {
        grid-template-columns: 1fr !important;
        max-width: 500px !important;
    }

    .testimonials-main-section h2 {
        font-size: 2rem !important;
    }

    .testimonial-main-card {
        padding: 2rem !important;
    }
}

/* ========== PHASE 7 RESPONSIVE STYLES ========== */

/* Bonus Section */
.bonus-section {
    padding: 6rem 0;
}

.bonus-box {
    transition: var(--transition);
}

.bonus-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
    .bonus-section h2 {
        font-size: 2rem !important;
    }

    .bonus-section h3 {
        font-size: 2rem !important;
    }

    .bonus-box {
        grid-template-columns: 1fr !important;
        text-align: center;
    }

    .bonus-box>div:first-child {
        order: 2;
    }

    .bonus-box>div:last-child {
        order: 1;
        max-width: 200px;
        margin: 0 auto;
    }

    .bonus-box h4 {
        justify-content: center;
        flex-wrap: wrap;
        font-size: 1.125rem !important;
    }

    .espresso-gallery {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 500px) {
    .espresso-gallery {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .espresso-gallery>div:last-child {
        display: none;
    }
}

/* FAQ Section */
.faq-main-section {
    padding: 6rem 0;
}

.faq-item-main {
    transition: var(--transition);
}

.faq-item-main:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.faq-question-main:hover h4 {
    color: var(--primary);
}

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

.faq-item-main.active {
    border-color: rgba(212, 98, 17, 0.3);
}

@media (max-width: 768px) {
    .faq-main-section h2 {
        font-size: 2rem !important;
    }

    .faq-question-main {
        padding: 1.25rem !important;
    }

    .faq-question-main h4 {
        font-size: 1rem !important;
        padding-right: 1rem;
    }
}

/* ========== PHASE 8 RESPONSIVE STYLES ========== */

/* Closing CTA Section */
.closing-cta-section {
    padding: 6rem 0;
}

@media (max-width: 768px) {
    .closing-cta-section p:first-of-type {
        font-size: 1.25rem !important;
    }
}

/* Final Benefits Section */
.final-benefits-section {
    padding: 6rem 0;
}

@media (max-width: 900px) {
    .final-benefits-wrapper {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
        text-align: center;
    }

    .final-benefits-image {
        order: 1;
    }

    .final-benefits-content {
        order: 2;
    }

    .final-benefits-section h2 {
        font-size: 1.875rem !important;
    }
}

/* Footer */
.main-footer {
    background: var(--espresso-deep);
}

.main-footer a:hover {
    color: var(--liquid-gold) !important;
}

.main-footer .footer-grid {
    margin-bottom: 3rem;
}

@media (max-width: 900px) {
    .main-footer .footer-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 2.5rem !important;
    }
}

@media (max-width: 600px) {
    .main-footer .footer-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 2rem !important;
    }

    .main-footer .footer-brand .hero-logo {
        justify-content: center;
    }
}

/* ==========================================
   MARKETING & SALES TRIGGERS
   Added: 2026-02-05
   ========================================== */

/* 1. Sticky Countdown Bar */
.sticky-countdown-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, var(--espresso-deep) 0%, #3d2a1f 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    z-index: 9999;
    top: auto;
    /* Ensure no conflict */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-countdown-bar.visible {
    transform: translateY(0);
}

.sticky-text {
    font-size: 0.9375rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.sticky-timer {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    /* Orange to pop */
    font-variant-numeric: tabular-nums;
    background: rgba(212, 98, 17, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(212, 98, 17, 0.3);
}

.sticky-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.8rem 1.75rem;
    background: var(--primary);
    color: white;
    border-radius: 0.625rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease;
    border: none;
    cursor: pointer;
    box-shadow: none;
}

.sticky-btn:hover {
    background: #c05a0f;
    transform: translateY(-1px);
    box-shadow: none;
}

.sticky-btn:active {
    transform: translateY(0);
}

.sticky-btn .material-symbols-outlined {
    font-size: 1.125rem;
    transition: transform 0.2s ease;
}

.sticky-btn:hover .material-symbols-outlined {
    transform: translateX(3px);
}

@media (max-width: 768px) {

    /* 1. Sticky Bar - Make compact row instead of stack */
    .sticky-countdown-bar {
        flex-direction: row;
        justify-content: space-between;
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }

    .sticky-text {
        font-size: 0.75rem;
        display: none;
        /* Hide label on really small screens if needed, or keep compact */
    }

    /* Show "Ends in" text only if space permits, otherwise Just show timer */
    .sticky-timer {
        font-size: 1rem;
        padding: 0.25rem 0.5rem;
    }

    .sticky-btn {
        padding: 0.6rem 1.1rem;
        font-size: 0.85rem;
        white-space: nowrap;
    }

    /* 3. Toasts - Ensure they don't block navigation or sticky bar */
    #toastContainer {
        bottom: 5rem;
        /* Above sticky bar */
        left: 1rem;
        right: 1rem;
        align-items: center;
        /* Center toasts on mobile */
    }

    .sales-toast {
        max-width: 100%;
        /* Full width allowed */
        width: auto;
        padding: 0.75rem;
        transform: translateY(20px);
        /* Animate up/down instead of left/right for mobile */
        opacity: 0;
    }

    .sales-toast.visible {
        transform: translateY(0);
        opacity: 1;
    }

    /* 4. Exit Modal - Fit small screens */
    .exit-modal-card {
        padding: 1.5rem;
        max-width: 90%;
        max-height: 90vh;
        /* Prevent overflow */
        overflow-y: auto;
        /* Allow scrolling if content is tall */
    }

    .exit-title {
        font-size: 1.5rem;
        margin-top: 1.5rem;
        /* Space for close button */
    }

    .exit-icon {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }

    .exit-offer {
        padding: 1rem;
    }

    .close-exit-modal {
        top: 0.75rem;
        right: 0.75rem;
    }
}

/* Very small screens */
@media (max-width: 380px) {
    .sticky-text {
        display: none;
    }
}

/* ==========================================
   MOBILE OPTIMIZATION REFACTOR
   (Moved from inline styles)
   ========================================== */

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.setups-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

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

.espresso-gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

/* Bonus Box - moved from inline */
.bonus-box {
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 2px solid rgba(212, 98, 17, 0.2);
    border-radius: var(--radius-blob);
    padding: 2.5rem;
    display: grid;
    /* Desktop default */
    grid-template-columns: 1fr 200px;
    gap: 2rem;
    align-items: center;
}

/* Pricing Card Featured - moved from inline */
.pricing-card.featured {
    max-width: 620px;
    margin: 0 auto;
    padding: 3rem;
}

/* ==========================================
   MOBILE MEDIA QUERIES (< 900px)
   ========================================== */
@media (max-width: 900px) {

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

    .setups-grid {
        display: flex;
        /* Scrollable carousel for setups */
        overflow-x: auto;
        padding-bottom: 1rem;
        /* Space for scrollbar */
        grid-template-columns: none;
        scroll-snap-type: x mandatory;
        gap: 1rem;
    }

    /* Hide scrollbar for cleaner look, or keep it subtle */
    .setups-grid::-webkit-scrollbar {
        height: 4px;
        display: none;
        /* Often cleaner on mobile */
    }

    .setups-grid {
        -ms-overflow-style: none;
        /* IE and Edge */
        scrollbar-width: none;
        /* Firefox */
    }

    .setup-card {
        min-width: 260px;
        scroll-snap-align: center;
    }

    .bonus-box {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 1.5rem;
    }

    .bonus-box>div:last-child {
        /* Image container */
        order: -1;
        margin: 0 auto 1.5rem;
        max-width: 240px;
    }

    .espresso-gallery {
        grid-template-columns: repeat(2, 1fr);
        /* 2 cols on mobile */
    }
}

/* ==========================================
   MOBILE MEDIA QUERIES (< 600px - Phones)
   ========================================== */
@media (max-width: 600px) {

    /* Smart Optimizer fixes */
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .optimizer-wrapper {
        padding: 3rem 1.5rem;
        border-radius: 2rem;
    }

    /* Comparison table fixes */
    .comparison-content {
        padding: 2rem 1.25rem;
    }

    .comparison-card {
        padding: 1.5rem;
    }

    /* Pricing padding override */
    .pricing-card.featured {
        padding: 2rem 1.25rem !important;
    }

    /* Font Size Reductions */
    h1.hero-title {
        font-size: 2.5rem !important;
    }

    h2 {
        font-size: 2rem !important;
    }

    .hero-subtitle {
        font-size: 1.125rem !important;
    }

    .comparison-header h2 {
        font-size: 2rem;
    }

    .comparison-cta {
        width: 100%;
        padding: 1.25rem 1rem;
    }
}

/* ==========================================
   PHASE 2: DEEP MOBILE REFINEMENTS (< 480px)
   ========================================== */
@media (max-width: 480px) {
    .stats-grid {
        gap: 1rem;
    }

    .stat-card {
        padding: 1.5rem 1rem;
    }

    .stat-value {
        font-size: 2rem;
    }

    .comparison-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .comparison-row-value {
        align-self: flex-end;
        /* Values to the right, labels to the left */
        font-size: 1.125rem;
    }

    .comparison-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .comparison-card-header h3 {
        font-size: 1.25rem;
    }

    /* Footer Stack */
    .footer-grid {
        gap: 3rem;
    }

    .footer-brand {
        align-items: center;
        text-align: center;
    }

    .footer-bottom {
        gap: 2rem;
        text-align: center;
    }

    .footer-legal {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
}

/* Hero Mobile Polish */
@media (max-width: 600px) {
    .hero {
        padding: 4rem 0 5rem !important;
        gap: 3rem;
    }

    .hero-content {
        gap: 1.5rem;
    }
}

/* ==========================================
   MOBILE OPTIMIZATION (Added 2026-02-06.2)
   ========================================== */

@media (max-width: 768px) {

    /* Global Section Spacing Reduction */
    section {
        padding: 40px 0 !important;
        scroll-margin-top: 80px;
    }

    .section-container {
        padding: 0 1.25rem !important;
    }

    /* Fixed Top Bar / Nav adjustment */
    .nav {
        top: 0;
        padding: 0.5rem;
    }

    .nav-container {
        padding: 0.5rem 1rem;
        border-radius: 1rem;
    }

    /* Hero Section Fixes */
    .hero {
        padding: 3.5rem 0 2rem !important;
        /* Reduced top/bottom padding */
        min-height: auto !important;
        height: auto !important;
        gap: 2rem !important;
    }

    .hero-content {
        text-align: center;
        margin: 0 auto;
    }

    .hero-logo {
        margin-bottom: 1rem !important;
        justify-content: center;
    }

    .logo-icon-hero {
        width: 32px;
        height: 32px;
    }

    .logo-text-hero {
        font-size: 1.5rem !important;
    }

    .hero-badge {
        margin-bottom: 0.5rem !important;
        padding: 0.25rem 0.75rem;
    }

    .hero-badge-text {
        font-size: 0.55rem;
    }

    /* Typography Fixes */
    .hero-title {
        font-size: 40px !important;
        /* Specific request fix */
        line-height: 1.2 !important;
        /* Tighter line height */
        margin-bottom: 1rem !important;
    }

    /* Ensure gradient text wraps properly */
    .hero-title-gradient {
        font-size: 1em !important;
        display: inline !important;
        padding: 0;
    }

    .hero-subtitle {
        font-size: 1rem !important;
        line-height: 1.5;
        margin-bottom: 1.5rem !important;
        padding: 0 0.5rem;
    }

    /* Hero Buttons */
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
        padding: 0.5rem 0;
    }

    .btn-primary,
    .btn-secondary,
    .btn-with-badge,
    .btn-dark {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem !important;
        font-size: 1rem !important;
    }

    /* Hero Video */
    .hero-video-wrapper {
        margin: 1rem 0 2rem;
    }

    .hero-video-container {
        border-radius: 1rem !important;
    }

    /* Feature Grid (8 icons) - Make 2 columns to save height */
    .features-grid-hero {
        grid-template-columns: 1fr 1fr !important;
        gap: 1rem !important;
    }

    .feature-item-hero {
        padding: 1rem !important;
        text-align: left;
        /* Better for small cols */
        align-items: flex-start;
    }

    .feature-item-hero .feature-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0.75rem;
    }

    .feature-item-hero h4 {
        font-size: 0.85rem !important;
        margin-bottom: 0.25rem;
    }

    .feature-item-hero p {
        font-size: 0.75rem !important;
        line-height: 1.35;
    }

    /* Stats Section */
    .stats-section {
        padding: 2rem 0 !important;
    }

    .stats-wrapper {
        padding: 2rem 1.25rem !important;
        border-radius: 1.5rem !important;
    }

    .stats-grid {
        grid-template-columns: 1fr !important;
        /* Stack stats */
        gap: 1.5rem !important;
    }

    .stat-card {
        padding: 1.5rem !important;
    }

    .stat-value {
        font-size: 2.5rem !important;
    }

    /* Features Section (Main) */
    .features-section {
        padding: 3rem 0 !important;
    }

    .features-header {
        margin-bottom: 2.5rem !important;
        max-width: 100%;
        padding: 0 0.5rem;
    }

    .features-header h2 {
        font-size: 1.75rem !important;
    }

    .features-header p {
        font-size: 1rem !important;
    }

    .feature-card {
        padding: 2rem 1.5rem 1.5rem !important;
        border-radius: 1.5rem !important;
    }

    .feature-image {
        margin: -2rem -1.5rem 1.5rem -1.5rem !important;
        width: calc(100% + 3rem) !important;
        border-radius: 1.5rem 1.5rem 0 0 !important;
    }

    /* How It Works (Steps) */
    .how-it-works-section {
        padding: 3rem 0 !important;
    }

    .steps-grid {
        gap: 2rem !important;
        /* Reduced layout spacing */
    }

    .step-card {
        grid-template-columns: 1fr !important;
        padding: 1.5rem !important;
        gap: 1.5rem !important;
    }

    .step-content h3 {
        font-size: 1.75rem !important;
        margin-bottom: 0.75rem !important;
    }

    .step-badge {
        font-size: 0.7rem !important;
        margin-bottom: 0.75rem !important;
    }

    .step-bg {
        border-radius: 1.5rem !important;
    }

    /* Optimize Step Images */
    .step-visual {
        border-radius: 1.5rem !important;
    }

    .step-visual img {
        max-height: 250px;
        object-fit: contain;
        margin: 0 auto;
        width: auto !important;
        max-width: 100%;
    }

    /* App UI Section */
    .app-preview-container {
        border-radius: 1.5rem !important;
        padding: 4px !important;
    }

    /* FAQ Section */
    .faq-item-main {
        padding: 1rem 0 !important;
    }

    .faq-question-main {
        font-size: 1rem !important;
        padding-right: 2rem;
    }

    .faq-wrapper {
        padding: 1.5rem !important;
    }

    /* Pricing Section */
    .pricing-card-container {
        padding: 2rem 1.25rem !important;
    }

    .pricing-badge-modern {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
        text-align: center;
        line-height: 1.4;
        max-width: 90%;
    }

    .pricing-badge-modern .material-symbols-outlined {
        font-size: 1rem;
        flex-shrink: 0;
    }

    .pricing-display {
        flex-direction: column;
        align-items: center;
        gap: 0.25rem;
        margin: 1.5rem 0;
    }

    .pricing-current {
        font-size: 3rem;
    }

    /* Sticky Bottom Bar Optimization */
    .sticky-bar {
        padding: 0.5rem 0.75rem !important;
    }

    .sticky-bar-container {
        flex-direction: row;
        justify-content: space-between;
        gap: 0.5rem;
    }

    .sticky-bar-text {
        font-size: 0.75rem;
        line-height: 1.2;
    }

    .sticky-bar-btn {
        padding: 0.5rem 1rem !important;
        font-size: 0.85rem !important;
        white-space: nowrap;
    }

    /* General Utilities */
    .mobile-stack {
        flex-direction: column !important;
    }

    .mobile-hide {
        display: none !important;
    }

    /* Footer Mobile Centering */
    .footer-nav-grid {
        gap: 3rem !important;
        flex-direction: column;
        align-items: center;
    }

    .footer-column {
        text-align: center !important;
        width: 100%;
    }

    .footer-column ul {
        align-items: center;
    }
}

/* ==========================================
   INTERACTIVE BENTO SIMULATOR STYLES
   ========================================== */

/* Main Card Header & Machine Selector */
.bento-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.machine-selector {
    display: flex;
    background: rgba(34, 24, 16, 0.08);
    border-radius: 2rem;
    padding: 0.25rem;
    gap: 0.25rem;
}

.machine-btn {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--espresso-50);
    padding: 0.5rem 1rem;
    border-radius: 1.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    white-space: nowrap;
}

.machine-btn:hover {
    color: var(--espresso-deep);
    background: rgba(255, 255, 255, 0.5);
}

.machine-btn.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 12px rgba(212, 98, 17, 0.3);
}

/* Simulator Controls */
.simulator-controls {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sim-control-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sim-labels {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--espresso-50);
    font-weight: 600;
}

.sim-label-title {
    color: var(--espresso-deep);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 800;
}

.sim-label.sour,
.sim-label.weak {
    color: #b45309;
    /* Amber darker for light bg */
}

.sim-label.bitter,
.sim-label.strong {
    color: #be185d;
    /* Pink darker for light bg */
}

/* Custom Range Input Styling */
.range-wrapper {
    position: relative;
    height: 32px;
    display: flex;
    align-items: center;
}

.range-wrapper input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    background: transparent;
    z-index: 2;
    margin: 0;
    padding: 0;
}

.range-wrapper input[type=range]:focus {
    outline: none;
}

/* Slider Track - Styled for Light Background */
.taste-wrapper input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 8px;
    cursor: pointer;
    background: linear-gradient(90deg,
            #fbbf24 0%,
            #f59e0b 30%,
            rgba(212, 98, 17, 0.3) 50%,
            #f472b6 70%,
            #ec4899 100%);
    border-radius: 4px;
    border: none;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.strength-wrapper input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 8px;
    cursor: pointer;
    background: linear-gradient(90deg,
            rgba(200, 200, 200, 0.5) 0%,
            var(--espresso-50) 50%,
            var(--espresso-deep) 100%);
    border-radius: 4px;
    border: none;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Slider Thumb */
.range-wrapper input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 22px;
    width: 22px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    margin-top: -8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25), 0 0 0 2px var(--primary);
    border: 3px solid white;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.range-wrapper input[type=range]:hover::-webkit-slider-thumb {
    box-shadow: 0 4px 12px rgba(212, 98, 17, 0.3), 0 0 0 3px var(--primary);
}

.range-wrapper input[type=range]:active::-webkit-slider-thumb {
    transform: scale(1.15);
    background: var(--primary);
    border-color: white;
}

/* Decoration lines for center (sweet spot) */
.range-track-decor {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 3px;
    height: 16px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 2px;
    pointer-events: none;
    z-index: 1;
}

/* Adjustment Cards Interactive States */
.bento-adjustment {
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s, background-color 0.3s;
}

.bento-adjustment.active-change {
    border-left: 3px solid var(--liquid-gold);
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(4px);
}

.bento-adjustment.perfect {
    border-left: 3px solid #10B981;
    /* Emerald 500 */
    background: rgba(16, 185, 129, 0.05);
}

.bento-adjustment .adjustment-value {
    transition: color 0.3s;
}

.bento-adjustment.active-change .adjustment-value {
    color: var(--liquid-gold);
}

.bento-adjustment.perfect .adjustment-value {
    color: #34D399;
    /* Emerald 400 */
}

/* Result Card Success State */
.bento-result {
    transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
    /* Clip overflowing child elements */
}

.bento-result.success {
    background: rgba(16, 185, 129, 0.12) !important;
    border: 2px solid rgba(16, 185, 129, 0.4) !important;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.15);
}

.bento-result.success .result-icon {
    background: #10B981;
    color: white;
    width: 40px;
    height: 40px;
    overflow: hidden;
}

.bento-result .result-cta {
    display: none;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: #34D399;
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    opacity: 0;
    transform: translateY(5px);
}

.bento-result.success .result-cta {
    display: inline-block;
    animation: fadeInUp 0.5s ease 0.2s forwards;
}

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

/* Mobile Responsiveness for Simulator */
@media (max-width: 480px) {
    .bento-header {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .machine-selector {
        width: 100%;
        justify-content: space-between;
    }

    .machine-btn {
        padding: 0.5rem;
        font-size: 0.7rem;
        text-align: center;
    }

    .sim-labels {
        font-size: 0.7rem;
    }

    .range-wrapper {
        height: 36px;
        /* Larger touch target */
    }

    .range-wrapper input[type=range]::-webkit-slider-thumb {
        height: 24px;
        width: 24px;
        margin-top: -10px;
    }
}

/* ==========================================
   SUPPORT MODAL STYLES
   ========================================== */

.support-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.support-modal.active {
    opacity: 1;
    visibility: visible;
}

.support-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(34, 24, 16, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.support-modal-content {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(253, 251, 247, 0.98));
    border-radius: 1.5rem;
    padding: 2.5rem;
    max-width: 440px;
    width: 90%;
    box-shadow: 0 24px 64px rgba(34, 24, 16, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.6);
    transform: translateY(20px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.support-modal.active .support-modal-content {
    transform: translateY(0) scale(1);
}

.support-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(34, 24, 16, 0.08);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.support-close:hover {
    background: rgba(212, 98, 17, 0.15);
    transform: rotate(90deg);
}

.support-close .material-symbols-outlined {
    font-size: 20px;
    color: var(--espresso-70);
}

/* Header */
.support-header {
    text-align: center;
    margin-bottom: 2rem;
}

.support-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--amber-glow));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    box-shadow: 0 8px 24px rgba(212, 98, 17, 0.3);
}

.support-icon-wrapper .material-symbols-outlined {
    font-size: 32px;
    color: white;
}

.support-header h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--espresso-deep);
    margin-bottom: 0.5rem;
}

.support-header p {
    font-size: 0.9375rem;
    color: var(--espresso-70);
    line-height: 1.6;
}

/* Email Box */
.support-email-box {
    background: rgba(34, 24, 16, 0.04);
    border: 1px solid rgba(34, 24, 16, 0.08);
    border-radius: 1rem;
    padding: 1.25rem;
    margin-bottom: 1.25rem;
}

.support-email-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--espresso-50);
    margin-bottom: 0.75rem;
}

.support-email-label .material-symbols-outlined {
    font-size: 16px;
}

.support-email-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.support-email-address {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--espresso-deep);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.support-copy-btn {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    background: white;
    border: 1px solid rgba(34, 24, 16, 0.12);
    border-radius: 0.5rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--espresso-70);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.support-copy-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.support-copy-btn.copied {
    background: #10B981;
    color: white;
    border-color: #10B981;
}

.support-copy-btn .material-symbols-outlined {
    font-size: 14px;
}

/* CTA Button */
.support-send-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    background: linear-gradient(135deg, var(--primary), var(--amber-glow));
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(212, 98, 17, 0.3);
    margin-bottom: 1.5rem;
}

.support-send-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(212, 98, 17, 0.4);
}

.support-send-btn .material-symbols-outlined {
    font-size: 20px;
}

/* Info Grid */
.support-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.support-info-card {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(34, 24, 16, 0.06);
    border-radius: 0.75rem;
    padding: 1rem;
}

.support-info-card .material-symbols-outlined {
    font-size: 20px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.support-info-card strong {
    display: block;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--espresso-deep);
    margin-bottom: 0.125rem;
}

.support-info-card p {
    font-size: 0.75rem;
    color: var(--espresso-70);
    margin: 0;
}

/* FAQ Link */
.support-faq-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--espresso-50);
    padding-top: 1rem;
    border-top: 1px solid rgba(34, 24, 16, 0.08);
}

.support-faq-link .material-symbols-outlined {
    font-size: 18px;
}

.support-faq-link a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.support-faq-link a:hover {
    color: var(--amber-glow);
    text-decoration: underline;
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
    .support-modal-content {
        padding: 2rem 1.5rem;
        border-radius: 1.25rem;
        margin: 1rem;
    }

    .support-header h3 {
        font-size: 1.5rem;
    }

    .support-icon-wrapper {
        width: 56px;
        height: 56px;
    }

    .support-icon-wrapper .material-symbols-outlined {
        font-size: 28px;
    }

    .support-info-grid {
        grid-template-columns: 1fr;
    }

    .support-email-main {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

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

/* ==========================================
   MOBILE PERFORMANCE OPTIMIZATIONS
   Critical fixes for smooth scrolling and fast paint
   ========================================== */

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Mobile-specific performance optimizations */
@media (max-width: 1024px) {

    /* CRITICAL: Disable fixed background - causes severe jank on iOS Safari */
    body {
        background-attachment: scroll !important;
    }

    /* Reduce blur effects - very expensive on mobile GPUs */
    .nav-container,
    .hero-badge,
    .btn-secondary,
    .liquid-glass,
    .cta-btn-secondary {
        backdrop-filter: blur(12px) !important;
        -webkit-backdrop-filter: blur(12px) !important;
    }

    /* Disable blob blur animations - massive GPU drain */
    .ambient-blob {
        filter: blur(60px) !important;
        will-change: auto !important;
    }

    /* Content-visibility for sections not in viewport */
    section {
        content-visibility: auto;
        contain-intrinsic-size: 0 800px;
    }

    /* Don't apply to hero - it's above the fold */
    .hero {
        content-visibility: visible;
        contain-intrinsic-size: auto;
    }

    /* Hardware acceleration for scrolling elements */
    .section-container {
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
    }

    /* Reduce transition complexity */
    .nav-link::after,
    .cta-btn::before {
        transition: width 0.2s ease !important;
    }

    /* Disable expensive hover animations on touch devices */
    .cta-btn:hover::before {
        display: none;
    }

    /* Simplify logo animation */
    .logo-icon {
        animation: none !important;
    }

    /* Reduce box-shadow complexity during scroll */
    .nav-container,
    .liquid-glass {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08) !important;
    }
}

/* Even more aggressive optimizations for smaller mobile devices */
@media (max-width: 768px) {

    /* Completely disable ambient blobs on small screens */
    .ambient-blobs {
        display: none !important;
    }

    /* Simplify decorative gradient orbs in hero */
    .hero>div[style*="position: absolute"] {
        filter: blur(50px) !important;
        opacity: 0.5 !important;
    }

    /* Reduce all transitions for snappier feel */
    * {
        transition-duration: 0.15s !important;
    }

    /* Disable section separator effects */
    .features-section::after,
    .ai-demo-section::after,
    .smart-optimizer::after,
    .screenshots-section::after,
    .access-section::after,
    .comparison-section::after,
    .story-section::after {
        box-shadow: none !important;
    }

    /* Disable decorative dots */
    .features-section::before,
    .smart-optimizer::before,
    .access-section::before {
        display: none !important;
    }

    /* Use simpler gradients */
    .btn-primary,
    .cta-btn-primary {
        background: var(--primary) !important;
    }

    /* Ensure images paint efficiently */
    img {
        content-visibility: auto;
    }

    /* Prevent layout shifts from fonts */
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    p,
    span,
    a {
        font-display: swap;
    }
}

/* iOS Safari specific fixes */
@supports (-webkit-touch-callout: none) {
    body {
        /* iOS doesn't handle fixed backgrounds well */
        background-attachment: scroll !important;
    }

    /* Reduce blur for iOS - very expensive */
    .nav-container,
    .hero-badge,
    .liquid-glass {
        backdrop-filter: blur(8px) !important;
        -webkit-backdrop-filter: blur(8px) !important;
    }

    /* Hardware acceleration for smooth scrolling */
    .section-container,
    section {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
}

/* Optimize paint for sticky elements */
.nav {
    will-change: transform;
    contain: layout style;
}

.sticky-countdown-bar {
    will-change: transform;
    contain: layout style;
}

/* ==========================================
   PRE-CHECKOUT MODAL
   ========================================== */
.checkout-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.checkout-modal.active {
    opacity: 1;
    visibility: visible;
}

.checkout-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(34, 24, 16, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.checkout-modal-content {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(255, 248, 240, 0.98) 50%,
            rgba(255, 255, 255, 0.92) 100%);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 2rem;
    padding: 2.5rem 2rem;
    max-width: 420px;
    width: 90%;
    overflow: hidden;
    box-shadow:
        0 4px 24px rgba(212, 98, 17, 0.08),
        0 24px 64px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    transform: translateY(20px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.checkout-modal.active .checkout-modal-content {
    transform: translateY(0) scale(1);
}

@media (max-width: 768px) {
    .checkout-modal-content {
        padding: 2rem 1.5rem;
        max-width: 95%;
        border-radius: 1.5rem;
    }
}

/* Decorative gradient orbs */
.checkout-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}

.checkout-orb-1 {
    top: -20%;
    right: -15%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 98, 17, 0.25) 0%, transparent 70%);
    animation: orbFloat 8s ease-in-out infinite;
}

.checkout-orb-2 {
    bottom: -25%;
    left: -20%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(230, 179, 37, 0.2) 0%, transparent 70%);
    animation: orbFloat 12s ease-in-out infinite reverse;
}

.checkout-orb-3 {
    top: 50%;
    right: -10%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(242, 207, 123, 0.15) 0%, transparent 70%);
    animation: orbFloat 15s ease-in-out infinite;
    animation-delay: -5s;
}

/* Loading State */
.checkout-modal-loading {
    text-align: center;
    padding: 3rem 1rem;
    position: relative;
    z-index: 1;
}

.checkout-spinner {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.5rem;
    border: 3px solid rgba(212, 98, 17, 0.15);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.checkout-loading-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--espresso-deep);
}

/* Pricing state wrapper */
.checkout-modal-pricing {
    position: relative;
    z-index: 1;
}

/* Close Button */
.checkout-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(34, 24, 16, 0.06);
    border: none;
    border-radius: 50%;
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--espresso-50);
    z-index: 2;
}

.checkout-modal-close:hover {
    background: rgba(212, 98, 17, 0.12);
    color: var(--primary);
    transform: rotate(90deg);
}

.checkout-modal-close .material-symbols-outlined {
    font-size: 1.25rem;
}

/* Header */
.checkout-modal-header {
    text-align: center;
    margin-bottom: 1.75rem;
}

.checkout-modal-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary), var(--liquid-gold));
    color: white;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-pill);
    margin-bottom: 1rem;
    box-shadow: 0 4px 16px rgba(212, 98, 17, 0.3);
}

.checkout-modal-badge .material-symbols-outlined {
    font-size: 0.875rem;
}

.checkout-modal-header h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--espresso-deep);
    margin: 0;
}

/* Pricing Breakdown */
.checkout-pricing-breakdown {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(34, 24, 16, 0.08);
    border-radius: 1.25rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.checkout-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.625rem;
    font-size: 0.9375rem;
    color: var(--espresso-70);
}

.checkout-price-strikethrough {
    text-decoration: line-through;
    color: var(--espresso-50);
}

.checkout-discount-amount {
    font-weight: 700;
    color: #DC2626;
    font-size: 1rem;
}

.checkout-price-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(34, 24, 16, 0.1), transparent);
    margin: 1rem 0;
}

/* Price Highlight */
.checkout-price-highlight {
    text-align: center;
    padding: 1.25rem 0;
}

.checkout-price-label {
    display: block;
    font-size: 0.8125rem;
    color: var(--espresso-50);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.625rem;
}

.checkout-price-amount {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.125rem;
    margin-bottom: 0.5rem;
}

.checkout-currency {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 0.625rem;
}

.checkout-number {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--espresso-deep), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.checkout-period {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 0.75rem;
}

.checkout-price-yearly {
    font-size: 1rem;
    color: var(--espresso-70);
}

.checkout-price-yearly strong {
    color: var(--espresso-deep);
}

/* Savings Badge */
.checkout-savings-badge {
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    padding: 0.625rem 1rem;
    border-radius: var(--radius-pill);
    text-align: center;
    margin-top: 1rem;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* CTA Button */
.checkout-modal-cta {
    width: 100%;
    padding: 1.125rem 1.5rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, var(--primary), #e07420);
    border: none;
    border-radius: 0.875rem;
    color: white;
    cursor: pointer;
    box-shadow:
        0 8px 24px rgba(212, 98, 17, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.checkout-modal-cta:hover {
    transform: translateY(-2px);
    box-shadow:
        0 12px 32px rgba(212, 98, 17, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.checkout-modal-cta:active {
    transform: translateY(0);
}

.checkout-modal-cta:disabled {
    opacity: 0.8;
    cursor: not-allowed;
    transform: none;
}

.checkout-modal-cta:disabled:hover {
    transform: none;
    box-shadow:
        0 8px 24px rgba(212, 98, 17, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Button Spinner */
.checkout-btn-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.checkout-modal-cta .material-symbols-outlined {
    font-size: 1.25rem;
}

/* Footer */
.checkout-modal-footer {
    text-align: center;
}

.checkout-trust-items {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.checkout-trust-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    color: var(--espresso-70);
}

.checkout-trust-item .material-symbols-outlined {
    font-size: 1rem;
    color: var(--primary);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

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

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

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ==========================================
   SOCIAL PROOF POPUP (Provely-style)
   ========================================== */

.social-proof-popup {
    position: fixed;
    bottom: 10%;
    left: 20px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%) translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.social-proof-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) translateY(0);
    pointer-events: auto;
}

.social-proof-popup.hiding {
    opacity: 0;
    transform: translateX(-20px) translateY(0);
}

.social-proof-content {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    border-radius: 12px;
    padding: 12px 16px 12px 12px;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    max-width: 320px;
}

/* Map Thumbnail */
.social-proof-map {
    position: relative;
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #f0f0f0;
}

.social-proof-map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e8f4e8 0%, #d4e8d4 50%, #c8e0c8 100%);
    position: relative;
}

/* Simulated map lines */
.social-proof-map-placeholder::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 15%;
    width: 70%;
    height: 2px;
    background: rgba(150, 150, 150, 0.3);
    transform: rotate(-10deg);
}

.social-proof-map-placeholder::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 25%;
    width: 50%;
    height: 2px;
    background: rgba(150, 150, 150, 0.25);
    transform: rotate(5deg);
}

/* Map Pin */
.social-proof-map-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -70%);
    width: 14px;
    height: 14px;
    background: #e53935;
    border-radius: 50% 50% 50% 0;
    transform: translate(-50%, -70%) rotate(-45deg);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.social-proof-map-pin::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
}

/* Info Section */
.social-proof-info {
    flex: 1;
    min-width: 0;
}

.social-proof-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 2px;
}

.social-proof-message {
    font-size: 0.8125rem;
    color: #555;
    line-height: 1.4;
    margin-bottom: 4px;
}

.social-proof-message strong {
    color: #333;
}

/* Verified Badge */
.social-proof-verified {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.6875rem;
    color: #6b7280;
}

.social-proof-check {
    color: #3b82f6;
    flex-shrink: 0;
}

/* Mobile Responsiveness - position above sticky bar */
@media (max-width: 768px) {
    .social-proof-popup {
        bottom: 72px;
        /* 62px sticky bar height + 10px padding */
        top: auto;
        left: 12px;
        right: 12px;
        transform: translateX(-100%);
    }

    .social-proof-popup.active {
        transform: translateX(0);
    }

    .social-proof-popup.hiding {
        transform: translateX(-20px);
    }

    .social-proof-content {
        max-width: none;
        width: 100%;
    }

    .social-proof-map {
        width: 44px;
        height: 44px;
    }

    .social-proof-name {
        font-size: 0.875rem;
    }

    .social-proof-message {
        font-size: 0.75rem;
    }
}