/* Font declarations */
@font-face {
    font-family: 'Avenir Next LT Pro';
    src: url('fonts/AvenirNextLTPro-UltLt.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Avenir Next LT Pro';
    src: url('fonts/AvenirNextLTPro-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Plutur';
    src: url('fonts/Plutur.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Nord-Light';
    src: url('fonts/Nord-Light.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Nord-Thin';
    src: url('fonts/Nord-Thin.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #000; /* fallback */
    background: linear-gradient(225deg, 
        #8B4513 10%, 
        #2F1B14 40%, 
        #1A0A0A 60%,  
        #6B2C6B 100%);
    background-attachment: fixed;
    background-size: cover;
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
    overscroll-behavior: none; /* prevent pull-to-refresh and bounce */
}

body.splash-active {
    overflow: hidden;
    height: 100vh;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 2rem 1.5rem 2rem;
    transition: all 0.3s ease;
    min-height: 80px;
}

/* Logo positioned at extreme left */
.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: absolute;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.logo {
    width: 40px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.75;
}

.logo-text {
    font-family: 'Nord-Thin', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.5px;
}

/* Navigation bar centered */
.navigation {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50px;
    padding: 0.5rem 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    width: auto;
    min-width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.5rem;
}

.nav-link {
    font-family: 'Avenir Next LT Pro', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

/* Active section link */
.nav-link.active {
    color: #fff;
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 2px;
    background: linear-gradient(135deg, #d58b2a 0%, #e7a23c 100%);
    border-radius: 2px;
}

/* Mobile Hamburger Menu */
.hamburger-menu {
    display: none;
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1001;
}

.hamburger-menu:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%) scale(1.05);
}

.hamburger-line {
    display: block;
    width: 20px;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
    margin: 4px 0;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation */
.mobile-navigation {
    position: absolute;
    top: 100%;
    right: 1rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1rem 0;
    min-width: 200px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.mobile-navigation.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-link {
    display: block;
    font-family: 'Avenir Next LT Pro', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    margin: 0.25rem 0.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(20px);
    position: relative;
    overflow: hidden;
}

.mobile-navigation.active .mobile-nav-link {
    animation: mobileNavSlideIn 0.4s ease-out forwards;
}

.mobile-navigation.active .mobile-nav-link:nth-child(1) { animation-delay: 0.05s; }
.mobile-navigation.active .mobile-nav-link:nth-child(2) { animation-delay: 0.1s; }
.mobile-navigation.active .mobile-nav-link:nth-child(3) { animation-delay: 0.15s; }
.mobile-navigation.active .mobile-nav-link:nth-child(4) { animation-delay: 0.2s; }

.mobile-nav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(0);
}

.mobile-nav-link:active {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(0.98);
}

@keyframes mobileNavSlideIn {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hide header during splash screen */
body.splash-active .header {
    opacity: 0;
    pointer-events: none;
}

/* Splash Screen */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: #000000;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    opacity: 1;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.splash-screen.splash-exit {
    opacity: 0;
    pointer-events: none;
}

.splash-screen.splash-exit .splash-content {
    animation: splashContentOut 0.8s ease-in forwards;
}

.splash-screen.splash-exit .splash-title {
    animation: splashTitleOut 0.8s ease-in forwards;
}

.splash-screen.splash-exit .splash-subtitle {
    animation: splashSubtitleOut 0.8s ease-in forwards;
}

/* Background orbs */
.splash-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.splash-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.splash-orb-1 {
    top: 25%;
    left: 25%;
    width: 16rem;
    height: 16rem;
    background: rgba(213, 139, 42, 0.2);
    animation: splashOrb1 4s ease-in-out infinite;
}

.splash-orb-2 {
    bottom: 25%;
    right: 25%;
    width: 24rem;
    height: 24rem;
    background: rgba(213, 139, 42, 0.1);
    animation: splashOrb2 3s ease-in-out infinite 1s;
}

@keyframes splashOrb1 {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.6; }
}

@keyframes splashOrb2 {
    0%, 100% { transform: scale(1.2); opacity: 0.2; }
    50% { transform: scale(1); opacity: 0.4; }
}

/* Particles */
.splash-particles {
    position: absolute;
    inset: 0;
}

.splash-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #d58b2a;
    border-radius: 50%;
    animation: splashParticle 3s ease-out infinite;
}

@keyframes splashParticle {
    0% { transform: translateY(0); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(-100px); opacity: 0; }
}

/* Content */
.splash-content {
    position: relative;
    z-index: 10;
    text-align: center;
    animation: splashContentIn 0.9s ease-out forwards;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: auto;
}

@keyframes splashContentIn {
    0% { opacity: 0; transform: translateY(80px) scale(0.95); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

.splash-title {
    font-family: 'Nord-Thin', 'Avenir Next LT Pro', sans-serif;
    font-size: clamp(3rem, 12vw, 8rem);
    font-weight: normal;
    background: linear-gradient(225deg, 
        #8B4513 10%,
        #6B2C6B 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: -1rem;
    animation: splashTitleIn 1s ease-out 0.2s both, gradientMove 0.1s ease-in-out infinite;
}

.splash-accent {
    background: linear-gradient(135deg, #d58b2a 0%, #e7a23c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.splash-subtitle {
    font-family: 'Avenir Next LT Pro', sans-serif;
    font-size: clamp(1.25rem, 4vw, 1.4rem);
    color: #ffffff 0.5;
    font-weight: 100;
    opacity: 0.3;
    animation: splashSubtitleIn 0.8s ease-out 0.4s both;
    text-align: center;
    margin-left: 0;
    margin-top: 0;
    width: 100%;
    max-width: 100%;
}

@keyframes splashTitleIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes splashSubtitleIn {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 0.3; transform: translateY(0); }
}

/* Exit animations - reverse of entry */
@keyframes splashContentOut {
    0% { opacity: 1; transform: translateY(0) scale(1); }
    100% { opacity: 0; transform: translateY(80px) scale(0.95); }
}

@keyframes splashTitleOut {
    0% { opacity: 1; }
    100% { opacity: 0; }
}

@keyframes splashSubtitleOut {
    0% { opacity: 0.3; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(30px); }
}

/* Global Background Particles */
.bg-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.bg-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #d58b2a;
    border-radius: 50%;
    opacity: 0;
    animation: bgParticleFloat 4s ease-out infinite;
}

@keyframes bgParticleFloat {
    0% { 
        transform: translateY(0) scale(0.5); 
        opacity: 0; 
    }
    20% { 
        opacity: 0.8; 
    }
    80% {
        opacity: 0.4;
    }
    100% { 
        transform: translateY(-120px) scale(1); 
        opacity: 0; 
    }
}

/* Hero section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent; /* allow fixed body background to show */
    opacity: 0;
    transform: translateX(-150px); /* Start from left for left-to-right animation */
}

/* Hero slides in from left after splash exits */
body:not(.splash-active) .hero {
    animation: heroSlideIn 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

@keyframes heroSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-150px); /* Negative value = left of final position = moves RIGHT */
    }
    100% {
        opacity: 1;
        transform: translateX(0); /* Final position */
    }
}

/* Global fixed overlays so background effects stay static */
/* body::before {
    content: none;
}

body::after {
    content: none;
} */

/* Container */
.container {
    max-width: 1200px;
    width: 100%;
    padding: 0 2rem;
    position: relative;
    z-index: 1; /* content sits above fixed overlays */
    margin: 0 auto; /* center on desktop */
}

/* Content layout */
.content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 80vh;
}

/* Text content */
.text-content {
    opacity: 0;
    transform: translateY(80px); /* Positive = starts below, moves UP */
}

body:not(.splash-active) .text-content {
    animation: contentSlideUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
}

@keyframes contentSlideUp {
    0% {
        opacity: 0;
        transform: translateY(80px); /* Positive = starts below */
    }
    100% {
        opacity: 1;
        transform: translateY(0); /* Ends at final position (moved UP) */
    }
}

.main-heading {
    font-family: 'Avenir Next LT Pro', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 200;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(80px);
}

body:not(.splash-active) .main-heading {
    animation: contentSlideUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
}

.subtext {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.45);
    font-weight: 300;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(80px);
}

body:not(.splash-active) .subtext {
    animation: contentSlideUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 1.0s forwards;
}

/* CTA Button */
.cta-button {
    background: linear-gradient(to bottom, #dfac61 0%, #8a582d 100%);
    color: rgba(255, 255, 255, 0.9);
    border: none;
    padding: 0.75rem 1.75rem;
    font-size: 1rem;
    font-weight: 400;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Avenir Next LT Pro', sans-serif;
    letter-spacing: 0.5px;
    opacity: 0.8;
    transform: translateY(80px);
    position: relative;
    overflow: hidden;
}

body:not(.splash-active) .cta-button {
    animation: contentSlideUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 1.1s forwards;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(223, 172, 97, 0.3);
}

.cta-button:active {
    transform: translateY(0);
}

/* Image content */
.image-content {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(80px);
}

body:not(.splash-active) .image-content {
    animation: contentSlideUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 1.0s forwards;
}

.product-glow {
    position: relative;
    padding: 2rem;
}

.product-image {
    width: 350px;
    max-width: 1200px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(213, 139, 42, 0.3));
    animation: gentleGlow 3s ease-in-out infinite alternate;
}

@keyframes gentleGlow {
    0% {
        filter: drop-shadow(0 0 20px rgba(213, 139, 42, 0.2));
    }
    100% {
        filter: drop-shadow(0 0 40px rgba(213, 139, 42, 0.4));
    }
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    text-align: center;
    opacity: 0;
    transform: translate(-50%, 80px); /* Positive = starts below, moves UP */
    z-index: 3;
    white-space: nowrap;
}

body:not(.splash-active) .scroll-indicator {
    animation: scrollIndicatorSlideUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 1.2s forwards;
}

@keyframes scrollIndicatorSlideUp {
    0% {
        opacity: 0;
        transform: translate(-50%, 80px); /* Starts below */
    }
    100% {
        opacity: 1;
        transform: translate(-50%, 0); /* Ends at final position (moved UP) */
    }
}

.scroll-text {
    color: #bbb;
    font-size: 0.9rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.scroll-line {
    width: 2px;
    height: 20px;
    background: linear-gradient(to bottom, #d58b2a, transparent);
    margin: 0 auto;
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scaleY(1);
    }
    50% {
        opacity: 1;
        transform: scaleY(1.2);
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        padding: 2rem 0;
    }
    
    .content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        align-items: center;
        min-height: auto;
        padding: 1rem 0;
    }
    
    .image-content {
        order: 1;
        margin-bottom: 1.5rem;
        padding: 0;
    }
    
    .text-content {
        order: 2;
        padding: 0 1rem;
    }
    
    .container {
        padding: 0 1.5rem;
        max-width: 100%;
    }
    
    .main-heading {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        line-height: 1.3;
        margin-bottom: 1rem;
        padding: 0 0.5rem;
    }
    
    .subtext {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
        line-height: 1.5;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }
    
    .cta-button {
        padding: 0.75rem 2rem;
        font-size: 1rem;
        margin: 0 auto;
        display: block;
        width: fit-content;
    }
    
    .product-glow {
        padding: 1rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .product-image {
        width: min(280px, 70vw);
        max-width: 320px;
        height: auto;
    }
    
    .scroll-indicator {
        bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 1.5rem 0;
    }
    
    .content {
        gap: 1.5rem;
        padding: 0.5rem 0;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .main-heading {
        font-size: clamp(1.5rem, 7vw, 2rem);
        line-height: 1.4;
        margin-bottom: 0.75rem;
        padding: 0 0.25rem;
    }
    
    .subtext {
        font-size: clamp(0.85rem, 3.5vw, 1rem);
        line-height: 1.6;
        margin-bottom: 1.5rem;
        padding: 0 0.25rem;
    }
    
    .cta-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 280px;
    }
    
    .product-glow {
        padding: 0.5rem;
    }
    
    .product-image {
        width: min(240px, 65vw);
        max-width: 280px;
    }
    
    .scroll-indicator {
        bottom: 1.5rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
    overscroll-behavior: none; /* prevent pull-to-refresh and bounce */
}

/* Offset for fixed header when scrolling to sections */
section[id] {
    scroll-margin-top: 100px;
}

/* Smooth page loading */
body.splash-active .hero {
    opacity: 0;
    transform: translateY(100px);
}

/* Problem section */
.problem {
    background: transparent;
    padding: 10rem 0 8rem;
    position: relative;
}

.problem-heading {
    font-family: 'Avenir Next LT Pro', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 200;
    color: rgba(233, 233, 233, 0.8);
    text-align: center;
    line-height: 2.25;
    letter-spacing: 0.5px;
    font-size: clamp(2rem, 6vw, 1.5rem);
    opacity: 0; /* start hidden */
}

.problem-sub {
    margin-top: 1.25rem;
    text-align: center;
    font-size: clamp(1.25rem, 3.5vw, 2.25rem);
    font-weight: 400;
    background: linear-gradient(135deg, #d58b2a 0%, #e7a23c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: 0; /* start hidden */
}

/* Activate animations when element enters viewport via IntersectionObserver */
.problem-heading.animate-in {
    animation: fadeInUp 0.9s ease-out 0.2s both;
}

.problem-sub.animate-in {
    animation: fadeInUp 0.9s ease-out 0.9s both;
}

@media (max-width: 768px) {
    .problem { 
        padding: 4rem 0 3rem; 
    }
    
    .problem-heading {
        font-size: clamp(1.8rem, 6vw, 3rem);
        line-height: 2.2;
        padding: 0 1rem;
    }
    
    .problem-sub {
        font-size: clamp(1.1rem, 4vw, 1.8rem);
        margin-top: 1rem;
    }
}

/* Introducing section */
.intro {
    padding: 4rem 0 2rem; /* reduce top and bottom padding */
    margin-top: 1rem;      /* reduce margin from previous section */
    background: transparent;
    position: relative;
    overflow-x: clip; /* Clip horizontal overflow */
    overflow-y: visible; /* Allow vertical overflow */
}

/* Two-column layout for intro section */
.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    overflow: visible; /* Allow content to extend beyond grid */
    position: relative;
}

.intro-title {
    text-align: left;
    font-family: 'Avenir Next LT Pro', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 200;
    font-size: clamp(2.0rem, 7vw, 5rem);
    letter-spacing: 0.5px;
    color: rgba(240, 240, 240, 0.8);
    opacity: 0;
    margin-bottom: 1rem;
}

.intro-title.animate-in {
    animation: fadeInUp 0.9s ease-out 0.2s both;
}

.intro-subtitle {
    margin-top: 0;
    text-align: left;
    font-family: 'Avenir Next LT Pro', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 300;
    font-size: clamp(1.1rem, 2.6vw, 1.5rem);
    color: rgba(255, 255, 255, 0.45);
    opacity: 0;
    margin-bottom: 1.5rem;
}

.intro-subtitle.animate-in {
    animation: fadeInUp 0.9s ease-out 0.6s both;
}

.intro-copy {
    margin: 0;
    max-width: 100%;
    text-align: left;
    font-family: 'Avenir Next LT Pro', sans-serif;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 300;
    line-height: 1.7;
    font-size: clamp(1rem, 2.2vw, 1.25rem);
}
/* Intro visual image */
.intro-visual {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0;
    margin: 0;
    overflow: visible;
    min-height: 600px; /* Ensure container has proper height */
}

.intro-text {
    padding-left: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    z-index: 2;
}

/* Special styling for intro image - extreme left positioning */
.intro-image-extreme-left {
    position: relative;
    left: -145px;
    top: 0;
    transform: none;
    width: 100%;
    height: 800px; /* Much bigger height to match text area */
    max-width: 1000px;
    border-radius: 0;
    box-shadow: none;
    /*filter: contrast(1.08) brightness(1.12);*/
    object-fit: contain; /* Don't crop - show full image */
    object-position: center; /* Align to center */
    background-color: transparent;
    mix-blend-mode: normal;
    opacity: 0.95;
    display: block;
    margin: 0 auto;
    padding: 0;
    z-index: 1;
}

.intro-image-extreme-left.animate-in {
    animation: fadeInUp 1s ease-out 0.3s both;
}

@media (max-width: 768px) {
    .intro {
        padding: 4rem 0 6rem;
        margin-top: 2rem;
    }
    
    .intro-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .intro-visual {
        justify-content: center;
        min-height: 400px;
        padding: 0;
        margin: 0;
    }
    
    .intro-image-extreme-left {
        position: relative;
        left: 50%;
        top: auto;
        transform: translateX(-50%);
        width: auto;
        max-width: 100%;
        height: 400px; /* Appropriate height for mobile */
        object-fit: contain;
        object-position: center center;
    }
    
    .intro-text {
        padding-left: 0;
        text-align: center;
    }
    
    .intro-title {
        font-size: clamp(1.8rem, 6vw, 3.5rem);
        line-height: 1.3;
        text-align: center;
    }
    
    .intro-subtitle {
        font-size: clamp(1rem, 3vw, 1.4rem);
        line-height: 1.4;
        text-align: center;
    }
    
    .intro-copy {
        font-size: clamp(0.9rem, 2.5vw, 0.9rem);
        line-height: 1.6;
        padding: 0 0.5rem;
        text-align: center;
    }
}

.intro-image.animate-in {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.intro-copy.animate-in {
    animation: fadeInUp 0.9s ease-out 0.9s both;
}

/* How Fiber-X Works */
.how {
    padding: 8rem 0;
    position: relative;
}

.how-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center; /* vertically center right column with accordion stack */
}

.how-title {
    font-family: 'Avenir Next LT Pro', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 200;
    font-size: clamp(2rem, 5.5vw, 4rem);
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    opacity: 0;
}

.how-title.animate-in {
    animation: fadeInUp 0.9s ease-out 0.2s both;
}

.how-title span {
    background: linear-gradient(135deg, #d58b2a 0%, #e7a23c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.how-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: #d0d0d0;
    margin: 0.25rem 0 1rem;
    opacity: 0;
}

.how-badge.animate-in {
    animation: fadeInUp 0.9s ease-out 0.4s both;
}

.how-badge .dot {
    width: 12px;
    height: 12px;
    background: #e0a04a;
    border-radius: 50%;
}

.how-card {
    border: none;
    border-radius: 14px;
    padding: 1.25rem 1.25rem;
    background: rgba(0,0,0,0.25);
    backdrop-filter: blur(4px);
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.45);
    font-family: 'Avenir Next LT Pro', sans-serif;
    font-weight: 300;
    opacity: 0;
}

.how-card.animate-in {
    animation: fadeInUp 0.9s ease-out 0.6s both;
}

.accordion {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(0,0,0,0.18);
    margin-bottom: 1rem;
    opacity: 0;
}

.accordion.animate-in {
    animation: fadeInUp 0.9s ease-out both;
}

.accordion:nth-child(1) { animation-delay: 0.8s; }
.accordion:nth-child(2) { animation-delay: 1.0s; }
.accordion:nth-child(3) { animation-delay: 1.2s; }
.accordion:nth-child(4) { animation-delay: 1.4s; }

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 1rem 1.25rem;
    background: none;
    color: rgba(230, 230, 230, 0.7);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: none;
    cursor: pointer;
}

.accordion-header .icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    text-align: center;
    line-height: 20px;
    font-weight: 600;
    transition: transform 0.2s ease;
}

.accordion-panel {
    padding: 0 1.25rem;
    color: rgba(255, 255, 255, 0.45);
    font-family: 'Avenir Next LT Pro', sans-serif;
    font-weight: 300;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
}

.accordion.open .accordion-panel {
    padding-bottom: 1rem;
    max-height: 300px; /* enough for our copy */
}

.accordion.open .accordion-header .icon {
    transform: rotate(45deg); /* plus -> close */
}

.how-right .device-frame {
    background: rgba(255,255,255,0.06);
    border-radius: 24px;
    padding: 1rem;
    opacity: 0;
}

.device-frame.animate-in {
    animation: fadeInUp 1s ease-out 0.5s both;
}

.device-canvas {
    border-radius: 18px;
    background: radial-gradient(circle at 70% 30%, rgba(213,139,42,0.15), rgba(0,0,0,0.45));
    padding: 3rem 2rem;
    position: relative;
}

.device-dot {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #d58b2a;
    opacity: 0.7;
    margin: 2rem auto 1.25rem;
}

.device-label {
    text-align: center;
    color: #e6e6e6;
    
}

.device-title { font-weight: 600; }
.device-sub { font-size: 0.9rem; color: #bfbfbf; }

.accordion-image-container {
    margin-top: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 0;
    background: transparent; /* remove container background */
    border-radius: 0; /* remove rounded container */
    padding: 0; /* remove extra spacing */
}

.accordion-image-container.show {
    opacity: 1;
    transform: translateY(0);
}

.accordion-image {
    width: 100%;
    height: 800px;
    border-radius: 0; /* remove rounded edges */
    box-shadow: none; /* remove container-like shadow */
    transition: transform 0.3s ease;
    object-fit: contain;
    background-color: transparent;
    background-blend-mode: multiply;
    mix-blend-mode: lighten; /* aggressively remove black backgrounds */
    filter: contrast(1.08) brightness(1.12);
    opacity: 0.65; /* reduce opacity further */
    transform: translateX(50px); /* Shift 50px to the right */
    display: block;
    margin: 0 auto;
}

.accordion-image:hover {
    transform: translateX(50px) scale(1.02);
}

/* Special styling for hunger reduction image */
.accordion-image.hunger-image {
    /*  mix-blend-mode: normal; /* Use normal blend mode for the cocktail/drink image */
    opacity: 0.65; /* Higher opacity since it has transparent background */
    filter: contrast(1.1) brightness(1.15) saturate(1.1);
    transform: translateX(125px) scale(1.15); /* Move further right */
}

.accordion-image.hunger-image:hover {
    transform: translateX(130px) scale(1.15);
}

@media (max-width: 992px) {
    .how-grid { 
        grid-template-columns: 1fr; 
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .how {
        padding: 4rem 0;
    }
    
    .how-grid {
        gap: 1.5rem;
    }
    
    .how-title {
        font-size: clamp(1.8rem, 6vw, 3rem);
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .how-card {
        padding: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .accordion-header {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .accordion-panel {
        padding: 0 1rem;
    }
    
    .accordion.open .accordion-panel {
        padding-bottom: 0.75rem;
    }
    
    .accordion-image-container {
        margin-top: 1.5rem;
        min-height: 0;
        padding: 0; /* keep container invisible on mobile too */
    }
    
    .accordion-image {
        height: 300px;
    }
}

/* Timeline Section */
.timeline {
    padding: 8rem 0;
    position: relative;
}

.timeline-header {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0;
}

.timeline-header.animate-in {
    animation: fadeInUp 1s ease-out 0.2s both;
}

.timeline-title {
    font-family: 'Avenir Next LT Pro', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 200;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #f0f0f0;
    margin-bottom: 1rem;
}

.timeline-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.45);
    font-family: 'Avenir Next LT Pro', sans-serif;
    font-weight: 300;
    max-width: 42rem;
    margin: 0 auto;
}

.timeline-wrapper {
    max-width: 56rem;
    margin: 0 auto;
    position: relative;
}

.timeline-line {
    position: absolute;
    left: 2rem;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, #d58b2a, #6b6b6b, #d58b2a);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    opacity: 0;
}

.timeline-item.animate-in {
    animation: fadeInUp 1s ease-out both;
}

.timeline-item:nth-child(2) { animation-delay: 0.1s; }
.timeline-item:nth-child(3) { animation-delay: 0.2s; }
.timeline-item:nth-child(4) { animation-delay: 0.3s; }
.timeline-item:nth-child(5) { animation-delay: 0.4s; }

.timeline-dot {
    position: absolute;
    left: 1.5rem;
    top: 0.5rem;
    width: 1rem;
    height: 1rem;
    background: #d58b2a;
    border-radius: 50%;
    border: 4px solid #000;
    z-index: 2;
}

.timeline-content {
    margin-left: 4rem;
}

.timeline-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.timeline-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(213, 139, 42, 0.2);
}

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

.timeline-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #d58b2a;
}

.timeline-time {
    font-size: 0.875rem;
    font-weight: 600;
    color: #d58b2a;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.timeline-text {
    color: rgba(255, 255, 255, 0.45);
    font-family: 'Avenir Next LT Pro', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    font-size: 1rem;
}

.timeline-cta {
    margin-top: 4rem;
    opacity: 0;
}

.timeline-cta.animate-in {
    animation: fadeInUp 1s ease-out 0.8s both;
}

.timeline-cta-card {
    background: linear-gradient(to right, rgba(213, 139, 42, 0.1), transparent);
    border: 1px solid rgba(213, 139, 42, 0.2);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
}

.timeline-cta-title {
    font-family: 'Avenir Next LT Pro', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 200;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #f0f0f0;
    margin-bottom: 1rem;
}

.timeline-cta-text {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: rgba(255, 255, 255, 0.45);
    font-family: 'Avenir Next LT Pro', sans-serif;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.timeline-cta-button {
    background: linear-gradient(135deg, #d58b2a 0%, #e7a23c 100%);
    color: #000;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.timeline-cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(213, 139, 42, 0.4);
}

@media (max-width: 768px) {
    .timeline { 
        padding: 4rem 0; 
    }
    
    .timeline-header {
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }
    
    .timeline-title {
        font-size: clamp(1.8rem, 6vw, 2.8rem);
        line-height: 1.3;
    }
    
    .timeline-subtitle {
        font-size: clamp(0.9rem, 2.5vw, 1.1rem);
        line-height: 1.5;
    }
    
    .timeline-wrapper {
        padding: 0 1rem;
    }
    
    .timeline-line { 
        left: 1.25rem; 
    }
    
    .timeline-dot { 
        left: 0.75rem; 
    }
    
    .timeline-content { 
        margin-left: 3rem; 
    }
    
    .timeline-card {
        padding: 1.25rem;
    }
    
    .timeline-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .timeline-cta {
        margin-top: 2.5rem;
        padding: 0 1rem;
    }
    
    .timeline-cta-card {
        padding: 1.5rem;
    }
    
    .timeline-cta-title {
        font-size: clamp(1.3rem, 4vw, 1.6rem);
    }
    
    .timeline-cta-text {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
    }
    
    .timeline-cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .product-image {
        animation: none;
    }
    
    .scroll-line {
        animation: none;
    }
}

/* Paused state for performance */
.paused * {
    animation-play-state: paused !important;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .main-heading {
        color: #fff;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    }
    
    .subtext {
        color: #ddd;
    }
    
    .cta-button {
        border: 2px solid #fff;
    }
}

/* Focus states for accessibility */
.cta-button:focus {
    outline: 2px solid #e7a23c;
    outline-offset: 2px;
}

/* Challenge CTA Section */
.challenge-cta {
    padding: 8rem 0;
    background: linear-gradient(225deg, 
        #8B4513 10%, 
        #2F1B14 40%, 
        #1A0A0A 60%,  
        #6B2C6B 100%);
    background-attachment: fixed;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.challenge-header {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0;
}

.challenge-header.animate-in {
    animation: fadeInUp 1s ease-out 0.2s both;
}

.challenge-title {
    font-family: 'Avenir Next LT Pro', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 200;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.challenge-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.45);
    font-family: 'Avenir Next LT Pro', sans-serif;
    font-weight: 300;
    max-width: 42rem;
    margin: 0 auto;
    line-height: 1.6;
}

.plans-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 75rem;
    margin: 0 auto 4rem;
}

.plan-card {
    position: relative;
    background: transparent;
    border: 2px solid #333;
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
    display: flex;
    flex-direction: column;
    height: 100%;
    backdrop-filter: blur(10px);
}

.plan-card.animate-in {
    animation: fadeInUp 1s ease-out both;
}

.plan-card:nth-child(1) { animation-delay: 0.4s; }
.plan-card:nth-child(2) { animation-delay: 0.6s; }

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(213, 139, 42, 0.2);
}

.plan-card-30:hover {
    border-color: #666;
}

.plan-card-100 {
    border-color: #d58b2a;
}

.plan-card-100:hover {
    border-color: #e7a23c;
    box-shadow: 0 20px 40px rgba(213, 139, 42, 0.3);
}

.popular-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: #d58b2a;
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
}

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

.plan-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.plan-title {
    font-family: 'Avenir Next LT Pro', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 200;
    font-size: 1.75rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.plan-subtitle {
    color: #d58b2a;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    font-family: 'Avenir Next LT Pro', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.plan-duration {
    color: #999;
    font-size: 1rem;
    margin-bottom: 0;
}

.plan-description {
    color: rgba(255, 255, 255, 0.45);
    font-family: 'Avenir Next LT Pro', sans-serif;
    font-weight: 300;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1rem;
}

.plan-benefits {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    opacity: 0;
    transform: translateX(-20px);
}

.benefit-item.animate-in {
    animation: slideInLeft 0.5s ease-out both;
}

.benefit-item:nth-child(1) { animation-delay: 0.8s; }
.benefit-item:nth-child(2) { animation-delay: 0.9s; }
.benefit-item:nth-child(3) { animation-delay: 1.0s; }
.benefit-item:nth-child(4) { animation-delay: 1.1s; }
.benefit-item:nth-child(5) { animation-delay: 1.2s; }
.benefit-item:nth-child(6) { animation-delay: 1.3s; }

.benefit-icon {
    width: 1.25rem;
    height: 1.25rem;
    background: #d58b2a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: 600;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.benefit-item span {
    color: rgba(255, 255, 255, 0.45);
    font-family: 'Avenir Next LT Pro', sans-serif;
    font-weight: 300;
    font-size: 0.95rem;
}

.plan-cta {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: inherit;
    margin-top: auto;
}

.plan-cta-30 {
    background: transparent;
    color: #d58b2a;
    border: 2px solid #d58b2a;
}

.plan-cta-30:hover {
    background: #d58b2a;
    color: #000;
    transform: scale(1.05);
}

.plan-cta-100 {
    background: #d58b2a;
    color: #000;
}

.plan-cta-100:hover {
    background: #fff;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(213, 139, 42, 0.4);
}

.challenge-footer {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}

.challenge-footer.animate-in {
    animation: fadeInUp 1s ease-out 0.8s both;
}

.footer-card {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1.5rem;
    padding: 2rem;
    max-width: 50rem;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

.footer-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-icon {
    font-size: 1.5rem;
    color: #d58b2a;
}

.footer-title {
    font-family: 'Avenir Next LT Pro', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 200;
    font-size: 1.5rem;
    color: #fff;
    margin: 0;
}

.footer-text {
    color: rgba(255, 255, 255, 0.45);
    font-family: 'Avenir Next LT Pro', sans-serif;
    font-weight: 300;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-details {
    color: rgba(255, 255, 255, 0.45);
    font-family: 'Avenir Next LT Pro', sans-serif;
    font-weight: 300;
    font-size: 0.875rem;
    margin: 0;
}

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

.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.1;
}

.bg-orb-1 {
    top: 25%;
    left: 25%;
    width: 8rem;
    height: 8rem;
    background: #d58b2a;
    animation: pulseSlow 4s ease-in-out infinite;
}

.bg-orb-2 {
    bottom: 25%;
    right: 25%;
    width: 12rem;
    height: 12rem;
    background: #d58b2a;
    animation: pulseSlow 3s ease-in-out infinite 1s;
}

@keyframes pulseSlow {
    0%, 100% { 
        transform: scale(1); 
        opacity: 0.1; 
    }
    50% { 
        transform: scale(1.2); 
        opacity: 0.2; 
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Challenge CTA Responsive Design */
@media (max-width: 992px) {
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 40rem;
    }
    
    .plan-card {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .challenge-cta {
        padding: 4rem 0;
    }
    
    .challenge-header {
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }
    
    .challenge-title {
        font-size: clamp(1.8rem, 6vw, 2.8rem);
        line-height: 1.3;
    }
    
    .challenge-subtitle {
        font-size: clamp(0.9rem, 2.5vw, 1.2rem);
        line-height: 1.5;
    }
    
    .plans-grid {
        gap: 1.5rem;
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }
    
    .plan-card {
        padding: 1.5rem;
    }
    
    .plan-title {
        font-size: clamp(1.3rem, 4vw, 1.6rem);
    }
    
    .plan-subtitle {
        font-size: 0.9rem;
    }
    
    .plan-price {
        font-size: clamp(1.8rem, 5vw, 2.2rem);
    }
    
    .plan-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .benefit-item span {
        font-size: 0.85rem;
    }
    
    .plan-cta {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .challenge-footer {
        padding: 0 1rem;
    }
    
    .footer-card {
        padding: 1.5rem;
    }
    
    .footer-title {
        font-size: clamp(1.2rem, 4vw, 1.4rem);
    }
    
    .footer-text {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
        line-height: 1.5;
    }
    
    .footer-details {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .challenge-cta {
        padding: 3rem 0;
    }
    
    .challenge-title {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }
    
    .challenge-subtitle {
        font-size: clamp(0.85rem, 3vw, 1rem);
    }
    
    .plans-grid {
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .plan-card {
        padding: 1.25rem;
    }
    
    .plan-title {
        font-size: clamp(1.1rem, 4.5vw, 1.3rem);
    }
    
    .plan-subtitle {
        font-size: 0.85rem;
    }
    
    .plan-price {
        font-size: clamp(1.5rem, 6vw, 1.8rem);
    }
    
    .plan-description {
        font-size: 0.85rem;
    }
    
    .benefit-item span {
        font-size: 0.8rem;
    }
    
    .plan-cta {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .popular-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
    
    .footer-card {
        padding: 1.25rem;
    }
    
    .footer-title {
        font-size: clamp(1rem, 4vw, 1.2rem);
    }
    
    .footer-text {
        font-size: clamp(0.85rem, 2.5vw, 0.95rem);
    }
    
    .footer-details {
        font-size: 0.75rem;
    }
}

/* Footer Section */
.footer-section {
    background: transparent; /* transparent background */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 100%;
}

.footer-title {
    font-family: 'Avenir Next LT Pro', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 200;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Avenir Next LT Pro', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 400px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: rgba(213, 139, 42, 0.2);
    color: #d58b2a;
    transform: translateY(-2px);
}

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

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column-title {
    font-family: 'Avenir Next LT Pro', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    font-size: 1.125rem;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-family: 'Avenir Next LT Pro', sans-serif;
    font-weight: 300;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #d58b2a;
    transform: translateX(5px);
}

.footer-link-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

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

.footer-copyright {
    color: rgba(255, 255, 255, 0.4);
    font-family: 'Avenir Next LT Pro', sans-serif;
    font-weight: 300;
    font-size: 0.875rem;
    margin: 0;
}

.footer-badges {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.4);
    font-family: 'Avenir Next LT Pro', sans-serif;
    font-weight: 300;
    font-size: 0.875rem;
}

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

.footer-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.05;
}

.footer-orb-1 {
    top: 20%;
    left: 20%;
    width: 8rem;
    height: 8rem;
    background: #d58b2a;
    animation: pulseSlow 4s ease-in-out infinite;
}

.footer-orb-2 {
    bottom: 20%;
    right: 20%;
    width: 12rem;
    height: 12rem;
    background: #d58b2a;
    animation: pulseSlow 3s ease-in-out infinite 1s;
}

/* Footer Responsive Design */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding: 3rem 0 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .footer-brand {
        grid-column: 1;
    }
    
    .footer-title {
        font-size: 2rem;
    }
    
    .footer-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .social-links {
        gap: 0.75rem;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
    }
    
    .social-icon {
        width: 18px;
        height: 18px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-badges {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-section {
        padding: 2rem 0 1.5rem;
    }
    
    .footer-title {
        font-size: 1.75rem;
    }
    
    .footer-description {
        font-size: 0.85rem;
    }
    
    .footer-column-title {
        font-size: 1rem;
    }
    
    .footer-link {
        font-size: 0.85rem;
    }
    
    .footer-copyright,
    .footer-badges {
        font-size: 0.8rem;
    }
    
    .footer-badges {
        gap: 0.5rem;
    }
}

/* Additional mobile optimizations */
@media (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 1rem 1rem;
        min-height: 70px;
    }
    
    .logo-container {
        left: 1rem;
    }
    
    .logo {
        width: 32px;
    }
    
    .logo-text {
        font-size: 1.25rem;
    }
    
    /* Hide desktop navigation on mobile */
    .navigation {
        display: none;
    }
    
    /* Show hamburger menu on mobile */
    .hamburger-menu {
        display: block;
        right: 1rem;
    }
    
    /* Mobile navigation dropdown positioning */
    .mobile-navigation {
        right: 0.5rem;
        min-width: 180px;
    }
    
    .mobile-nav-link {
        font-size: 0.9rem;
        padding: 0.7rem 1.25rem;
    }
    
    .hero {
        min-height: 100vh;
        padding: 1rem 0;
    }
    
    .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 1rem 0.75rem 0.75rem 0.75rem;
        min-height: 60px;
    }
    
    .logo-container {
        left: 0.75rem;
    }
    
    .logo {
        width: 28px;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .hamburger-menu {
        right: 0.75rem;
        padding: 0.6rem;
    }
    
    .hamburger-line {
        width: 18px;
        height: 2px;
    }
    
    /* Mobile navigation for small screens */
    .mobile-navigation {
        right: 0.25rem;
        min-width: 160px;
    }
    
    .mobile-nav-link {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
    }
    
    .hero {
        padding: 0.5rem 0;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .product-glow {
        padding: 1rem;
    }
}

/* ========================================
   COMPREHENSIVE MOBILE ENHANCEMENTS
   Only affects mobile devices (max-width: 768px)
   Desktop view remains unchanged
   ======================================== */

@media (max-width: 768px) {
    /* GLOBAL MOBILE FIXES */
    * {
        -webkit-tap-highlight-color: transparent;
    }
    
    body {
        overflow-x: hidden;
        -webkit-text-size-adjust: 100%;
    }
    
    /* Ensure all sections don't overflow */
    section {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    /* Container improvements */
    .container {
        padding: 0 1.25rem;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    /* HEADER & NAVIGATION MOBILE FIXES */
    .header {
        padding: 1rem 1rem;
        position: fixed;
        width: 100%;
        backdrop-filter: blur(10px);
        z-index: 1000;
    }
    
    .logo-container {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        position: relative;
        left: 0;
    }
    
    .hamburger-menu {
        position: absolute;
        right: 1rem;
        z-index: 1001;
        padding: 0.75rem;
        cursor: pointer;
        touch-action: manipulation;
    }
    
    .mobile-navigation {
        top: 70px;
        right: 1rem;
        max-width: 200px;
        width: auto;
    }
    
    /* HERO SECTION MOBILE */
    .hero {
        min-height: 100vh;
        padding: 6rem 0 3rem;
        display: flex;
        align-items: center;
    }
    
    .content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 1rem 0;
    }
    
    .text-content {
        order: 2;
        padding: 0;
    }
    
    .image-content {
        order: 1;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .main-heading {
        font-size: clamp(2rem, 7vw, 3rem);
        line-height: 1.2;
        margin-bottom: 1.5rem;
        text-align: center;
        padding: 0;
        word-wrap: break-word;
    }
    
    .subtext {
        font-size: clamp(1rem, 3.5vw, 1.2rem);
        line-height: 1.6;
        margin-bottom: 2rem;
        text-align: center;
        padding: 0 0.5rem;
    }
    
    .cta-button {
        padding: 1rem 2.5rem;
        font-size: 1rem;
        margin: 0 auto;
        display: block;
        width: fit-content;
        max-width: 90%;
        text-align: center;
        touch-action: manipulation;
    }
    
    .product-image {
        width: min(300px, 80vw);
        height: auto;
        max-width: 100%;
    }
    
    /* PROBLEM SECTION MOBILE */
    .problem {
        padding: 4rem 0;
    }
    
    .problem-heading {
        font-size: clamp(1.5rem, 5vw, 2rem);
        line-height: 1.6;
        padding: 0 1rem;
        text-align: center;
    }
    
    .problem-sub {
        font-size: clamp(1.3rem, 4vw, 1.8rem);
        margin-top: 1.5rem;
        padding: 0 1rem;
        text-align: center;
    }
    
    /* INTRO SECTION MOBILE */
    .intro {
        padding: 3rem 0 2rem;
        margin-top: 1rem;
        overflow: hidden;
    }
    
    .intro-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .intro-visual {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        order: 1;
    }
    
    .intro-text {
        order: 2;
        text-align: center;
        padding: 0;
    }
    
    .intro-image-extreme-left {
        position: relative;
        left: 0 !important;
        top: auto;
        transform: none !important;
        width: 100%;
        max-width: 320px;
        height: auto;
        min-height: 300px;
        object-fit: contain;
        margin: 0 auto;
        display: block;
    }
    
    .intro-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
        line-height: 1.3;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .intro-subtitle {
        font-size: clamp(1.1rem, 3.5vw, 1.4rem);
        line-height: 1.4;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .intro-copy {
        font-size: clamp(0.95rem, 2.8vw, 1.1rem);
        line-height: 1.6;
        text-align: center;
        padding: 0;
    }
    
    /* HOW IT WORKS SECTION MOBILE */
    .how {
        padding: 3rem 0;
        overflow: hidden;
    }
    
    .how-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .how-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
        line-height: 1.3;
        margin-bottom: 2rem;
        text-align: center;
        padding: 0 1rem;
    }
    
    .how-subtitle {
        font-size: clamp(1rem, 3vw, 1.2rem);
        text-align: center;
        padding: 0 1rem;
    }
    
    .how-left,
    .how-right {
        width: 100%;
    }
    
    .how-card {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .accordion-header {
        padding: 1rem;
        font-size: 1rem;
        display: flex;
        align-items: center;
        gap: 0.75rem;
        cursor: pointer;
        touch-action: manipulation;
    }
    
    .accordion-header .icon {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
    }
    
    .accordion-panel {
        padding: 0 1rem;
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .accordion.open .accordion-panel {
        padding: 1rem;
    }
    
    .accordion-image-container {
        margin-top: 1.5rem;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        overflow: hidden;
    }
    
    .accordion-image {
        width: 100%;
        max-width: 300px;
        height: auto;
        min-height: 250px;
        object-fit: contain;
        transform: none !important;
        margin: 0 auto;
        display: block;
    }
    
    .accordion-image.hunger-image {
        transform: none !important;
        max-width: 280px;
    }
    
    /* TIMELINE SECTION MOBILE */
    .timeline {
        padding: 3rem 0;
        overflow: hidden;
    }
    
    .timeline-header {
        margin-bottom: 2rem;
        padding: 0 1rem;
        text-align: center;
    }
    
    .timeline-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .timeline-subtitle {
        font-size: clamp(1rem, 3vw, 1.2rem);
        line-height: 1.5;
    }
    
    .timeline-wrapper {
        padding: 0 1rem;
    }
    
    .timeline-item {
        margin-bottom: 2rem;
        padding-left: 0;
    }
    
    .timeline-content {
        margin-left: 2.5rem;
    }
    
    .timeline-card {
        padding: 1.25rem;
    }
    
    .timeline-time {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    
    .timeline-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .timeline-cta {
        margin-top: 2rem;
        padding: 0 1rem;
    }
    
    .timeline-cta-card {
        padding: 1.5rem;
        text-align: center;
    }
    
    .timeline-cta-title {
        font-size: clamp(1.4rem, 4.5vw, 1.8rem);
        margin-bottom: 1rem;
    }
    
    .timeline-cta-text {
        font-size: clamp(1rem, 3vw, 1.1rem);
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .timeline-cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: fit-content;
        margin: 0 auto;
        display: block;
        touch-action: manipulation;
    }
    
    /* CHALLENGE CTA SECTION MOBILE */
    .challenge-cta {
        padding: 3rem 0;
        overflow: hidden;
    }
    
    .challenge-header {
        margin-bottom: 2rem;
        padding: 0 1rem;
        text-align: center;
    }
    
    .challenge-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .challenge-subtitle {
        font-size: clamp(1rem, 3vw, 1.2rem);
        line-height: 1.5;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
        margin-bottom: 2rem;
    }
    
    .plan-card {
        padding: 1.5rem;
        width: 100%;
        max-width: 100%;
    }
    
    .plan-title {
        font-size: clamp(1.4rem, 4.5vw, 1.8rem);
        margin-bottom: 0.5rem;
    }
    
    .plan-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .plan-price {
        font-size: clamp(2rem, 6vw, 2.5rem);
        margin-bottom: 1rem;
    }
    
    .plan-description {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .benefits-list {
        margin-bottom: 1.5rem;
    }
    
    .benefit-item {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 0.75rem;
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .benefit-icon {
        margin-top: 0.2rem;
        flex-shrink: 0;
    }
    
    .plan-cta {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 100%;
        touch-action: manipulation;
    }
    
    .challenge-footer {
        padding: 0 1rem;
    }
    
    .footer-card {
        padding: 1.5rem;
        text-align: center;
    }
    
    /* FOOTER SECTION MOBILE */
    .footer-section {
        padding: 3rem 0 2rem;
        overflow: hidden;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-title {
        font-size: clamp(1.8rem, 5vw, 2.2rem);
        margin-bottom: 1rem;
    }
    
    .footer-description {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .social-links {
        justify-content: center;
        gap: 1rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        touch-action: manipulation;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-column-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .footer-link {
        font-size: 0.9rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        touch-action: manipulation;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem 1rem 1rem;
    }
    
    .footer-copyright {
        font-size: 0.85rem;
    }
    
    .footer-badges {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
        font-size: 0.85rem;
    }
    
    /* SCROLL INDICATOR MOBILE */
    .scroll-indicator {
        bottom: 2rem;
    }
    
    /* BG PARTICLES MOBILE - Reduce for performance */
    .bg-particle {
        width: 3px;
        height: 3px;
    }
}

/* EXTRA SMALL MOBILE DEVICES (max-width: 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .main-heading {
        font-size: clamp(1.6rem, 8vw, 2.2rem);
    }
    
    .subtext {
        font-size: clamp(0.9rem, 4vw, 1.1rem);
    }
    
    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
        width: 90%;
        max-width: 280px;
    }
    
    .intro-image-extreme-left {
        max-width: 280px;
        min-height: 250px;
    }
    
    .accordion-image {
        max-width: 250px;
        min-height: 200px;
    }
    
    .plan-card {
        padding: 1.25rem;
    }
    
    .plan-cta {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* LANDSCAPE MODE FIXES FOR MOBILE */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 4rem 0 2rem;
    }
    
    .main-heading {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 1rem;
    }
    
    .subtext {
        font-size: clamp(0.9rem, 2.5vw, 1.1rem);
        margin-bottom: 1.5rem;
    }
    
    .product-image {
        width: min(200px, 40vw);
    }
    
    .intro-image-extreme-left {
        max-width: 250px;
        min-height: 200px;
    }
}

/* PREVENT ZOOM ON FORM INPUTS (iOS) */
@media (max-width: 768px) {
    input,
    select,
    textarea {
        font-size: 16px !important;
    }
}

