/* ==========================================
   Ohana Guide Design System
   Based on Entrepreneur Aligné identity
   ========================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800&family=Raleway:wght@400;500;600&display=swap');

/* CSS Variables - Design Tokens */
:root {
    /* Colors */
    --cream: #FAF8F5;
    --cream-dark: #F3EDE7;
    --anthracite: #1D1D1F;
    --sienna: #B94A2F;
    --sienna-hover: #9A3D25;
    --terracotta: #C4775C;
    --sage: #6B7F6B;
    --sage-dark: #3D5245;
    --border: #E5E0D8;
    --zinc: #52525B;
    --white: #FFFFFF;
    --black: #000000;

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Raleway', sans-serif;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
    --shadow-sienna: 0 4px 14px rgba(185, 74, 47, 0.35);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

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

html {
    /* scroll-behavior: smooth; -- Removed: conflicts with GSAP ScrollTrigger */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--anthracite);
    background-color: var(--cream);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    padding: 16px 32px;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    transform: translateY(0);
    text-decoration: none;
    /* Ensure links look like buttons */
}

.btn-primary {
    background: linear-gradient(135deg, var(--sienna) 0%, #a03c26 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(185, 74, 47, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--sienna-hover) 0%, #8a3320 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(185, 74, 47, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--sienna);
    border: 2px solid var(--sienna);
    /* Note: In Hero context, we override this for glassmorphism */
}

.btn-secondary:hover {
    background: var(--sienna);
    color: var(--white);
}

.btn-lg {
    font-size: 1.125rem;
    padding: 20px 40px;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--sienna);
    color: var(--sienna);
    padding: 14px 28px;
    font-weight: 600;
    transition: all var(--transition-base);
}

.btn-outline:hover {
    background: var(--sienna);
    color: var(--white);
    transform: translateY(-2px);
}

/* ==========================================
   HEADER
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 24px 0;
    transition: all var(--transition-base);
}

.header.scrolled {
    background: var(--cream);
    padding: 16px 0;
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--white);
    transition: color var(--transition-base);
}

.header.scrolled .logo {
    color: var(--anthracite);
}

.nav {
    display: none;
    align-items: center;
    gap: 32px;
}

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

.nav-link {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--white);
    transition: width var(--transition-base);
}

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

.header.scrolled .nav-link {
    color: var(--anthracite);
}

.header.scrolled .nav-link::after {
    background: var(--sienna);
}

.header.scrolled .nav-link:hover {
    color: var(--sienna);
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

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

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition-base);
}

.header.scrolled .mobile-toggle span {
    background: var(--anthracite);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    gap: 16px;
}

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

.mobile-menu a {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--anthracite);
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.mobile-menu a:last-child {
    border-bottom: none;
}

/* Mobile Menu CTA Button */
.mobile-menu-cta {
    margin-top: 16px;
    text-align: center;
    border-bottom: none !important;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--anthracite);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background-image: url('../assets/images/hero-bg-desktop.jpg');
    background-size: cover;
    background-position: center;
    transform-origin: center center;
    /* Ensure zoom scales from center */
    will-change: transform;
    /* GPU acceleration for smooth animation */
}

/* Mobile-specific hero image (vertical format) */
@media (max-width: 767px) {
    .hero-bg {
        background-image: url('../assets/images/hero-bg-mobile.jpg');
        background-position: center top;
        /* Focus on top where iPad is */
    }
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.55) 0%,
            rgba(0, 0, 0, 0.5) 40%,
            rgba(0, 0, 0, 0.6) 70%,
            var(--cream) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 140px 24px 100px;
    max-width: 900px;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    /* Reduced from 2.5rem - 4.5rem */
    font-weight: 800;
    color: var(--white);
    margin-bottom: 40px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.hero-title .accent {
    background: linear-gradient(135deg, #FCD34D 0%, #F59E0B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(245, 158, 11, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.35rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

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

@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }
}

.hero-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 32px;
    font-style: italic;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

/* Hero Benefits (Glassmorphism) */
.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 48px;
}

@media (min-width: 640px) {
    .hero-benefits {
        gap: 32px;
    }
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    transition: transform var(--transition-base);
}

.benefit-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
}

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

.benefit-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.02em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Hero Button Overrides */
.hero-cta .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
}

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

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    animation: bounce 2s infinite;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-indicator svg {
    width: 28px;
    height: 28px;
    color: var(--white);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

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

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

/* ==========================================
   VALUE STACK
   ========================================== */
.value-stack {
    background: var(--cream);
    padding: 60px 0;
    border-bottom: 1px solid var(--border);
}

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

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

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

.value-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: var(--radius-lg);
    transition: background var(--transition-base);
}

.value-item:hover {
    background: rgba(255, 255, 255, 0.5);
}

.value-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.value-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--anthracite);
    line-height: 1.2;
    margin-bottom: 4px;
}

.value-desc {
    font-size: 0.9rem;
    color: var(--zinc);
}

/* ==========================================
   DEMO SECTION
   ========================================== */
/* ==========================================
   DEMO SECTION (CINEMA STYLE)
   ========================================== */
/* ==========================================
   DEMO SECTION (CINEMATIC STRIP)
   ========================================== */
.demo-section {
    position: relative;
    padding: 120px 0;
    background-image: url('../assets/images/bali-deco-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect */
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.demo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Darken image */
    z-index: 1;
}

.demo-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.section-label-light {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.demo-player-trigger {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: transform var(--transition-base);
}

.demo-player-trigger:hover {
    transform: scale(1.05);
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: 2px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-base);
}

.play-button svg {
    margin-left: 4px;
    /* Optical centering */
    width: 32px;
    height: 32px;
}

.demo-player-trigger:hover .play-button {
    background: var(--white);
    color: var(--sienna);
    transform: scale(1.1);
}

.play-label {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--white) 0%, rgba(196, 119, 92, 0.03) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 60px;
}

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

.testimonial-card {
    background: var(--white);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
}

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

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.star-icon {
    color: #F59E0B;
    /* Tailwind Amber-500 */
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--anthracite);
    font-style: italic;
    margin-bottom: 32px;
    flex: 1;
}

.testimonial-text strong {
    color: var(--sienna);
    font-weight: 600;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-weight: 700;
    color: var(--anthracite);
    font-size: 1rem;
}

.author-role {
    font-size: 0.85rem;
    color: var(--zinc);
}

.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1;
    /* backdrop-filter removed - causes iOS Safari issues */
}

.modal-content {
    position: relative;
    width: auto;
    max-width: 90vw;
    height: auto;
    max-height: 90vh;
    z-index: 10;
    display: flex;
    justify-content: center;
}

.video-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    background: black;
    line-height: 0;
    /* Remove extra space */
}

/* Vertical Video Constraint */
.video-wrapper video {
    max-width: 100%;
    max-height: 85vh;
    /* Leave room for close button */
    display: block;
    object-fit: contain;
}

.modal-close {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: none;
    color: var(--anthracite);
    cursor: pointer;
    padding: 10px 18px 10px 14px;
    border-radius: 50px;
    /* Pill shape */
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s, box-shadow 0.2s;
    z-index: 100;
}

.modal-close:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.modal-close svg {
    width: 20px;
    height: 20px;
}

.comparison-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-top: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.comparison-item {
    display: flex;
    gap: 20px;
}

.before .comp-icon {
    filter: grayscale(1);
    opacity: 0.6;
}

.after .comp-icon {
    filter: drop-shadow(0 4px 6px rgba(107, 127, 107, 0.2));
}

.comp-text strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--anthracite);
}

.comp-text p {
    font-size: 0.95rem;
    color: var(--zinc);
    line-height: 1.5;
    margin: 0;
}

.comparison-divider {
    height: 1px;
    background: var(--border);
    margin: 24px 0;
}

/* --- iPhone Frame CSS --- */
.demo-phone {
    position: relative;
    display: flex;
    justify-content: center;
}

.iphone-frame {
    width: 300px;
    height: 600px;
    background: #1a1a1a;
    border-radius: 48px;
    padding: 12px;
    box-shadow:
        0 0 0 2px #3a3a3a,
        /* Inner bezel */
        0 0 0 6px #d1d1d6,
        /* Titanium Frame */
        0 20px 50px -10px rgba(0, 0, 0, 0.3);
    /* Drop shadow */
    position: relative;
    z-index: 10;
}

.dynamic-island {
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 28px;
    background: #000;
    border-radius: 20px;
    z-index: 20;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 38px;
    overflow: hidden;
    position: relative;
}

.phone-screen video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.phone-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 90%;
    background: radial-gradient(circle, rgba(185, 74, 47, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

/* ==========================================
   PAIN POINTS SECTION
   ========================================== */
.pain-points {
    padding: 120px 0 0;
    background: var(--cream);
    /* Integrated background */
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 80px auto;
}

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

@media (min-width: 1024px) {
    .pain-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2x2 Layout for 4 items */
        gap: 40px;
        max-width: 900px;
        /* Constrain width so cards don't stretch too much */
    }
}

/* Bento Card Style */
.pain-item {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: box-shadow 0.3s ease;
    /* Removed transform to fix GSAP conflict */
    height: 100%;
}

.pain-item:hover {
    transform: translateY(-8px);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Emotional Icon */
.pain-icon {
    width: auto;
    height: auto;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border-radius: 0;
    margin-bottom: 0;
    box-shadow: none;
    /* Subtle glow */
    filter: drop-shadow(0 0 12px rgba(61, 82, 69, 0.25));
}

.pain-icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--sage-dark);
    stroke-width: 1.5;
    transition: stroke 0.3s ease;
}

.pain-item:hover .pain-icon svg {
    stroke: var(--sage-dark);
    /* Keep consistent */
}

/* Typography */
.pain-text {
    font-size: 1.05rem;
    color: #86868B;
    line-height: 1.6;
    font-weight: 400;
}

.pain-text strong {
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
    font-size: 1.15rem;
    color: #1D1D1F;
}

/* ==========================================
   RESPIREZ MINIMAL TRANSITION (Option B)
   ========================================== */
.respirez-minimal {
    padding: 100px 24px 80px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
}

.respirez-minimal .respirez-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(3.5rem, 12vw, 9rem);
    color: var(--anthracite);
    font-weight: 400;
    letter-spacing: -0.03em;
    margin-bottom: 32px;
    /* Increased from 24px */
    opacity: 0.9;
    animation: premiumBreathe 5s ease-in-out infinite;
}

.respirez-minimal .respirez-sub {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    color: var(--zinc);
    max-width: 500px;
    text-align: center;
    line-height: 1.7;
    font-weight: 500;
    margin: 0;
}

/* Pulse Animation */
.respirez-pulse {
    position: relative;
    width: 80px;
    /* Increased from 60px */
    height: 80px;
    /* Increased from 60px */
    margin-top: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ... existing code ... */

@media (max-width: 767px) {
    /* ... existing mobile styles ... */

    .respirez-pulse {
        margin-top: 32px;
        /* Decreased from 48px */
        width: 70px;
        /* Increased from 50px */
        height: 70px;
        /* Increased from 50px */
    }

    /* Disable CSS animation on mobile to let GSAP handle it */
    .pulse-ring {
        animation: none !important;
        opacity: 1;
        /* Force visibility by default */
    }
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1.5px solid transparent;
    border-bottom: 1.5px solid var(--sienna);
    opacity: 0;
    animation: pulseDown 4s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}

.pulse-ring.delay-1 {
    animation-delay: 1.5s;
}

.pulse-ring.delay-2 {
    animation-delay: 3s;
}

@keyframes pulseDown {
    0% {
        transform: translateY(-10px) scale(0.8);
        opacity: 0;
    }

    30% {
        opacity: 0.8;
    }

    100% {
        transform: translateY(20px) scale(1.3);
        opacity: 0;
    }
}

@keyframes premiumBreathe {

    0%,
    100% {
        filter: blur(0px);
        opacity: 0.95;
        transform: scale(1);
    }

    50% {
        filter: blur(1.5px);
        opacity: 0.8;
        transform: scale(0.98);
    }
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .respirez-minimal {
        padding: 60px 20px 50px;
        min-height: 40vh;
    }

    .respirez-minimal .respirez-title {
        font-size: 3.8rem;
        /* Reduced from 4.5rem */
        margin-bottom: 16px;
        line-height: 1.05;
        letter-spacing: -2px;
    }

    .respirez-minimal .respirez-sub {
        font-size: 0.9rem;
        /* Smaller */
        max-width: 280px;
        /* Slightly tighter width */
    }

    .respirez-pulse {
        margin-top: 48px;
        width: 50px;
        height: 50px;
    }
}



@keyframes breathe {

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

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

.transition-sub {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--anthracite);
    line-height: 1.4;
    max-width: 600px;
    position: relative;
    z-index: 2;
    margin-bottom: 48px;
    margin-top: 0;
}

.transition-arrow {
    font-size: 3rem;
    color: var(--sienna);
    display: inline-block;
    animation: floatArrow 2s ease-in-out infinite;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

@keyframes floatArrow {

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

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

/* ==========================================
   FEATURES SECTION
   ========================================== */
.features {
    padding: 20px 0 120px;
    background: var(--cream);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--sienna);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--sage-dark);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--zinc);
    max-width: 600px;
    margin: 0 auto;
}

/* Device Icons Row */
.device-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin-bottom: 24px;
}

.device-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.device-icon:hover {
    transform: translateY(-4px);
    opacity: 1;
}

.device-icon svg {
    filter: drop-shadow(0 4px 12px rgba(196, 119, 92, 0.2));
}

/* Mobile device icons */
@media (max-width: 767px) {
    .device-icons {
        gap: 24px;
        margin-bottom: 20px;
    }

    .device-icon svg {
        width: 36px;
        height: 36px;
    }
}

.brand-title {
    color: var(--sienna) !important;
    margin-bottom: 0px !important;
    display: block;
    line-height: 1.2;
    font-size: clamp(2.5rem, 6vw, 5rem);
    /* Significantly increased */
    font-weight: 700;
}

.features .section-title {
    color: var(--anthracite);
    /* Reverted to dark for contrast */
}

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

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

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

.feature-card {
    /* Editorial Style: No card, just content */
    padding: 24px 0;
    /* Slightly more breathing room */
    transition: none;
    /* Removed base transform transition for GSAP */
}

.feature-card:hover {
    transform: translateY(-4px);
    transition: transform var(--transition-base);
}

.feature-icon {
    width: auto;
    height: auto;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.feature-icon svg {
    width: 52px;
    /* Slightly bigger icons */
    height: 52px;
    stroke-width: 1.5;
    stroke: url(#solar-gradient);
    /* Solar Gradient Applied */
    /* Fallback color if gradient fails: */
    color: var(--sienna);
    filter: drop-shadow(0 4px 10px rgba(196, 119, 92, 0.15));
    /* Soft Terracotta Glow */
}

/* Removed complex multicolor logic */

.feature-title {
    font-size: 1.35rem;
    /* +10% size */
    font-weight: 700;
    color: var(--anthracite);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.feature-desc {
    color: var(--zinc);
    line-height: 1.7;
}

/* ==========================================
   TARGET SEGMENT SECTION
   ========================================== */
.target-segment {
    padding: 100px 0;
    background: var(--white);
}

.target-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Main Layout Grid */
.target-split-layout {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Text Column (Left) */
.target-text-column {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.target-block.negative {
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.target-block.negative .target-title.muted {
    font-size: 1.5rem;
    color: var(--zinc);
    margin-bottom: 24px;
}

/* Image Column (Right) */
.target-image-column {
    position: relative;
    display: block;
    width: 100%;
}

.target-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    background: #FAF8F5;
}

.target-real-photo {
    width: 100%;
    height: auto;
    min-height: 400px;
    object-fit: cover;
    object-position: 70% center;
    /* Focus on iPad side of image */
    display: block;
    transition: transform 0.5s ease, opacity 0.6s ease;
}

/* Desktop Grid */
@media (min-width: 992px) {
    .target-split-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
        /* Center vertically, not stretch */
    }

    .target-block.negative {
        border-top: none;
        padding-top: 0;
    }

    .target-image-wrapper {
        width: 100%;
        height: auto;
        min-height: 450px;
        max-height: 600px;
    }

    .target-image-column {
        display: block;
    }

    .target-real-photo {
        width: 100%;
        height: 500px;
        object-fit: cover;
        object-position: 60% center;
        /* Focus on iPad side */
    }
}

.target-card {
    padding: 0;
}

.target-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

.target-for-you .target-title {
    color: var(--anthracite);
}

.target-not-for-you .target-title {
    color: var(--zinc);
}

.target-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.target-block.positive .target-icon {
    color: var(--anthracite);
}

.target-block.negative .target-icon {
    color: var(--terracotta);
}

.target-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

.target-for-you .target-title {
    color: var(--anthracite);
}

.target-not-for-you .target-title {
    color: var(--zinc);
    /* Muted title for negative section */
}

.target-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.target-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    font-size: 1.125rem;
    color: var(--anthracite);
    /* High contrast */
    line-height: 1.5;
}

.target-not-for-you .target-list li {
    color: var(--zinc);
    /* Muted text for negative section */
}

.target-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.target-for-you .target-icon {
    color: var(--sage-dark);
    /* Premium Green */
}

.target-not-for-you .target-icon {
    color: var(--sienna);
    opacity: 0.8;
}

.target-list li strong {
    font-weight: 700;
    color: var(--black);
}

.target-not-for-you .target-list li strong {
    color: var(--zinc);
    /* Keep everything muted in negative section */
}

/* ==========================================
   PROCESS SECTION
   ========================================== */
.process {
    padding: 100px 0;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.process-steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto 60px;
    position: relative;
}

@media (min-width: 768px) {
    .process-steps {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        gap: 0;
    }
}

/* Premium Process Steps */
.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    position: relative;
    padding: 20px;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 8rem;
    font-weight: 800;
    color: var(--sienna);
    opacity: 0.08;
    /* Subtle watermark */
    line-height: 1;
    z-index: 0;
    font-family: var(--font-heading);
    pointer-events: none;
}

.step-icon {
    position: relative;
    z-index: 1;
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    /* Offset for watermark */
}

.step-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.5;
    stroke: url(#solar-gradient);
    color: var(--sienna);
    filter: drop-shadow(0 4px 10px rgba(196, 119, 92, 0.2));
}

.step-title {
    position: relative;
    z-index: 1;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--anthracite);
    margin-bottom: 12px;
}

.step-desc {
    position: relative;
    z-index: 1;
    color: var(--zinc);
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

.step-connector {
    display: none;
    width: 80px;
    height: 1px;
    /* Thinner line */
    background: linear-gradient(90deg, transparent, rgba(196, 119, 92, 0.3), transparent);
    /* Fading gradient line */
    margin-top: 50px;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .step-connector {
        display: block;
    }
}

/* Process Split Layout */
.process-split-layout {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.process-steps-vertical {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
}

/* Vertical Step Item */
.step-item-vertical {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    position: relative;
}

.step-item-vertical .step-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    margin: 0;
    margin-top: 4px;
    /* Align with title */
}

.step-content {
    position: relative;
    padding-top: 8px;
    /* Align with icon center */
    flex: 1;
}

.step-watermark-num {
    position: absolute;
    top: -30px;
    left: -20px;
    font-size: 6rem;
    font-weight: 800;
    color: var(--sienna);
    opacity: 0.08;
    line-height: 1;
    z-index: -1;
    font-family: var(--font-heading);
    pointer-events: none;
}

.step-item-vertical .step-title {
    font-size: 1.25rem;
    margin-bottom: 8px;
    text-align: left;
}

.step-item-vertical .step-desc {
    text-align: left;
    margin: 0;
    max-width: 100%;
}

/* Signature */
.process-signature {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.signature-text {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--anthracite);
    margin-bottom: 8px;
}

.signature-author {
    font-weight: 600;
    color: var(--sienna);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
}

/* Image Column */
.process-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 500px;
    /* Taller on mobile too */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.process-portrait {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    /* Focus on top part/face */
    display: block;
}

@media (min-width: 992px) {
    .process-split-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: stretch;
        /* Stretch to fill height match */
    }

    .process-image-wrapper {
        height: 100%;
        /* Fill the column */
        min-height: 700px;
        /* Minimum tallness */
        max-height: 800px;
    }
}

/* ==========================================
   PRICING SECTION
   ========================================== */
.pricing {
    padding: 100px 0;
    background: var(--cream-dark);
}

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

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

.pricing-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    /* transition: all var(--transition-base); REMOVED for GSAP */
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.pricing-card.featured {
    border: 2px solid var(--sienna);
    transform: scale(1.02);
    z-index: 10;
}

.pricing-card.featured:hover {
    transform: scale(1.02) translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--sienna);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 6px 16px;
    border-radius: var(--radius-full);
}

.pricing-name {
    font-size: 1.5rem;
    color: var(--sage-dark);
    margin-bottom: 8px;
}

.pricing-desc {
    font-size: 0.9rem;
    color: var(--zinc);
    margin-bottom: 24px;
}

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

.pricing-amount {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--anthracite);
    line-height: 1;
}

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

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    color: var(--anthracite);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features .check {
    width: 20px;
    height: 20px;
    background: var(--sage);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.pricing-cta {
    margin-top: auto;
}

.pricing-cta .btn {
    width: 100%;
}

/* Hero Trust Line (Minimalist) */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.trust-item {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.02em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    /* Readability over image */
}

.trust-sep {
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.2rem;
    line-height: 0;
}

/* Responsive adjustment for trust line */
@media (max-width: 768px) {
    .hero-trust {
        justify-content: center;
        gap: 8px;
    }

    .trust-item {
        font-size: 0.8rem;
    }
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
    padding: 100px 0;
    background: var(--cream);
}

.cta-card {
    background: var(--cream-dark);
    border-radius: var(--radius-xl);
    padding: 60px 40px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: var(--shadow-md);
}

.cta-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--sage-dark);
    margin-bottom: 16px;
}

.cta-text {
    font-size: 1.125rem;
    color: var(--zinc);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    padding: 48px 0;
    background: var(--anthracite);
    color: rgba(255, 255, 255, 0.7);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

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

.footer-brand {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--white);
}

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

.footer-links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

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

.footer-copy {
    font-size: 0.875rem;
}

/* ==========================================
   ANIMATIONS (GSAP Enhanced)
   ========================================== */

/* Elements start visible - GSAP will animate from invisible */
.fade-up {
    opacity: 1;
    transform: translateY(0);
}

/* Fallback visibility for when JS doesn't load */
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease-out;
}

/* Stagger animation delays */
.stagger-1 {
    transition-delay: 0.1s;
}

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

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

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

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

.stagger-6 {
    transition-delay: 0.6s;
}

/* ==========================================
   STORYTELLING SECTION
   ========================================== */
.story-section {
    padding: 120px 0;
    background: var(--white);
}

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

.story-content {
    order: 2;
}

.story-subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--sienna);
    font-weight: 600;
    margin-bottom: 24px;
    display: block;
}

.story-title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    color: var(--anthracite);
    margin-bottom: 32px;
    line-height: 1.2;
}

.story-text p {
    margin-bottom: 24px;
    color: var(--zinc);
    font-size: 1.1rem;
    line-height: 1.8;
}

@media (min-width: 768px) {
    .story-text p {
        text-align: justify;
    }
}

/* Story Visuals Container */
.story-visuals {
    position: relative;
    order: 1;
}

.story-image-wrapper {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.story-photo {
    width: 100%;
    height: 100%;
    /* Ensure it fills the vertical space */
    object-fit: cover;
    object-position: center top;
    /* Focus on face */
    display: block;
    transition: transform 0.5s ease;
}

.story-section:hover .story-photo {
    transform: scale(1.02);
}

/* Floating Proof Image (Clean & Compact) */
.story-proof-image-wrapper {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 200px;
    /* Smaller footprint */
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background: var(--white);
    padding: 6px;
    /* White border effect */
    transform: rotate(-3deg);
    z-index: 5;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    /* Bouncy transition */
    cursor: pointer;
}

.story-section:hover .story-proof-image-wrapper {
    /* Slight initial lift when hovering section */
    transform: rotate(0deg) scale(1.05);
}

.story-proof-image-wrapper:hover {
    /* Strong zoom when hovering the card itself */
    transform: rotate(0deg) scale(1.45) translateY(-15px) !important;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    z-index: 30;
}

.proof-logo-badge {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 50%;
    padding: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.floating-proof-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

/* Annotation with Arrow */
.story-proof-annotation {
    position: absolute;
    bottom: -80px;
    /* Below the main visual logic */
    right: 160px;
    /* To the left of the proof image */
    width: 240px;
    z-index: 20;
    pointer-events: none;
}

.annotation-text {
    font-family: var(--font-body);
    /* Branding consistency */
    font-size: 0.95rem;
    color: var(--anthracite);
    line-height: 1.5;
    text-align: right;
    font-style: italic;
    font-weight: 500;
    margin-bottom: 5px;
    background: rgba(255, 255, 255, 0.95);
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.annotation-text strong {
    color: var(--sienna);
    font-weight: 700;
}

.annotation-arrow {
    position: absolute;
    top: 50%;
    right: -70px;
    transform: translateY(-50%) rotate(0deg);
    opacity: 1;
    z-index: 10;
}

/* Mobile Adjustments */
/* Mobile Adjustments */
@media (max-width: 960px) {
    .story-visuals {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 40px;
    }

    .story-image-wrapper {
        width: 100%;
        max-width: 500px;
        position: relative;
        margin-bottom: 0;
        /* No extra space needed, proof will flow */
    }

    .story-proof-image-wrapper {
        position: relative;
        /* In flow! */
        bottom: auto;
        right: auto;
        margin-top: -50px;
        /* Pull up to overlap main image */
        margin-right: -25px;
        /* Shift right slightly for dynamic look */
        align-self: center;
        transform: rotate(-3deg);
        width: 190px;
        /* Increased from 170px */
        z-index: 10;
        /* Above main image */
    }

    .story-proof-image-wrapper:hover,
    .story-proof-image-wrapper:active {
        transform: rotate(0deg) scale(1.1) translateY(-5px) !important;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    }

    .story-proof-annotation {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        max-width: 320px;
        margin-top: 20px;
        /* Clear separation from proof card */
        z-index: 5;
    }

    .annotation-text {
        text-align: center;
        width: 100%;
        font-size: 0.95rem;
        /* Slightly larger for readablity */
        background: var(--white);
    }

    .annotation-arrow {
        display: none;
    }

    .proof-logo-badge {
        width: 40px;
        height: 40px;
        padding: 6px;
        top: -20px;
    }
}

@media (min-width: 960px) {
    .story-split {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }

    .story-content {
        order: 1;
    }

    .story-image-wrapper {
        order: 2;
    }
}

/* ==========================================
   OFFER SECTION
   ========================================== */
.offer-card {
    background: var(--white);
    border-radius: 24px;
    padding: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.03);
    margin: 48px auto;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.offer-part {
    padding: 48px 32px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.offer-part.primary {
    background: #FFFAF8;
    /* Very subtle sienna tint */
}

.offer-label {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    color: var(--sienna);
    font-weight: 700;
    margin-bottom: 16px;
    display: block;
}

.offer-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--anthracite);
    line-height: 1;
    margin-bottom: 16px;
}

.offer-price small {
    font-size: 1rem;
    font-weight: 500;
    color: var(--zinc);
}

/* ==========================================
   FLOATING CTA
   ========================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    text-decoration: none;
}

.floating-whatsapp:hover {
    transform: scale(1.1) rotate(5deg);
}

.floating-whatsapp svg {
    width: 32px;
    height: 32px;
    fill: white;
}

@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 24px;
        right: 24px;
        width: 54px;
        height: 54px;
    }
}

.offer-text {
    font-size: 1.1rem;
    color: var(--zinc);
    font-weight: 500;
}

.offer-plus-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--sienna);
    font-weight: 300;
    padding: 10px 0;
    background: var(--white);
    position: relative;
    z-index: 10;
}

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

    .offer-part.primary {
        background: var(--white);
        /* Reset if needed or keep for visual distinction */
        border-right: 1px solid rgba(0, 0, 0, 0.05);
    }

    .offer-plus-divider {
        padding: 0 20px;
        font-size: 2.5rem;
    }
}

/* ==========================================
   NEW NARRATIVE CTA STYLES (SPLIT SCREEN)
   ========================================== */
.cta-section {
    padding: 0;
    /* Full bleed potential */
    background: var(--cream);
    overflow: hidden;
}

.cta-split-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 600px;
    background: var(--white);
    box-shadow: var(--shadow-xl);
    border-radius: 0;
    overflow: hidden;
    margin: 60px 0 120px;
    /* Spacing from previous section */
}

@media (max-width: 991px) {
    .cta-split-wrapper {
        margin-bottom: 60px;
        /* Reduced spacing before FAQ on mobile */
    }
}

@media (min-width: 992px) {
    .cta-split-wrapper {
        flex-direction: row;
        border-radius: 32px;
        margin: 120px auto;
        max-width: 1200px;
        /* Container width */
    }
}

/* Image Column (Left) */
.cta-split-image {
    flex: 1;
    position: relative;
    min-height: 400px;
}

/* Gradient Fade Effect */
.cta-split-image::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 25%;
    /* Fade over 25% of the image width */
    background: linear-gradient(to right, rgba(255, 255, 255, 0), var(--white));
    pointer-events: none;
    z-index: 2;
}

/* Mobile Gradient (Bottom up) */
@media (max-width: 991px) {
    .cta-split-image::after {
        width: 100%;
        height: 25%;
        top: auto;
        right: 0;
        bottom: 0;
        left: 0;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0), var(--white));
    }
}

.cta-split-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Content Column (Right) */
.cta-split-content {
    flex: 1;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--white);
    position: relative;
    z-index: 5;
    /* Above gradient */
}

@media (min-width: 992px) {
    .cta-split-content {
        padding: 80px 60px;
        max-width: 50%;
    }
}

/* Typography & Elements */
.cta-split-eyebrow {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--sienna);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    display: block;
}

.cta-split-title {
    font-family: var(--font-heading);
    /* Back to Montserrat Brand */
    font-size: clamp(2rem, 3vw, 2.5rem);
    color: var(--anthracite);
    line-height: 1.2;
    margin-bottom: 32px;
}

.cta-split-arg {
    font-size: 1.25rem;
    color: var(--zinc);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-split-highlight {
    color: var(--anthracite);
    font-weight: 600;
    display: block;
    margin-top: 16px;
    font-size: 1.1em;
}

.cta-split-action {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Default align */
}

.cta-split-action .btn {
    text-align: center;
    justify-content: center;
    /* Center text in flex button */
    width: 100%;
}

.cta-reassurance {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    /* Safe wrapping for small mobiles */
    gap: 20px;
    font-size: 0.85rem;
    color: var(--zinc);
    font-weight: 500;
}

@media (max-width: 480px) {
    .cta-split-content {
        padding: 40px 24px;
        /* More breathing room for content on small screens */
    }

    .cta-reassurance {
        gap: 12px;
        /* Tighter gap on mobile */
    }
}




.cta-content-top {
    margin-bottom: 32px;
}

.cta-intro {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--anthracite);
    margin-bottom: 16px;
    line-height: 1.3;
}

.cta-desc {
    font-size: 1.125rem;
    color: var(--zinc);
    line-height: 1.6;
}

.cta-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border), transparent);
    width: 60%;
    margin: 40px auto;
}

.cta-content-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--anthracite);
    margin-bottom: 40px;
}

.cta-action {
    margin-bottom: 32px;
}

.cta-spoiler {
    font-size: 0.95rem;
    color: var(--zinc);
    font-style: italic;
    line-height: 1.5;
}

.spoiler-label {
    color: var(--sienna);
    font-weight: 700;
    font-style: normal;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* Responsive tweaks for CTA */
@media (max-width: 640px) {
    .cta-narrative {
        padding: 40px 24px;
    }

    .cta-intro {
        font-size: 1.25rem;
    }

    .cta-text {
        font-size: 1rem;
    }
}

/* ==========================================
   UTILITIES
   ========================================== */
.text-center {
    text-align: center;
}

.text-white {
    color: var(--white);
}

.text-sienna {
    color: var(--sienna);
}

.bg-cream {
    background: var(--cream);
}

.mt-4 {
    margin-top: 16px;
}

.mt-8 {
    margin-top: 32px;
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.faq-container {
    background: white;
    padding: 2rem;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 24px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--anthracite);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: color 0.3s ease;
    font-family: inherit;
}

.faq-question:hover {
    color: var(--sienna);
}

.faq-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.5;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    opacity: 1;
    color: var(--sienna);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    padding: 0;
}

.faq-item.active .faq-answer {
    padding-bottom: 24px;
    /* max-height handled by JS for smooth animation */
}

.faq-answer p {
    font-size: 1rem;
    color: var(--zinc);
    line-height: 1.6;
    margin: 0;
}

.mb-4 {
    margin-bottom: 16px;
}

.mb-8 {
    margin-bottom: 32px;
}

/* ==========================================
   MOBILE RESPONSIVE OPTIMIZATION
   Ultra-smooth mobile experience with 
   optimized typography, touch targets & scroll
   ========================================== */

/* === GLOBAL MOBILE STYLES === */
@media (max-width: 767px) {

    /* Container */
    .container {
        padding: 0 16px;
    }

    /* Section Titles */
    .section-title {
        font-size: 1.75rem;
        line-height: 1.25;
        margin-bottom: 12px;
    }

    .section-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }

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

    .section-label {
        font-size: 0.75rem;
        margin-bottom: 12px;
    }
}

/* === HEADER MOBILE === */
@media (max-width: 767px) {
    .header {
        padding: 12px 0;
    }

    .header.scrolled {
        padding: 10px 0;
    }

    .logo {
        font-size: 1.1rem;
    }

    .mobile-menu {
        top: 56px;
        padding: 20px 16px;
        border-radius: 0 0 16px 16px;
        backdrop-filter: blur(10px);
        background: rgba(250, 248, 245, 0.98);
    }

    .mobile-menu a {
        font-size: 1rem;
        padding: 14px 0;
    }

    .mobile-toggle {
        padding: 10px;
        margin-right: -10px;
    }

    .mobile-toggle span {
        width: 22px;
        height: 2px;
    }
}

/* === HERO MOBILE === */
@media (max-width: 767px) {
    .hero {
        min-height: 100svh;
        /* Use svh for mobile address bar */
    }

    .hero-content {
        padding: 100px 16px 60px;
        max-width: 100%;
    }

    .hero-title {
        font-size: 1.875rem;
        line-height: 1.15;
        margin-bottom: 20px;
        letter-spacing: -0.02em;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 28px;
        max-width: 100%;
    }

    .hero-subtitle br {
        display: none;
        /* Remove linebreaks on mobile */
    }

    .hero-cta {
        width: 100%;
        gap: 12px;
    }

    .hero-cta .btn {
        width: 100%;
        padding: 16px 24px;
        font-size: 1rem;
        min-height: 52px;
        /* Touch-friendly */
    }

    .hero-cta .btn-lg {
        padding: 18px 28px;
        font-size: 1.0625rem;
    }

    .hero-note {
        font-size: 0.8rem;
        margin-top: 20px;
    }

    .hero-benefits {
        margin-top: 32px;
        gap: 10px;
    }

    .benefit-item {
        padding: 6px 12px;
    }

    .benefit-text {
        font-size: 0.8rem;
    }

    .hero-badge {
        padding: 8px 16px;
        font-size: 0.8rem;
        margin-bottom: 20px;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    .scroll-indicator svg {
        width: 24px;
        height: 24px;
    }
}

/* === VALUE STACK MOBILE === */
@media (max-width: 767px) {
    .value-stack {
        padding: 40px 0;
    }

    .value-grid {
        gap: 16px;
    }

    .value-item {
        padding: 12px;
        gap: 12px;
    }

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

    .value-title {
        font-size: 1rem;
    }

    .value-desc {
        font-size: 0.85rem;
    }
}

/* === PAIN POINTS MOBILE DESIGNS (Apple Style) === */
@media (max-width: 767px) {
    .pain-points {
        /* Match site theme */
        background-color: var(--cream);
        padding: 80px 0 0;
    }

    .pain-points .section-title {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: 48px;
        color: #1D1D1F;
        font-weight: 600;
        letter-spacing: -0.01em;
    }

    /* Bento Grid Layout */
    .pain-grid {
        display: grid;
        grid-template-columns: 1fr;
        /* Stack vertically on mobile */
        gap: 16px;
        margin: 0 auto;
        max-width: 100%;
    }

    /* The "Card" Look */
    .pain-item {
        background: #FFFFFF;
        border-radius: 20px;
        padding: 32px 24px;
        /* More vertical padding */
        display: flex;
        flex-direction: column;
        align-items: center;
        /* Center everything */
        text-align: center;
        gap: 20px;
        /* Ultra-subtle shadow */
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.8);
    }

    /* Floating Glowing Icon */
    .pain-icon {
        width: auto;
        height: auto;
        min-width: unset;
        border-radius: 0;
        background: none;
        /* No background container */
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 8px;
        /* Subtle glow */
        filter: drop-shadow(0 0 12px rgba(61, 82, 69, 0.3));
    }

    .pain-icon svg {
        width: 36px;
        height: 36px;
        stroke: var(--sage-dark);
        /* Deep Green */
        stroke-width: 1.5;
    }

    /* Typography Hierarchy */
    .pain-text {
        font-size: 1rem;
        line-height: 1.5;
        color: #86868B;
        /* Apple Secondary Text Gray */
    }

    .pain-text strong {
        font-weight: 600;
        display: block;
        margin-bottom: 6px;
        font-size: 1.1rem;
        color: #1D1D1F;
        /* Apple Primary Text Black */
    }

    /* === RESPIREZ SHOWCASE MOBILE === */
    .respirez-showcase {
        margin-top: 60px;
        margin-bottom: 20px;
    }

    .respirez-image-wrapper {
        border-radius: 16px;
        max-width: 100%;
        margin: 0 16px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    }

    .respirez-overlay {
        padding: 24px;
    }

    .respirez-title {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .respirez-sub {
        font-size: 0.95rem;
        max-width: 280px;
    }

    /* Terracotta arrow - inviting scroll */
    .transition-arrow {
        display: block;
        font-size: 1.5rem;
        color: var(--sienna);
        opacity: 0.7;
        animation: bounce 2s ease-in-out infinite;
    }

    @keyframes bounce {

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

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

/* === FEATURES MOBILE === */
@media (max-width: 767px) {
    .features {
        padding: 60px 0;
    }

    .features-grid {
        gap: 8px;
    }

    .feature-card {
        padding: 20px 0;
        text-align: center;
    }

    .feature-icon {
        justify-content: center;
        margin-bottom: 16px;
    }

    .feature-icon svg {
        width: 44px;
        height: 44px;
    }

    .feature-title {
        font-size: 1.15rem;
        margin-bottom: 8px;
    }

    .feature-desc {
        font-size: 0.9rem;
        line-height: 1.55;
    }
}

/* === TARGET SEGMENT MOBILE === */
@media (max-width: 767px) {
    .target-segment {
        padding: 60px 0;
    }

    .target-split-layout {
        gap: 40px;
        display: flex;
        flex-direction: column;
    }

    /* Image appears BEFORE text on mobile */
    .target-text-column {
        order: 2;
        gap: 40px;
    }

    .target-image-column {
        order: 1;
        display: block;
        width: 100%;
    }

    .target-title {
        font-size: 1.5rem;
        margin-bottom: 24px;
    }

    .target-block.negative .target-title.muted {
        font-size: 1.25rem;
    }

    .target-list {
        gap: 16px;
    }

    .target-list li {
        font-size: 1rem;
        gap: 14px;
    }

    .target-icon {
        width: 20px;
        height: 20px;
    }

    .target-image-wrapper {
        max-height: 350px;
        border-radius: 16px;
        width: 100% !important;
        display: block !important;
        overflow: hidden;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .target-real-photo {
        width: 100% !important;
        height: 280px !important;
        min-height: 250px;
        max-height: 350px;
        object-fit: cover !important;
        object-position: center;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .target-block.negative {
        padding-top: 32px;
    }
}

/* === DEMO SECTION MOBILE === */
@media (max-width: 767px) {
    .demo-section {
        padding: 80px 0;
        background-attachment: scroll;
        /* Disable parallax on mobile for performance */
    }

    .section-label-light {
        font-size: 0.8rem;
        padding: 6px 14px;
    }

    .play-button {
        width: 64px;
        height: 64px;
    }

    .play-button svg {
        width: 24px;
        height: 24px;
    }

    .play-label {
        font-size: 1rem;
    }

    /* Video Modal Mobile */
    .modal-content {
        max-width: 95vw;
        max-height: 85vh;
    }

    .modal-close {
        top: 15px;
        left: 15px;
        padding: 8px 14px 8px 10px;
        font-size: 0.85rem;
    }

    .modal-close svg {
        width: 18px;
        height: 18px;
    }

    .video-wrapper video {
        max-height: 80vh;
    }
}

/* === PROCESS SECTION MOBILE === */
@media (max-width: 767px) {
    .process {
        padding: 60px 0;
    }

    .process-steps-vertical {
        gap: 32px;
        margin-bottom: 32px;
    }

    .step-item-vertical {
        gap: 16px;
    }

    .step-item-vertical .step-icon {
        width: 48px;
        height: 48px;
    }

    .step-watermark-num {
        font-size: 4rem;
        top: -20px;
        left: -12px;
    }

    .step-item-vertical .step-title {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }

    .step-item-vertical .step-desc {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .step-content {
        padding-top: 4px;
    }
}

/* === STORY SECTION MOBILE === */
@media (max-width: 767px) {
    .story-section {
        padding: 60px 0;
    }

    .story-split {
        gap: 40px;
    }

    .story-subtitle {
        font-size: 0.8rem;
        margin-bottom: 16px;
    }

    .story-title {
        font-size: 1.5rem;
        margin-bottom: 24px;
    }

    .story-text p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 16px;
    }

    .story-image-wrapper {
        border-radius: 16px;
        /* max-height removed for mobile as well */
        overflow: hidden;
    }

    .story-photo {
        object-fit: cover;
        object-position: center 35%;
        /* Move focus down more */
    }

    .story-section .btn-outline {
        width: 100%;
        padding: 14px 24px;
        justify-content: center;
    }
}

/* === TESTIMONIALS MOBILE === */
@media (max-width: 767px) {
    .testimonials {
        padding: 60px 0;
    }

    .testimonials-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        margin-top: 40px;
        padding-bottom: 20px;
        /* Space for scrollbar if needed, or visual breathing room */
        -webkit-overflow-scrolling: touch;
        /* Smooth scroll iOS */
        scrollbar-width: none;
        /* Hide scrollbar Firefox */
    }

    .testimonials-grid::-webkit-scrollbar {
        display: none;
        /* Hide scrollbar Chrome/Safari */
    }

    .testimonial-card {
        padding: 24px;
        border-radius: 20px;
        min-width: 85vw;
        /* Show part of next card */
        scroll-snap-align: center;
        margin-right: 0;
    }

    .stars {
        margin-bottom: 16px;
    }

    .star-icon {
        width: 16px;
        height: 16px;
    }

    .testimonial-text {
        font-size: 0.95rem;
        margin-bottom: 24px;
        line-height: 1.6;
    }

    .testimonial-author {
        gap: 12px;
        padding-top: 16px;
    }

    .author-avatar {
        width: 42px;
        height: 42px;
        font-size: 1.5rem;
        /* Larger emoji */
    }

    .author-name {
        font-size: 0.95rem;
    }

    .author-role {
        font-size: 0.8rem;
    }
}

/* === OFFER SECTION MOBILE === */
@media (max-width: 767px) {
    .offer-section {
        padding: 60px 0 !important;
    }

    .offer-section .section-title {
        font-size: 1.5rem;
    }

    .offer-section .section-title br {
        display: none;
    }

    .pricing-narrative {
        font-size: 1rem !important;
        margin: 40px auto !important;
    }

    .pricing-narrative p {
        font-size: 1rem;
    }

    .offer-card {
        margin: 32px auto;
        border-radius: 20px;
    }

    .offer-part {
        padding: 32px 24px;
    }

    .offer-label {
        font-size: 0.75rem;
        margin-bottom: 12px;
    }

    .offer-price {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .offer-price small {
        font-size: 0.9rem;
    }

    .offer-text {
        font-size: 1rem;
    }

    .offer-plus-divider {
        font-size: 1.5rem;
        padding: 8px 0;
    }

    .offer-section .btn-lg {
        width: 100%;
        padding: 16px 24px;
        font-size: 1rem;
    }

    .offer-section p[style*="margin-top: 24px"] {
        font-size: 0.9rem !important;
        padding: 0 8px;
    }
}

/* === FAQ SECTION MOBILE === */
@media (max-width: 767px) {
    .faq-section {
        padding: 40px 0 60px !important;
    }

    .faq-section .container {
        max-width: 100%;
    }

    .faq-container {
        padding: 1.25rem;
        border-radius: 16px;
    }

    .faq-question {
        padding: 18px 0;
        font-size: 1rem;
        gap: 12px;
    }

    .faq-question span {
        flex: 1;
        padding-right: 8px;
    }

    .faq-icon {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
    }

    .faq-answer p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .faq-item.active .faq-answer {
        padding-bottom: 18px;
    }
}

/* === FOOTER MOBILE === */
@media (max-width: 767px) {
    .footer {
        padding: 40px 0;
    }

    .footer-inner {
        gap: 20px;
    }

    .footer-brand {
        font-size: 1.1rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .footer-links a {
        font-size: 0.85rem;
    }

    .footer-copy {
        font-size: 0.8rem;
    }
}

/* === FLOATING WHATSAPP MOBILE === */
@media (max-width: 767px) {
    .floating-whatsapp {
        bottom: 20px;
        right: 16px;
        width: 52px;
        height: 52px;
    }

    .floating-whatsapp svg {
        width: 28px;
        height: 28px;
    }
}

/* === BUTTONS MOBILE === */
@media (max-width: 767px) {
    .btn {
        padding: 14px 24px;
        font-size: 0.95rem;
        min-height: 48px;
        /* Touch-friendly minimum */
    }

    .btn-lg {
        padding: 16px 28px;
        font-size: 1rem;
    }

    .btn-outline {
        padding: 12px 24px;
    }
}

/* === ANIMATIONS MOBILE - Performance Optimization === */
@media (max-width: 767px) {

    /* Reduce animation intensity on mobile */
    .feature-card:hover,
    .pain-item:hover,
    .testimonial-card:hover {
        transform: translateY(-2px);
        /* Reduced from -4px/-5px/-8px */
    }

    /* Force hardware acceleration for smooth 60fps */
    .fade-up,
    .feature-card,
    .pricing-card,
    .pain-item,
    .section-header {
        will-change: transform, opacity;
    }

    /* Disable parallax for iOS compatibility */
    .demo-section {
        background-attachment: scroll !important;
    }

    /* Smoother bounce animation */
    @keyframes bounce {

        0%,
        20%,
        50%,
        80%,
        100% {
            transform: translateX(-50%) translateY(0);
        }

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

        60% {
            transform: translateX(-50%) translateY(-4px);
        }
    }

    /* Reduce breathe animation */
    @keyframes breathe {

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

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

/* === SMALL MOBILE (< 375px) === */
@media (max-width: 374px) {
    .container {
        padding: 0 12px;
    }

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

    .hero-subtitle {
        font-size: 0.95rem;
    }

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

    .pain-points .section-title {
        font-size: 1.375rem;
    }

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

    .offer-price {
        font-size: 1.75rem;
    }

    .faq-question {
        font-size: 0.95rem;
    }
}

/* ==================== MOBILE STICKY CTA ==================== */
.mobile-sticky-cta {
    display: none;
    /* Hidden on desktop */
}

@media (max-width: 767px) {
    .mobile-sticky-cta {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 999;
        padding: 12px 16px;
        padding-bottom: calc(12px + env(safe-area-inset-bottom));
        /* iPhone safe area */
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
        transform: translateY(100%);
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
        display: block;
        will-change: transform, opacity;
    }

    .mobile-sticky-cta.visible {
        transform: translateY(0);
        opacity: 1;
    }

    .mobile-sticky-cta.hidden {
        transform: translateY(100%);
        opacity: 0;
    }

    /* Modal Content */
    .modal-content {
        position: relative;
        width: 100%;
        max-width: 900px;
        background: black;
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
        transform: scale(0.9);
        opacity: 0;
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* FIX: Show modal content when modal is active */
    .video-modal.active .modal-content {
        opacity: 1;
        transform: scale(1);
    }

    .modal-content video {
        width: 100%;
        height: auto;
        max-height: 80vh;
        display: block;
    }

    .mobile-sticky-cta-btn {
        display: block;
        width: 100%;
        padding: 16px 24px;
        background: var(--sienna);
        color: white;
        font-family: 'Inter', sans-serif;
        font-size: 1rem;
        font-weight: 600;
        text-align: center;
        text-decoration: none;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(184, 92, 56, 0.3);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .mobile-sticky-cta-btn:active {
        transform: scale(0.98);
        box-shadow: 0 2px 8px rgba(184, 92, 56, 0.2);
    }
}

/* === MOBILE VIDEO MODAL - CLEAN FIX === */
@media (max-width: 767px) {

    /* Only fix sizing, don't touch display/visibility */
    .modal-content {
        width: 95vw;
        max-width: 95vw;
    }

    .video-wrapper {
        width: 100%;
    }

    .video-wrapper video {
        width: 100%;
        height: auto;
        max-height: 80vh;
    }

    .modal-close {
        top: 15px;
        left: 15px;
    }
}

/* ==================== DESKTOP DEMO QR ==================== */
.desktop-demo-qr {
    display: none;
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 50;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    text-align: center;
    animation: fadeUp 1s ease 0.5s backwards;
    transform-origin: bottom right;
    transition: transform 0.3s ease;
}

.desktop-demo-qr:hover {
    transform: scale(1.05);
}

@media (min-width: 1024px) {
    .desktop-demo-qr {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
}

.qr-code-img {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    display: block;
}

.qr-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--anthracite);
    margin-top: 8px;
    display: block;
}

.qr-sub {
    font-size: 0.75rem;
    color: var(--zinc);
    display: block;
}

/* === MOBILE ONLY CTA (HERO) === */
.mobile-only-cta {
    display: flex;
}

@media (min-width: 1024px) {
    .mobile-only-cta {
        display: none !important;
    }
}

/* === LEGAL PAGE === */
.legal-content {
    padding: 140px 24px 80px;
    max-width: 800px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-family: var(--font-heading);
    color: var(--anthracite);
    margin-bottom: 16px;
    font-size: 1.5rem;
    font-weight: 700;
}

.legal-section p,
.legal-section ul {
    color: var(--anthracite);
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-section a {
    color: var(--sienna);
    text-decoration: underline;
    font-weight: 500;
}

.legal-section a:hover {
    color: var(--sienna-hover);
}