/* ====== VARIABLES ====== */
:root {
    --primary:#7c9885;
    --primary-light:#8a9b8e;
    --accent:#7c9885;
    --accent-soft:#a8bdb0;
    --text-primary:#1a1a1a;
    --text-secondary:#5a5a5a;
    --text-muted:#8a8a8a;
    --bg-primary:#ffffff;
    --bg-secondary:#fafaf9;
    --bg-accent:#f0f4f1;
    --border:#e5e5e5;
    --shadow-sm:0 2px 8px rgba(0,0,0,0.06);
    --shadow-md:0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg:0 8px 32px rgba(0,0,0,0.12);
    --radius:12px;
    --transition:all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ====== RESET ====== */
*,*:before,*:after{box-sizing:border-box;margin:0;padding:0}
html{overflow-x:hidden;width:100%}
body{font-family:'Inter',sans-serif;background:var(--bg-primary);color:var(--text-primary);line-height:1.6;font-weight:400;-webkit-font-smoothing:antialiased;overflow-x:hidden;width:100%;position:relative;min-width:320px}
a{color:inherit;text-decoration:none;transition:var(--transition)}
img{max-width:100%;display:block;height:auto}
.container{width:90%;max-width:1280px;margin:0 auto;padding:0 1rem}

/* ====== TYPOGRAPHY ====== */
.section-label{
    font-size:0.875rem;
    font-weight:600;
    color:var(--accent);
    text-transform:uppercase;
    letter-spacing:0.1em;
    display:block;
    margin-bottom:1rem;
}

.section-title{
    font-size:clamp(2rem, 4vw, 3rem);
    font-weight:300;
    line-height:1.2;
    letter-spacing:-0.02em;
    margin-bottom:1.5rem;
    color:var(--text-primary);
}

.section-lead{
    font-size:1.25rem;
    line-height:1.7;
    color:var(--text-secondary);
    max-width:800px;
    margin-bottom:3rem;
}

/* ===== HERO ===== */
.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    padding:150px 0 80px 0;
    background:var(--bg-primary);
    position:relative;
    width:100%;
    overflow-x:hidden;
}

.hero-inner{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
    width:100%;
    max-width:100%;
}

.hero-headline{
    max-width:100%;
    width:100%;
}

.hero-title{
    font-size:clamp(2rem, 5vw, 4rem);
    font-weight:300;
    line-height:1.1;
    letter-spacing:-0.02em;
    margin-bottom:1.5rem;
    color:var(--text-primary);
    word-wrap:break-word;
    overflow-wrap:break-word;
    max-width:100%;
}

.hero-highlight{
    font-weight:600;
    color:var(--primary);
    position:relative;
}

.hero-highlight::after{
    content:'';
    position:absolute;
    bottom:-4px;
    left:0;
    right:0;
    height:3px;
    background:var(--accent);
    opacity:0.3;
}

.hero-subtitle{
    font-size:1.25rem;
    line-height:1.7;
    color:var(--text-secondary);
    margin-bottom:2.5rem;
    font-weight:400;
    white-space:nowrap;
}

.hero-features{
    list-style:none;
    margin-bottom:2rem;
    padding:0;
}

.hero-features li{
    font-size:1.1rem;
    color:var(--text-secondary);
    margin-bottom:0.5rem;
    position:relative;
    padding-left:1rem;
}

.hero-features li:before{
    content:'';
    width:4px;
    height:4px;
    background:var(--primary);
    border-radius:50%;
    position:absolute;
    left:0;
    top:0.7rem;
}

.hero-actions{
    display:flex;
    gap:1rem;
    flex-wrap:wrap;
}

.btn-primary, .btn-secondary{
    padding:16px 32px;
    border-radius:var(--radius);
    font-size:1rem;
    font-weight:500;
    transition:var(--transition);
    cursor:pointer;
    border:none;
    display:inline-flex;
    align-items:center;
    gap:0.5rem;
}

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

.btn-primary:hover{
    background:var(--primary-light);
    transform:translateY(-2px);
    box-shadow:var(--shadow-lg);
}

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

.btn-secondary:hover{
    background:var(--bg-accent);
    border-color:var(--accent);
}

.hero-visual{
    position:relative;
}

.devices-showcase{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:2rem;
    padding:2rem;
}

.hero-phone{
    width:220px;
    height:auto;
    border-radius:20px;
    box-shadow:var(--shadow-lg);
    transform:perspective(1000px) rotateY(-10deg);
    transition:var(--transition);
    cursor:pointer;
}

.hero-phone:hover{
    transform:perspective(1000px) rotateY(-10deg) translateY(-10px);
    box-shadow:0 25px 60px rgba(0,0,0,0.15);
}

.hero-watch{
    width:160px;
    height:auto;
    filter:drop-shadow(0 20px 40px rgba(0,0,0,0.1));
    transform:perspective(1000px) rotateY(10deg);
    transition:var(--transition);
    cursor:pointer;
}

.hero-watch:hover{
    transform:perspective(1000px) rotateY(10deg) translateY(-8px);
    filter:drop-shadow(0 30px 60px rgba(0,0,0,0.2));
}

/* ===== HERO PERSONALIZATION ===== */
.hero-personalization{
    margin-top:6rem;
    display:flex;
    flex-direction:column;
    gap:1.5rem;
    max-width:1100px;
    margin-left:auto;
    margin-right:auto;
    padding:0 2rem;
}

.personalization-step-hero{
    display:grid;
    grid-template-columns:auto 1fr auto;
    align-items:center;
    gap:3rem;
}

.personalization-step-hero:nth-child(even){
    grid-template-columns:auto auto 1fr;
}

.personalization-step-hero:nth-child(even) .step-content-hero{
    order:3;
}

.personalization-step-hero:nth-child(even) .step-visual-hero{
    order:1;
}

.personalization-step-hero:nth-child(even) .step-number{
    order:2;
}

.personalization-step-hero .step-number{
    font-size:3rem;
    font-weight:700;
    color:var(--primary);
    width:80px;
    text-align:center;
    background:none;
    border-radius:0;
    height:auto;
    line-height:1;
    display:block;
    margin-bottom:0;
}

.step-content-hero{
    max-width:400px;
}


.step-content-hero h3{
    font-size:1.5rem;
    font-weight:600;
    color:var(--text-primary);
    margin-bottom:1rem;
    line-height:1.3;
}

.step-content-hero p{
    font-size:1.25rem;
    line-height:1.6;
    color:var(--text-primary);
    margin-bottom:1.5rem;
    font-weight:500;
}

.step-content-hero .step-tag{
    background:var(--bg-secondary);
    padding:0.75rem 1.25rem;
    border-radius:8px;
    font-size:0.875rem;
    font-weight:500;
    color:var(--text-primary);
    border:1px solid var(--border);
    display:inline-block;
}

.step-visual-hero{
    width:320px;
    height:400px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:2rem;
}

.step-visual-content{
    width:80%;
    height:80%;
    border-radius:8px;
    position:relative;
}

.step-visual-content.profile{
    background:linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.step-visual-content.profile::before{
    content:"";
    width:60px;
    height:60px;
    background:var(--primary);
    border-radius:50%;
    position:absolute;
    top:30%;
    left:50%;
    transform:translateX(-50%);
}

.step-visual-content.profile::after{
    content:"";
    width:100px;
    height:60px;
    background:var(--primary);
    border-radius:30px;
    position:absolute;
    bottom:30%;
    left:50%;
    transform:translateX(-50%);
}

.step-visual-content.biometrics{
    background:linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
}

.step-visual-content.biometrics::before{
    content:"";
    width:80%;
    height:40%;
    background:repeating-linear-gradient(
        45deg,
        var(--primary),
        var(--primary) 2px,
        transparent 2px,
        transparent 10px
    );
    position:absolute;
    top:30%;
    left:10%;
}

.step-visual-content.meditation{
    background:linear-gradient(135deg, #e8f5e8 0%, #c8e6c9 100%);
}

.step-visual-content.meditation::before{
    content:"";
    width:40px;
    height:40px;
    background:var(--primary);
    border-radius:50%;
    position:absolute;
    top:40%;
    left:50%;
    transform:translateX(-50%);
}

.step-visual-content.meditation::after{
    content:"";
    width:60px;
    height:30px;
    background:var(--primary);
    border-radius:15px;
    position:absolute;
    bottom:35%;
    left:50%;
    transform:translateX(-50%);
}

.step-visual-content.growth{
    background:linear-gradient(135deg, #fff3e0 0%, #ffcc02 100%);
}

.step-visual-content.growth::before{
    content:"";
    width:70%;
    height:3px;
    background:var(--primary);
    position:absolute;
    bottom:40%;
    left:15%;
    transform:rotate(15deg);
}

.step-visual-hero svg {
    width: 100%;
    height: 100%;
    max-width: 120px;
    max-height: 120px;
}

.personalization-step-hero:nth-child(1) .step-visual-hero img {
    max-width: 350px;
    max-height: 350px;
    mix-blend-mode: multiply;
}

.personalization-step-hero:nth-child(2) .step-visual-hero {
    width: 300px !important;
    height: 300px !important;
}

.personalization-step-hero:nth-child(2) .step-visual-hero img {
    width: 250px !important;
    height: 250px !important;
    max-width: none !important;
    max-height: none !important;
    mix-blend-mode: multiply;
}

.personalization-step-hero:nth-child(3) .step-visual-hero img {
    max-width: 360px;
    max-height: 360px;
    mix-blend-mode: multiply;
}

.personalization-step-hero:nth-child(4) .step-visual-hero svg {
    max-width: 120px;
    max-height: 120px;
}

.step-visual-hero img{
    max-width:100%;
    max-height:100%;
    border-radius:calc(var(--radius) - 2px);
    object-fit:cover;
}


.step-visual-hero img{
    position:relative;
    z-index:1;
}

@media (max-width: 768px){
    .hero-personalization{
        margin-top:4rem;
        gap:3rem;
    }
    
    .personalization-step-hero{
        grid-template-columns:1fr;
        text-align:center;
        gap:2rem;
    }
    
    .personalization-step-hero:nth-child(even){
        grid-template-columns:1fr;
    }
    
    .personalization-step-hero:nth-child(even) .step-content-hero{
        order:2;
    }
    
    .personalization-step-hero:nth-child(even) .step-visual-hero{
        order:3;
    }
    
    .personalization-step-hero:nth-child(even) .step-number{
        order:1;
    }
    
    .step-visual-hero{
        width:300px;
        height:380px;
        margin:0 auto;
    }
    
    .hero-personalization{
        padding:0 1rem;
    }
    
    .step-content-hero{
        max-width:none;
    }
}

.hero-stats{
    position:absolute;
    bottom:20px;
    right:20px;
    display:flex;
    gap:1rem;
}

.stat-card{
    background:white;
    padding:1rem 1.5rem;
    border-radius:var(--radius);
    box-shadow:var(--shadow-md);
    display:flex;
    flex-direction:column;
    align-items:center;
}

.stat-value{
    font-size:1.5rem;
    font-weight:600;
    color:var(--primary);
    line-height:1;
}

.stat-label{
    font-size:0.75rem;
    color:var(--text-muted);
    text-transform:uppercase;
    letter-spacing:0.05em;
    margin-top:0.25rem;
}

/* ===== TOP BANNER ===== */
.top-banner{
    background:var(--accent);
    color:white;
    padding:0.75rem 0;
    text-align:center;
    font-size:0.875rem;
    font-weight:500;
    width:100%;
    overflow:hidden;
}

/* ===== PERSONALIZATION SECTION ===== */
.personalization{
    padding:100px 0;
    background:var(--bg-accent);
}

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

.personalization-steps{
    display:flex;
    flex-direction:column;
    gap:4rem;
    max-width:1000px;
    margin:0 auto;
}

.personalization-step{
    display:grid;
    grid-template-columns:auto 1fr auto;
    align-items:center;
    gap:3rem;
}

.personalization-step:nth-child(even){
    grid-template-columns:auto auto 1fr;
}

.personalization-step:nth-child(even) .step-content{
    order:3;
}

.personalization-step:nth-child(even) .step-visual{
    order:1;
}

.personalization-step:nth-child(even) .step-number{
    order:2;
}

.personalization-step .step-number{
    font-size:3rem;
    font-weight:700;
    color:var(--primary);
    width:80px;
    text-align:center;
}

.personalization-step .step-content{
    max-width:400px;
}

.personalization-step .step-content h3{
    font-size:1.5rem;
    font-weight:600;
    color:var(--text-primary);
    margin-bottom:1rem;
    line-height:1.3;
}

.personalization-step .step-content p{
    font-size:1.125rem;
    line-height:1.7;
    color:var(--text-secondary);
    margin-bottom:1.5rem;
}

.personalization-step .step-tag{
    background:var(--bg-secondary);
    padding:0.75rem 1.25rem;
    border-radius:8px;
    font-size:0.875rem;
    font-weight:500;
    color:var(--text-primary);
    border:1px solid var(--border);
}

.personalization-step .step-visual{
    width:300px;
    height:400px;
    background:var(--bg-secondary);
    border-radius:var(--radius);
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:var(--shadow-md);
}

.personalization-step .step-visual img{
    max-width:100%;
    max-height:100%;
    border-radius:var(--radius);
}

@media (max-width: 768px){
    .personalization-step{
        grid-template-columns:1fr;
        text-align:center;
        gap:2rem;
    }
    
    .personalization-step:nth-child(even){
        grid-template-columns:1fr;
    }
    
    .personalization-step:nth-child(even) .step-content{
        order:2;
    }
    
    .personalization-step:nth-child(even) .step-visual{
        order:3;
    }
    
    .personalization-step:nth-child(even) .step-number{
        order:1;
    }
    
    .personalization-step .step-visual{
        width:280px;
        height:350px;
        margin:0 auto;
    }
}

/* ===== THE EXPERIENCE SECTION ===== */
.experience{
    padding:6rem 0 10rem 0;
    background:var(--bg-primary);
    text-align:center;
}

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

.experience-features{
    display:flex;
    justify-content:center;
    align-items:flex-start;
    gap:3rem;
    max-width:1200px;
    margin:0 auto;
    position:relative;
}

.experience-features::before{
    content:'';
    position:absolute;
    left:50%;
    top:0;
    bottom:0;
    width:1px;
    background:var(--border);
    transform:translateX(-50%);
}

.feature-group{
    flex:1;
    max-width:400px;
    display:flex;
    flex-direction:column;
    text-align:center;
}

.live-features{

}

.future-features{

}

.group-label{
    text-align:center;
    margin-bottom:1.5rem;
    height:60px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.status-badge{
    display:inline-block;
    padding:0.5rem 1rem;
    border-radius:6px;
    font-size:0.75rem;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:0.05em;
}

.status-badge.live{
    background:var(--primary);
    color:white;
}

.status-badge.coming-soon{
    background:#6b7280;
    color:white;
}

.feature-item{
    padding:2rem 0;
    text-align:center;
    transition:all 0.3s ease;
    display:flex;
    flex-direction:column;
}

.feature-item:hover{
    transform:translateY(-2px);
}


.feature-item h3{
    font-size:1.25rem;
    font-weight:500;
    margin-bottom:0.75rem;
    color:var(--text-primary);
    letter-spacing:-0.02em;
    line-height:1.3;
}

.feature-item p{
    font-size:1.125rem;
    color:var(--text-primary);
    line-height:1.3;
    margin:0;
    font-weight:300;
    opacity:0.85;
}

.experience-note{
    text-align:center;
    margin-top:3rem;
    color:var(--text-muted);
    font-size:0.875rem;
}

/* ===== PROBLEM SECTION ===== */
.problem{
    padding:100px 0;
    background:var(--bg-primary);
}

.problem-content{
    text-align:center;
}

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

.problem-header .section-lead{
    margin-left:auto;
    margin-right:auto;
}

/* ====== LIVE BETTER LIFESTYLE SECTION ====== */
.live-better{
    padding:8rem 0;
    background:var(--bg-primary);
    text-align:center;
    position:relative;
}

.live-better-hero{
    margin-bottom:3rem;
}

.lifestyle-title{
    font-size:clamp(3rem, 8vw, 6rem);
    font-weight:200;
    letter-spacing:-0.04em;
    line-height:0.9;
    color:var(--text-primary);
    margin-bottom:2rem;
}

.lifestyle-lead{
    font-size:1.5rem;
    line-height:1.6;
    color:var(--text-secondary);
    max-width:800px;
    margin:0 auto;
    font-weight:300;
}

.lifestyle-outcomes{
    margin-top:4rem;
    padding:0 2rem;
}

.journey-path{
    max-width:1000px;
    margin:0 auto;
    position:relative;
    display:flex;
    flex-direction:column;
    align-items:center;
    padding:2rem 0;
}

.journey-step{
    display:flex;
    align-items:center;
    margin:1.5rem 0;
    position:relative;
    width:100%;
    max-width:600px;
    padding:0 2rem;
    transition:all 0.3s ease;
    cursor:pointer;
}

.journey-step:hover{
    transform:translateY(-2px);
}

.journey-step:nth-child(even){
    flex-direction:row-reverse;
}

.step-marker{
    width:16px;
    height:16px;
    background:var(--primary);
    border-radius:50%;
    flex-shrink:0;
    position:relative;
    z-index:2;
    box-shadow:0 0 0 4px var(--bg-primary), 0 0 0 6px rgba(124, 152, 133, 0.2);
}

.journey-step:nth-child(odd) .step-marker{
    margin-right:2rem;
}

.journey-step:nth-child(even) .step-marker{
    margin-left:2rem;
}

.step-content{
    flex:1;
}

.journey-step:nth-child(odd) .step-content{
    text-align:left;
}

.journey-step:nth-child(even) .step-content{
    text-align:right;
}

.journey-step:nth-child(even) .step-content h4{
    text-align:right !important;
    margin-left:auto !important;
    margin-right:0 !important;
    display:block !important;
}

.journey-step:nth-child(even) .step-content p{
    text-align:right !important;
    margin-left:auto !important;
    margin-right:0 !important;
    display:block !important;
    text-indent:0 !important;
}

/* Central connecting line */
.journey-path::before{
    content:'';
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    top:0;
    bottom:0;
    width:3px;
    background:linear-gradient(to bottom, 
        transparent 0%, 
        rgba(124, 152, 133, 0.3) 10%, 
        rgba(124, 152, 133, 0.3) 90%, 
        transparent 100%);
    z-index:1;
}

.step-content h4{
    font-size:1.125rem;
    font-weight:500;
    color:var(--text-primary);
    margin:0 0 0.25rem 0;
    padding:0;
    letter-spacing:-0.02em;
    line-height:1.3;
    width:100%;
}

.step-content p{
    font-size:1rem;
    color:var(--text-secondary);
    line-height:1.4;
    margin:0;
    padding:0;
    font-weight:300;
    width:100%;
}

.journey-step:nth-child(odd) .step-content h4,
.journey-step:nth-child(odd) .step-content p{
    text-align:left;
}

/* ====== PROBLEM & SOLUTION COMPARISON ====== */
.problem-solution{
    padding:3rem 0;
    background:var(--bg-primary);
    text-align:center;
}

.comparison-layout{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:6rem;
    max-width:1200px;
    margin:0 auto;
}

.comparison-side{
    flex:1;
    max-width:400px;
    text-align:center;
}

.comparison-content{
    text-align:center;
}

.comparison-content .section-label{
    text-align:center;
    margin-bottom:1.5rem;
    margin-right:3rem;
}

.comparison-visual{
    margin-bottom:2rem;
}

.comparison-visual img{
    width:140px;
    height:auto;
    margin:0 auto;
}

.comparison-content h3{
    font-size:1.375rem;
    font-weight:400;
    margin-bottom:1rem;
    color:var(--text-primary);
    letter-spacing:-0.02em;
}

.comparison-points{
    list-style-type:disc;
    padding-left:1.5rem;
    margin:0;
    text-align:left;
}

.comparison-points li{
    font-size:1.25rem;
    line-height:1.4;
    color:var(--text-primary);
    margin-bottom:0.75rem;
    font-weight:300;
}

.comparison-points li:last-child{
    margin-bottom:0;
}

.vs-divider{
    font-size:1.5rem;
    color:var(--accent);
    font-weight:300;
    flex-shrink:0;
}

/* ====== EXAMPLE IN ACTION SECTION ====== */
.example-action{
    padding:6rem 0;
    background:var(--bg-primary);
    text-align:center;
}

.example-header, .section-header{
    text-align:center;
    margin-bottom:4rem;
}

.example-header h2, .section-header h2{
    font-size:clamp(1.75rem, 3vw, 2.5rem);
    font-weight:300;
    color:var(--text-primary);
    margin-bottom:1rem;
    letter-spacing:-0.02em;
}

.example-header p, .section-header p{
    color:var(--text-secondary);
    font-size:1.125rem;
    line-height:1.7;
    max-width:600px;
    margin:0 auto;
}

.example-showcase{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:4rem;
    max-width:1200px;
    margin:0 auto;
}

.example-visual img{
    width:100%;
    max-width:400px;
    height:auto;
    border-radius:var(--radius);
    box-shadow:var(--shadow-lg);
    transition:transform 0.1s ease-out;
}

.example-visual{
    position:relative;
}

.example-visual:hover img{
    transform:scale(1.02);
}

.problem-visual{
    background:var(--bg-secondary);
    padding:1.5rem;
    border-radius:8px;
    margin-top:1.5rem;
    flex:1;
    display:flex;
    align-items:center;
    min-height:200px;
}

/* Timeline Visual */
.timeline-comparison{
    display:flex;
    flex-direction:column;
    gap:1.5rem;
    width:100%;
}

.timeline-side{
    display:flex;
    flex-direction:column;
    gap:0.5rem;
}

.timeline-label{
    font-size:0.8rem;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:0.05em;
    color:var(--text-secondary);
    text-align:center;
}

.timeline-side.hetki .timeline-label{
    color:#6b7280;
}

.timeline-mini{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.time-point{
    text-align:center;
    flex:1;
}

.time-point .time{
    display:block;
    font-size:1rem;
    font-weight:600;
    color:var(--text-primary);
    margin-bottom:0.25rem;
}

.time-point .status{
    font-size:0.75rem;
    color:var(--text-secondary);
    margin-bottom:0.25rem;
}


.time-point.early .time{
    color:var(--accent);
}

.time-point.late .time{
    color:#dc2626;
}

.hetki-timeline{
    justify-content:space-between;
}

.time-point.hetki-step .time{
    color:var(--accent);
}

.time-point.hetki-step .status{
    color:var(--text-secondary);
}

.time-arrow{
    width:40px;
    height:2px;
    background:linear-gradient(90deg, var(--accent) 0%, #dc2626 100%);
    position:relative;
    margin:0 1rem;
}

.time-arrow::after{
    content:'';
    position:absolute;
    right:-6px;
    top:-3px;
    width:0;
    height:0;
    border-left:8px solid #dc2626;
    border-top:4px solid transparent;
    border-bottom:4px solid transparent;
}

.time-arrow.hetki-arrow{
    background:#6b7280;
}

.time-arrow.hetki-arrow::after{
    border-left-color:#6b7280;
}

/* Generic vs Personal Visual */
.generic-vs-personal{
    display:flex;
    align-items:center;
    gap:1rem;
    text-align:center;
    width:100%;
}

.generic-side, .personal-side{
    flex:1;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:1rem;
}

.comparison-label{
    font-size:0.8rem;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:0.05em;
    color:var(--text-secondary);
    text-align:center;
    margin-bottom:0.5rem;
}

.comparison-label.hetki{
    color:#6b7280;
}

.arrows-down{
    display:flex;
    justify-content:center;
    align-items:center;
    margin:0.5rem 0;
}

.arrow{
    font-size:1.4rem;
    color:var(--accent);
    font-weight:bold;
}

.content-block{
    background:white;
    padding:1.25rem 1.5rem;
    border-radius:8px;
    border:2px solid #fee2e2;
    text-align:center;
    min-width:140px;
    box-shadow:var(--shadow-sm);
}

.content-block.top{
    background:var(--bg-accent);
    border-color:var(--accent);
    opacity:0.9;
}

.content-block.personal{
    border-color:var(--accent);
    background:var(--bg-accent);
}

.content-block .text{
    font-size:0.9rem;
    color:var(--text-primary);
    font-weight:600;
}

.content-block .icon{
    font-size:1.5rem;
    display:block;
    margin-bottom:0.5rem;
    opacity:0.6;
}

.content-block .text{
    font-size:0.875rem;
    color:var(--text-secondary);
    font-weight:500;
}

.vs-divider{
    background:var(--accent);
    color:white;
    width:30px;
    height:30px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:0.75rem;
    font-weight:600;
    flex-shrink:0;
}

.user-need{
    background:var(--bg-accent);
    padding:0.75rem;
    border-radius:6px;
    font-size:0.875rem;
    color:var(--text-primary);
}

/* ===== SOLUTION SECTION ===== */
.solution{
    padding:100px 0;
    background:var(--bg-accent);
}

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

.solution-header .section-lead{
    margin-left:auto;
    margin-right:auto;
}

.solution-showcase{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:4rem;
    align-items:center;
}

.solution-benefits{
    display:flex;
    flex-direction:column;
    gap:2rem;
}

.benefit-card{
    padding:2rem;
    background:var(--bg-secondary);
    border-radius:var(--radius);
    border:1px solid var(--border);
}

.benefit-number{
    width:2rem;
    height:2rem;
    background:var(--primary);
    color:white;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:0.875rem;
    font-weight:600;
    margin-bottom:1rem;
}

.benefit-card h3{
    font-size:1.125rem;
    font-weight:600;
    margin-bottom:0.5rem;
    color:var(--text-primary);
}

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

.timeline{
    position:relative;
    padding-left:2rem;
}

.timeline::before{
    content:'';
    position:absolute;
    left:0;
    top:0;
    bottom:0;
    width:2px;
    background:var(--border);
}

.timeline-item{
    position:relative;
    margin-bottom:2rem;
    padding-left:2rem;
    transition:all 0.3s ease;
    cursor:pointer;
}

.timeline-item:hover{
    transform:translateY(-2px);
}

.timeline-item::before{
    content:'';
    position:absolute;
    left:-2.5rem;
    top:0.5rem;
    width:12px;
    height:12px;
    border-radius:50%;
    background:white;
    border:2px solid var(--border);
}

.timeline-item.active::before{
    background:var(--accent);
    border-color:var(--accent);
    box-shadow:0 0 0 4px rgba(124,152,133,0.2);
}

.timeline-time{
    font-size:0.875rem;
    font-weight:600;
    color:var(--accent);
    margin-bottom:0.5rem;
}

.timeline-content h4{
    font-size:1.125rem;
    font-weight:600;
    margin-bottom:0.25rem;
    color:var(--text-primary);
}

.timeline-content p{
    color:var(--text-secondary);
}

.solution-visual img{
    width:50%;
    max-width:400px;
    margin:0 auto;
    border-radius:var(--radius);
    box-shadow:var(--shadow-lg);
    transition:var(--transition);
    cursor:pointer;
}

.solution-visual img:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 50px rgba(0,0,0,0.15);
}

/* ===== HOW IT WORKS ===== */
.how{
    padding:100px 0;
    background:var(--bg-primary);
}

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

.how-steps{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:3rem;
    margin-bottom:5rem;
}

.step{
    text-align:center;
}

.step-number{
    display:inline-block;
    width:60px;
    height:60px;
    line-height:60px;
    background:var(--bg-accent);
    color:var(--primary);
    font-size:1.5rem;
    font-weight:600;
    border-radius:50%;
    margin-bottom:1.5rem;
}

.step-content h3{
    font-size:1.25rem;
    font-weight:600;
    margin-bottom:0.75rem;
    color:var(--text-primary);
}

.step-content p{
    color:var(--text-secondary);
    line-height:1.6;
}

.how-features{
    background:var(--bg-accent);
    padding:3rem;
    border-radius:var(--radius);
}

.features-title{
    font-size:1.75rem;
    font-weight:600;
    text-align:center;
    margin-bottom:2rem;
    color:var(--text-primary);
}

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

.feature-card{
    text-align:center;
}

.feature-card .feature-icon{
    width:40px;
    height:40px;
    margin:0 auto 1rem;
    color:var(--accent);
}

.feature-card h4{
    font-size:1rem;
    font-weight:600;
    margin-bottom:0.5rem;
    color:var(--text-primary);
}

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

/* ===== LIVE BETTER WITH HETKI ===== */
.live-better{
    padding:100px 0;
    background:var(--bg-primary);
}

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

.intents-wrapper{
    max-width:1200px;
    margin:0 auto;
    position:relative;
}

.experience-header{
    position:relative;
}

.solution-header{
    position:relative;
}

.solution-alien-pointer{
    position:absolute;
    top:60%;
    transform:translateY(-50%);
    right:-100px;
    z-index:10;
}

.solution-alien{
    width:120px;
    height:auto;
}

.alien-pointer{
    position:absolute;
    top:200px;
    left:10px;
    z-index:10;
}

.journey-alien{
    width:150px;
    height:auto;
}

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

.intent-card{
    background:white;
    padding:2rem;
    border-radius:var(--radius);
    box-shadow:var(--shadow-md);
    transition:var(--transition);
    text-align:center;
}

.intent-card:hover{
    transform:translateY(-2px);
    box-shadow:var(--shadow-lg);
}

.intent-card h3{
    font-size:1rem;
    font-weight:600;
    margin-bottom:0.75rem;
    color:var(--text-primary);
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

.intent-card p{
    color:var(--text-secondary);
    line-height:1.6;
}

/* ===== BETA SIGNUP ===== */
.beta{
    padding:120px 0;
    background:linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color:white;
    text-align:center;
    position:relative;
}

.beta::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background:url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='20' cy='20' r='1'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events:none;
}

.beta-content{
    position:relative;
    z-index:2;
    max-width:700px;
    margin:0 auto;
}

.beta h2{
    color:white;
    margin-bottom:1.5rem;
    font-size:clamp(2.5rem, 5vw, 3.5rem);
    font-weight:600;
}

.beta p{
    color:rgba(255,255,255,0.95);
    font-size:1.25rem;
    line-height:1.7;
    margin-bottom:4rem;
}

.form-wrapper{
    display:flex;
    gap:1rem;
    max-width:550px;
    margin:0 auto;
    background:rgba(255,255,255,0.1);
    padding:8px;
    border-radius:var(--radius);
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,0.2);
}

.beta-form input{
    flex:1;
    padding:18px 24px;
    border:none;
    background:transparent;
    color:white;
    font-size:1rem;
    outline:none;
}

.beta-form input::placeholder{
    color:rgba(255,255,255,0.7);
}

.beta-form button{
    padding:18px 32px;
    background:white;
    color:var(--primary);
    border:none;
    border-radius:calc(var(--radius) - 4px);
    font-size:1rem;
    font-weight:600;
    cursor:pointer;
    transition:background 0.2s ease;
    white-space:nowrap;
    display:flex;
    align-items:center;
    gap:0.5rem;
}

.beta-form button:hover{
    background:rgba(255,255,255,0.95);
}

.success-msg{
    color:white;
    font-weight:600;
    font-size:1.125rem;
    margin-top:2rem;
    padding:1rem 2rem;
    background:rgba(255,255,255,0.1);
    border-radius:var(--radius);
    backdrop-filter:blur(10px);
    display:inline-block;
}

.beta-note{
    font-size:0.9rem;
    color:rgba(255,255,255,0.8);
    margin-top:1.5rem;
}

/* ===== TEAM ===== */
.team{
    padding:100px 0;
    background:var(--bg-secondary);
}

.team-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:4rem;
    align-items:center;
}

.team-text h2{
    font-size:2.5rem;
    font-weight:600;
    margin-bottom:1rem;
    color:var(--text-primary);
}

.team-text p{
    font-size:1.125rem;
    line-height:1.7;
    color:var(--text-secondary);
    margin-bottom:1rem;
}

.team-media img{
    width:100%;
    border-radius:var(--radius);
    box-shadow:var(--shadow-lg);
}

/* ===== FOOTER ===== */
footer{
    padding:3rem 0;
    background:var(--bg-primary);
    border-top:1px solid var(--border);
}

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

.footer-logo{
    /* width:80px; */
    height:40px;
    margin-bottom:0.5rem;
}

.foot-left{
    display:flex;
    align-items:center;
    gap:1rem;
}

.foot-left p{
    color:var(--text-muted);
    font-size:0.875rem;
}

footer nav{
    display:flex;
    gap:2rem;
}

footer nav a{
    color:var(--text-secondary);
    font-size:0.875rem;
    font-weight:500;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px){
    .hero-inner{
        grid-template-columns:1fr;
        text-align:center;
        gap:3rem;
    }
    
    .hero-headline{
        max-width:100%;
    }
    
    .devices-showcase{
        justify-content:center;
    }
    
    .hero-stats{
        position:static;
        justify-content:center;
        margin-top:2rem;
    }
    
    .comparison-layout{
        flex-direction:column;
        gap:3rem;
    }
    
    .vs-divider{
        font-size:1.25rem;
        margin:0 auto;
    }
    
    .comparison-visual img{
        width:120px;
    }
    
    .problem-solution{
        padding:4rem 0;
    }
    
    .example-showcase{
        flex-direction:column;
        gap:3rem;
    }
    
    .example-action{
        padding:4rem 0;
    }
    
    .live-better{
        padding:5rem 0;
    }
    
    .lifestyle-journey{
        grid-template-columns:1fr;
        gap:3rem;
        margin:4rem 0;
    }
    
    .step-number{
        width:50px;
        height:50px;
        font-size:1.25rem;
    }
    
    .journey-step h3{
        font-size:1.5rem;
    }
    
    .journey-path{
        padding:1rem;
    }
    
    .journey-step{
        margin:1rem 0;
        max-width:100%;
        flex-direction:row !important;
        text-align:left !important;
    }
    
    .journey-step:nth-child(even){
        flex-direction:row !important;
    }
    
    .step-marker{
        width:14px;
        height:14px;
        margin-right:1rem !important;
        margin-left:0 !important;
        box-shadow:0 0 0 3px var(--bg-primary), 0 0 0 5px rgba(124, 152, 133, 0.2);
    }
    
    .journey-step:nth-child(odd) .step-content,
    .journey-step:nth-child(even) .step-content{
        text-align:left;
    }
    
    .journey-path::before{
        left:7px;
        transform:none;
        width:2px;
    }
    
    .step-content h4{
        font-size:1rem;
    }
    
    .step-content p{
        font-size:0.9rem;
    }
    
    .lifestyle-title{
        font-size:clamp(2.5rem, 12vw, 4rem);
    }
    
    .lifestyle-lead{
        font-size:1.25rem;
    }
    
    .generic-vs-personal{
        flex-direction:column;
        gap:1rem;
    }
    
    .vs-divider{
        transform:none;
        margin:1rem 0;
    }
    
    .problem-stats{
        flex-direction:column;
        gap:2rem;
    }
    
    .stat-divider{
        width:60px;
        height:1px;
    }
    
    .solution-showcase{
        grid-template-columns:1fr;
    }
    
    .how-steps{
        grid-template-columns:1fr;
    }
    
    .features-grid{
        grid-template-columns:repeat(2, 1fr);
    }
    
    .team-grid{
        grid-template-columns:1fr;
    }
    
    .experience-features{
        grid-template-columns:1fr;
        gap:3rem;
    }
    
    .live-features::before{
        display:none;
    }
    
    .intents-grid{
        grid-template-columns:repeat(3, 1fr);
    }
}

@media (max-width: 640px){
    .container{
        width:95% !important;
        max-width:95% !important;
        padding:0 1rem !important;
        box-sizing:border-box;
        overflow-x:hidden;
    }
    
    .hero{
        min-height:auto;
        padding:60px 0 40px;
    }
    
    .hero-title{
        font-size:clamp(1.2rem, 5vw, 1.8rem) !important;
        line-height:1.1 !important;
        margin-bottom:1rem;
        word-wrap:break-word;
        overflow-wrap:break-word;
        hyphens:auto;
        max-width:100% !important;
        width:100% !important;
    }
    
    .hero-subtitle{
        font-size:clamp(0.8rem, 3vw, 1rem) !important;
        margin-bottom:1.5rem;
        line-height:1.3;
        word-wrap:break-word;
        overflow-wrap:break-word;
        max-width:100% !important;
        width:100% !important;
    }
    
    .hero-actions{
        flex-direction:column;
        gap:1rem;
        margin-bottom:2rem;
    }
    
    .btn-primary, .btn-secondary{
        width:100%;
        justify-content:center;
        padding:16px 24px;
        font-size:1rem;
    }
    
    .hero-inner{
        gap:2rem;
        grid-template-columns:1fr;
    }
    
    .hero-headline{
        order:1;
        text-align:center;
        max-width:100% !important;
        width:100% !important;
        padding:0 2rem;
        word-wrap:break-word;
        overflow-wrap:break-word;
        box-sizing:border-box;
        margin:0 auto;
    }
    
    .hero-inner{
        gap:1.5rem !important;
        grid-template-columns:1fr !important;
        width:100% !important;
        max-width:100% !important;
    }
    
    .hero-visual{
        order:2;
    }
    
    .devices-showcase{
        gap:1rem;
        padding:1rem;
        justify-content:center;
        max-width:100%;
    }
    
    .hero-phone{
        width:180px;
    }
    
    .hero-watch{
        width:120px;
    }
    
    .hero-personalization{
        padding:0 0.5rem;
        gap:2rem;
    }
    
    .personalization-step-hero{
        gap:1.5rem;
    }
    
    .step-visual-hero{
        width:250px;
        height:300px;
    }
    
    .live-better{
        padding:60px 0;
    }
    
    .journey-path{
        gap:1rem;
    }
    
    .comparison-layout{
        gap:2rem;
    }
    
    .comparison-side{
        padding:1.5rem;
    }
    
    .timeline{
        gap:1.5rem;
    }
    
    .timeline-item{
        padding:1.5rem;
    }
    
    .example-visual img{
        max-width:300px;
    }
    
    .experience{
        padding:60px 0;
        overflow-x:hidden;
    }
    
    .experience-features{
        flex-direction:column;
        gap:2rem;
        max-width:100%;
        padding:0 1rem;
    }
    
    .experience-features::before{
        display:none;
    }
    
    .feature-group{
        max-width:100%;
        flex:none;
    }
    
    .live-features{
        padding:0;
        border-right:none;
        border-bottom:1px solid rgba(124, 152, 133, 0.3);
        padding-bottom:2rem;
        margin-bottom:2rem;
    }
    
    .future-features{
        padding:0;
    }
    
    .feature-item{
        padding:1.5rem;
        margin:0;
        max-width:100%;
        width:100%;
    }
    
    .alien-pointer{
        position:static;
        text-align:center;
        margin:2rem auto;
    }
    
    .journey-alien{
        width:120px;
        margin:0 auto;
    }
    
    .beta{
        padding:80px 0;
    }
    
    .beta h2{
        font-size:clamp(2rem, 6vw, 2.5rem);
        line-height:1.2;
    }
    
    .beta p{
        font-size:1rem;
        line-height:1.6;
        max-width:90%;
    }
    
    .beta-content{
        max-width:100%;
    }
    
    .form-wrapper{
        flex-direction:column;
        gap:0;
        padding:4px;
        max-width:100%;
    }
    
    .beta-form input{
        padding:18px 20px;
        border-radius:var(--radius);
        margin-bottom:4px;
    }
    
    .beta-form button{
        border-radius:var(--radius);
        justify-content:center;
    }
    
    .team-grid{
        grid-template-columns:1fr;
        gap:2rem;
        text-align:center;
    }
    
    .foot{
        flex-direction:column;
        gap:2rem;
        text-align:center;
    }
    
    footer nav{
        flex-direction:column;
        gap:1rem;
    }
    
    .live-features{
        padding-right:0;
        padding-bottom:3rem;
        border-right:none;
        border-bottom:1px solid rgba(124, 152, 133, 0.3);
    }
    
    .future-features{
        padding-left:0;
        padding-top:3rem;
    }
    
    .feature-item{
        padding:1.5rem;
    }
    
    .section-title{
        font-size:2rem;
    }
    
    .section-lead{
        font-size:1.125rem;
    }
    
    .top-banner{
        padding:0.5rem 0;
        font-size:0.8rem;
    }
    
    .top-banner p{
        padding:0 1rem;
        word-wrap:break-word;
    }
    
    /* Fix any potential overflow issues */
    section{
        overflow-x:hidden;
    }
    
    .hero-highlight{
        word-wrap:break-word;
    }
    
    .vs-divider{
        font-size:1rem;
        padding:1rem 0;
    }
    
    .timeline-time{
        font-size:0.75rem;
    }
}

/* Extra small screens */
@media (max-width: 400px){
    .container{
        width:98% !important;
        max-width:98% !important;
        padding:0 0.75rem !important;
        box-sizing:border-box;
        overflow-x:hidden;
    }
    
    .hero{
        padding:40px 0 30px !important;
        overflow-x:hidden !important;
    }
    
    .hero-title{
        font-size:clamp(1rem, 6vw, 1.4rem) !important;
        word-break:break-word;
        overflow-wrap:break-word;
        line-height:1.1 !important;
        max-width:100% !important;
        width:100% !important;
    }
    
    .hero-subtitle{
        font-size:clamp(0.8rem, 4vw, 0.9rem) !important;
        overflow-wrap:break-word;
        line-height:1.2 !important;
        max-width:100% !important;
        width:100% !important;
    }
    
    .hero-headline{
        padding:0 1.5rem !important;
        max-width:100% !important;
        width:100% !important;
        box-sizing:border-box;
    }
    
    .hero-inner{
        gap:1rem !important;
        width:100% !important;
        max-width:100% !important;
    }
    
    .hero-phone{
        width:160px;
    }
    
    .hero-watch{
        width:100px;
    }
    
    .devices-showcase{
        gap:0.5rem;
        padding:0.5rem;
    }
    
    .step-visual-hero{
        width:200px;
        height:250px;
    }
    
    .timeline-item{
        padding:1rem;
    }
    
    .comparison-side{
        padding:1rem;
    }
    
    .feature-item{
        padding:1rem;
    }
    
    .form-wrapper{
        padding:2px;
    }
    
    .beta-form input{
        padding:16px 18px;
    }
    
    .beta-form button{
        padding:16px 20px;
    }
    
    .top-banner{
        padding:0.4rem 0;
        font-size:0.75rem;
    }
    
    .hero{
        padding:40px 0 30px;
    }
    
    .hero-actions{
        gap:0.75rem;
        margin-bottom:1.5rem;
    }
    
    .btn-primary, .btn-secondary{
        padding:14px 20px;
        font-size:0.95rem;
    }
    
    .devices-showcase{
        padding:0.5rem;
    }
    
    .experience{
        padding:40px 0;
    }
    
    .experience-features{
        padding:0 0.5rem;
    }
    
    .feature-item{
        padding:1rem;
    }
    
    .journey-alien{
        width:100px;
    }
    
    .beta{
        padding:60px 0;
    }
    
    .beta h2{
        font-size:1.8rem;
        line-height:1.1;
    }
    
    .beta p{
        font-size:0.95rem;
        max-width:100%;
        margin-bottom:2.5rem;
    }
    
    .section-title{
        font-size:1.75rem;
    }
    
    .vs-divider{
        font-size:0.9rem;
    }
}

/* Mobile override - highest specificity */
@media (max-width: 768px){
    .hero .container{
        width:90% !important;
        max-width:90% !important;
        padding:0 !important;
        margin:0 auto !important;
    }
    
    .hero .hero-inner{
        display:flex !important;
        flex-direction:column !important;
        gap:1.5rem !important;
        grid-template-columns:none !important;
        width:100% !important;
    }
    
    .hero .hero-headline{
        order:1 !important;
        text-align:center !important;
        padding:0 1rem !important;
        width:100% !important;
        max-width:100% !important;
        box-sizing:border-box !important;
    }
    
    .hero .hero-title{
        font-size:1.3rem !important;
        line-height:1.2 !important;
        margin:0 0 1rem 0 !important;
        padding:0 !important;
        word-break:break-word !important;
        white-space:normal !important;
        max-width:100% !important;
        width:100% !important;
    }
    
    .hero .hero-subtitle{
        font-size:0.85rem !important;
        line-height:1.3 !important;
        margin:0 0 1.5rem 0 !important;
        padding:0 !important;
        word-break:break-word !important;
        max-width:100% !important;
        width:100% !important;
    }
    
    .mobile-br{
        display:block !important;
    }
    
    .personalization-step-hero:nth-child(4) .step-visual-hero{
        width:280px !important;
        height:350px !important;
    }
    
    .personalization-step-hero:nth-child(4) .step-visual-hero img{
        max-width:280px !important;
        max-height:350px !important;
    }
    
    .hero .hero-actions{
        display:flex !important;
        flex-direction:column !important;
        gap:1rem !important;
        width:100% !important;
        margin:0 !important;
        padding:0 !important;
    }
    
    .hero .btn-primary,
    .hero .btn-secondary{
        width:100% !important;
        max-width:100% !important;
        padding:12px 16px !important;
        font-size:0.85rem !important;
        box-sizing:border-box !important;
        text-align:center !important;
    }
    
    /* Live Better section mobile fixes */
    .live-better .container{
        width:90% !important;
        max-width:90% !important;
        padding:0 1rem !important;
        box-sizing:border-box !important;
    }
    
    .live-better .lifestyle-title{
        font-size:2rem !important;
        line-height:1.1 !important;
        margin-bottom:1rem !important;
        word-break:break-word !important;
        max-width:100% !important;
    }
    
    .live-better .lifestyle-lead{
        font-size:1rem !important;
        line-height:1.4 !important;
        margin-bottom:2rem !important;
        word-break:break-word !important;
        max-width:100% !important;
    }
    
    .live-better .journey-path{
        max-width:100% !important;
        padding:1rem !important;
        margin:0 !important;
    }
    
    .live-better .journey-step{
        flex-direction:row !important;
        align-items:flex-start !important;
        text-align:left !important;
        margin:0.5rem 0 !important;
        padding:0.75rem 1rem !important;
        max-width:100% !important;
        width:100% !important;
        box-sizing:border-box !important;
        display:flex !important;
        gap:1rem !important;
        min-height:auto !important;
    }
    
    .live-better .step-marker{
        width:24px !important;
        height:24px !important;
        margin:0.25rem 0 0 0 !important;
        flex-shrink:0 !important;
        border-radius:50% !important;
        background:var(--primary) !important;
        position:relative !important;
    }
    
    .live-better .step-content{
        max-width:100% !important;
        width:100% !important;
        text-align:left !important;
        padding:0 !important;
        display:flex !important;
        flex-direction:column !important;
        flex:1 !important;
    }
    
    .live-better .step-content h4{
        font-size:1rem !important;
        margin:0 0 0.25rem 0 !important;
        padding:0 !important;
        line-height:1.2 !important;
        word-break:break-word !important;
        overflow-wrap:break-word !important;
        hyphens:auto !important;
    }
    
    .live-better .step-content p{
        font-size:0.85rem !important;
        line-height:1.3 !important;
        word-break:break-word !important;
        overflow-wrap:break-word !important;
        margin:0 !important;
        padding:0 !important;
    }
    
    /* Fix specific journey steps */
    .live-better .journey-step[data-step="2"],
    .live-better .journey-step[data-step="4"],
    .live-better .journey-step[data-step="6"] {
        align-items:flex-start !important;
    }
    
    .live-better .journey-step[data-step="2"] .step-marker,
    .live-better .journey-step[data-step="4"] .step-marker,
    .live-better .journey-step[data-step="6"] .step-marker {
        margin-top:0.125rem !important;
        flex-shrink:0 !important;
    }
    
    .live-better .journey-path::before{
        display:none !important;
    }
    
    .live-better .journey-connector{
        display:none !important;
    }
    
    
    
    .example-showcase{
        display:flex !important;
        flex-direction:column !important;
        align-items:center !important;
        gap:0 !important;
        max-width:100% !important;
    }
    
    .example-visual{
        display:none !important;
    }
    
    .journey-alien{
        content:url('alien_point_down.png') !important;
    }
    
    .alien-pointer{
        margin:1rem auto !important;
    }
    
    .foot-left{
        flex-direction:column !important;
        align-items:center !important;
        text-align:center !important;
        gap:1rem !important;
    }
    
    /* Reduce whitespace issues */
    .group-label{
        margin-bottom:0.5rem !important;
        height:40px !important;
    }
    
    .comparison-visual{
        margin-bottom:0.5rem !important;
    }
    
    .journey-step[data-step="6"]{
        margin-bottom:0.5rem !important;
    }
    
    .live-better{
        padding-bottom:2rem !important;
    }
    
    /* Simple centered mobile layout */
    .live-better .journey-step {
        display:flex !important;
        flex-direction:column !important;
        align-items:center !important;
        text-align:center !important;
        margin:0.75rem 0 !important;
        padding:0.5rem !important;
        width:100% !important;
        max-width:100% !important;
        box-sizing:border-box !important;
    }
    
    .live-better .journey-step .step-marker {
        display:none !important;
    }
    
    .live-better .journey-step .step-content {
        display:block !important;
        text-align:center !important;
        margin:0 !important;
        padding:0 !important;
        width:100% !important;
        max-width:100% !important;
    }
    
    .live-better .journey-step .step-content h4 {
        margin:0 0 0.25rem 0 !important;
        padding:0 !important;
        line-height:1.2 !important;
        font-size:1.1rem !important;
        text-align:center !important;
    }
    
    .live-better .journey-step .step-content p {
        margin:0 !important;
        padding:0 !important;
        line-height:1.3 !important;
        font-size:0.9rem !important;
        text-align:center !important;
        color:var(--text-secondary) !important;
    }
}

/* Ultra small screens */
@media (max-width: 320px){
    .hero .hero-title{
        font-size:1.1rem !important;
    }
    
    .hero .hero-subtitle{
        font-size:0.8rem !important;
    }
    
    .hero .container{
        width:95% !important;
        padding:0 0.5rem !important;
    }
    
    .live-better .lifestyle-title{
        font-size:1.6rem !important;
    }
    
    .live-better .lifestyle-lead{
        font-size:0.9rem !important;
    }
    
    .live-better .step-content h4{
        font-size:0.9rem !important;
    }
    
    .live-better .step-content p{
        font-size:0.8rem !important;
    }
    
    .live-better .step-marker{
        width:20px !important;
        height:20px !important;
    }
    
    .live-better .journey-step{
        margin:0.5rem 0 !important;
        padding:0.5rem !important;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn{
    from{opacity:0}
    to{opacity:1}
}

@keyframes scroll-horizontal{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(20px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* Subtle animations on scroll */
.fade-in{
    animation:fadeIn 0.8s ease-out;
}

.fade-up{
    animation:fadeUp 0.8s ease-out;
}