html {
    scroll-behavior: smooth;
}

:root {
    --primary: #2563EB;
    --primary-dark: #1D4ED8;
    --primary-light: #60A5FA;
    --primary-soft: rgba(37, 99, 235, 0.05);
    --secondary: #0F172A;
    --text-main: #1E293B;
    --text-muted: #64748B;
    --bg-white: #FFFFFF;
    --bg-alt: #F8FAFC;
    --white: #FFFFFF;
    --gradient: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    --gradient-soft: linear-gradient(180deg, rgba(37, 99, 235, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
    --shadow-premium: 0 20px 40px -10px rgba(15, 23, 42, 0.1);
    --shadow-hover: 0 30px 60px -12px rgba(15, 23, 42, 0.15);
    --radius-lg: 32px;
    --radius-md: 20px;
    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

#gravity-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.gravity-particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, rgba(37, 99, 235, 0) 75%);
    filter: blur(20px);
    pointer-events: none;
    will-change: transform;
    opacity: 0.5;
}

h1, h2, h3, h4 {
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.1;
    color: var(--secondary);
}

a {
    transition: var(--transition);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

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

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: var(--transition);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.1rem 2.2rem;
    border-radius: 100px;
    font-weight: 800;
    text-decoration: none;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 12px 24px -6px rgba(37, 99, 235, 0.3);
}

.nav-cta {
    color: #FFFFFF !important; /* Targeted navbar-only fix */
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -10px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    background: var(--bg-alt);
    color: var(--secondary);
    border: 1px solid rgba(0,0,0,0.05);
}

.btn-secondary:hover {
    background: var(--white);
    box-shadow: var(--shadow-hover);
}

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

.btn-white:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}

/* 1) Navbar */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo { height: 44px; width: auto; border-radius: 10px; }
.brand-name { font-weight: 900; font-size: 1.25rem; color: var(--secondary); }

.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-links a { text-decoration: none; color: var(--text-muted); font-weight: 600; font-size: 0.95rem; }
.nav-links a:hover { color: var(--primary); }

.menu-toggle { display: none; background: none; border: none; cursor: pointer; }

/* 2) Hero Section */
/* 2) Hero Section Upgrade */
.hero {
    position: relative;
    padding: 160px 0 120px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
    overflow: hidden;
    min-height: 100vh;
}

.hero-glow-blob {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 1;
}

/* Floating UI Elements */
.preview-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

/* Base styles for cards stay same */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    animation: floatUI 6s ease-in-out infinite;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}

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

.card-icon {
    font-size: 1.2rem;
}

/* Individual Positions Refined for 3x2 Grid Framing */
.float-1 { top: 10%; left: 5%; animation-delay: 0s; }
.float-2 { top: 40%; left: 2%; animation-delay: 1.5s; }
.float-3 { top: 80%; left: 8%; animation-delay: 0.5s; }
.float-4 { top: 15%; right: 5%; animation-delay: 2s; }
.float-5 { top: 50%; right: 2%; animation-delay: 1s; }
.float-6 { top: 85%; right: 10%; animation-delay: 2.5s; }

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

@media (max-width: 1200px) {
    .preview-floating-elements { display: none; } /* Focus on images only on smaller screens */
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 10;
    gap: 5rem;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to bottom, transparent, var(--bg-white));
    z-index: 2;
    pointer-events: none;
}

.hero-content { max-width: 600px; }
.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: 100px;
    font-weight: 800;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-text {
    flex: 1.2;
    max-width: 650px;
}

.hero-text h1 {
    font-size: 4.2rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-description {
    font-size: 1.4rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 3.5rem;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 700;
}

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

.btn-primary:hover {
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
    transform: translateY(-3px);
}

.btn-secondary:hover {
    background: rgba(37, 99, 235, 0.05);
    transform: translateY(-3px);
}

/* Trust Elements */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.trust-item {
    display: flex;
    flex-direction: column;
}

.trust-val {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-dark);
}

.trust-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
}

.trust-sep {
    width: 1px;
    height: 40px;
    background: rgba(0,0,0,0.1);
}

/* Visuals & Animation */
.hero-visual {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: flex-end;
    min-width: 400px;
}

.phone-wrapper {
    position: relative;
    z-index: 5;
}

.static-phone {
    width: 440px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.12));
    transform: rotate(0deg); /* Perfectly straight */
    image-rendering: -webkit-optimize-contrast;
    transition: var(--transition);
}

.static-phone:hover {
    transform: scale(1.02); /* Maintain scale only, no rotation */
}

@keyframes floating {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50% { transform: translateY(-20px) rotate(-1deg); }
}

@keyframes shadowScale {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(0.8); opacity: 0.4; }
}

.hero-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    z-index: -1;
}

/* Section Header */
.section-header { text-align: center; margin-bottom: 5rem; max-width: 700px; margin-left: auto; margin-right: auto; }
.section-header h2 { font-size: 3.5rem; margin-bottom: 1.2rem; }
.section-header p { font-size: 1.2rem; color: var(--text-muted); font-weight: 500; }

.app-preview { 
    padding: 120px 0; 
    background: var(--bg-alt); 
    width: 100%; 
    overflow: hidden; 
    position: relative; 
}
.preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    padding: 2rem 5% 4rem;
    max-width: 1300px;
    margin: 0 auto;
}

.grid-item {
    width: 100%;
    min-width: 0;
}

@media (max-width: 1200px) {
    .preview-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .preview-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Preview Card System */
.preview-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-bottom: 32px;
}

.preview-card img {
    display: block;
    width: 100%;
    max-width: 320px; /* Slightly larger to fill grid cells on large screens */
    height: auto;
    aspect-ratio: 1 / 2;
    object-fit: cover;
    border-radius: 24px;
    background: #000;
    padding: 7px;
    margin: 0 auto;
    box-shadow: var(--shadow-premium);
    transition: var(--transition);
}

.preview-card:hover img {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.preview-caption {
    width: 100%;
    max-width: 240px;
    text-align: center;
    font-size: 14px;
    line-height: 1.4;
    color: #2563EB;
    font-weight: 600;
    margin: 0 auto;
    word-break: normal;
    overflow-wrap: break-word;
}

/* Feature Stories Spacing Header Fix */
.feature-stories { padding: 80px 0; }
.story-item { padding: 120px 0; }
.story-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    align-items: center;
    gap: 8rem;
}
.story-item.reverse .story-container { flex-direction: row-reverse; }

.story-text { flex: 1; }
.story-text h2 { font-size: 3.5rem; margin-bottom: 2rem; }
.story-text p { font-size: 1.3rem; color: var(--text-muted); line-height: 1.7; }

.story-visual { flex: 0.8; text-align: center; }
.mockup-frame.mini {
    width: 280px;
    height: 560px;
    margin: 0 auto;
    background: #000;
    border-radius: 40px;
    padding: 10px;
    box-shadow: var(--shadow-premium);
    transform: perspective(1000px) rotateY(10deg);
    transition: var(--transition);
    overflow: hidden; /* Added to clip image corners to mockup radius */
}
.story-item.reverse .mockup-frame.mini { transform: perspective(1000px) rotateY(-10deg); }
.mockup-frame.mini:hover { transform: perspective(1000px) rotateY(0); }

.story-all { padding: 140px 0; background: var(--bg-alt); }
.story-all h2 { font-size: 4rem; margin-bottom: 1.5rem; }
.story-all p { font-size: 1.4rem; color: var(--text-muted); max-width: 700px; margin: 0 auto; }

/* AI Branding */
.ai-tag {
    display: block;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.8rem;
}

.ai-sub-text {
    display: block;
    font-size: 0.95rem;
    color: var(--primary);
    font-weight: 600;
    margin-top: 1rem;
    opacity: 0.8;
}

/* AI Features Bridge */
.ai-bridge {
    padding: 100px 0;
    background: var(--bg-alt);
    border-top: 1px solid rgba(0,0,0,0.03);
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.ai-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.ai-point {
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-premium);
}

.ai-point h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

/* Existing Features Grid Adjustment */
.features { padding: 140px 0; border-top: 1px solid rgba(0,0,0,0.05); }
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}
.feature-card {
    padding: 3.5rem 2.5rem;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition);
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02);
}
.feature-card:hover { transform: translateY(-12px); border-color: var(--primary); box-shadow: var(--shadow-hover); }
.icon-box {
    width: 60px; height: 60px;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}
.icon-box svg { width: 28px; height: 28px; }
.feature-card h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.feature-card p { color: var(--text-muted); font-weight: 500; }

/* 5) Why TrimTrack */
.why-us { padding: 140px 0; background: var(--bg-alt); }
.why-grid { display: flex; align-items: center; gap: 6rem; }
.why-visual { flex: 1; }
.why-img { width: 100%; border-radius: 40px; box-shadow: var(--shadow-premium); transform: rotate(-3deg); }
.why-content { flex: 1.2; }
.why-content h2 { font-size: 3.8rem; margin-bottom: 3rem; }
.reason-item { margin-bottom: 2.5rem; }
.reason-item h4 { font-size: 1.4rem; color: var(--primary); margin-bottom: 0.5rem; }
.reason-item p { color: var(--text-muted); font-weight: 500; font-size: 1.1rem; }

/* 6) Transformation */
.transformation { padding: 140px 0; }
.benefit-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 4rem;
    margin-top: 6rem;
}
.benefit-step { position: relative; padding-top: 2rem; }
.step-num {
    position: absolute; top: -1rem; left: 50%; transform: translateX(-50%);
    font-size: 6rem; font-weight: 900; color: var(--primary-soft);
    z-index: -1;
}
.benefit-step h3 { font-size: 1.8rem; margin-bottom: 1rem; }
.benefit-step p { color: var(--text-muted); font-weight: 500; }

/* 7) Global CTA */
.cta-global { padding: 100px 0; }
.cta-box {
    background: var(--gradient);
    border-radius: 50px;
    padding: 6rem 4rem;
    text-align: center;
    color: var(--white);
    box-shadow: 0 40px 80px -20px rgba(37, 99, 235, 0.4);
}
.cta-box h2 { color: var(--white); font-size: 4rem; margin-bottom: 1.5rem; }
.cta-box p { font-size: 1.3rem; opacity: 0.9; margin-bottom: 3.5rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 1.5rem; justify-content: center; }
.light-blue { color: #93C5FD; }

/* 8) Footer */
footer { padding: 80px 0 40px; border-top: 1px solid rgba(0,0,0,0.05); }
.footer-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4rem; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-logo { height: 48px; width: auto; border-radius: 10px; }
.footer-nav { display: flex; gap: 3rem; }
.footer-nav a { text-decoration: none; color: var(--text-muted); font-weight: 600; font-size: 0.95rem; }
.footer-divider { height: 1px; background: rgba(0,0,0,0.05); margin-bottom: 2rem; }
.copyright { text-align: center; color: var(--text-muted); font-size: 0.9rem; font-weight: 500; }

/* Responsive */
@media (max-width: 991px) {
    .nav-container { padding: 0 1.5rem; }
    
    .hero {
        padding: 100px 0 40px;
        min-height: auto;
        height: auto;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-text {
        max-width: 100%;
        flex: none;
        order: 1;
    }
    
    .hero-description {
        font-size: 1.15rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-visual {
        justify-content: center;
        min-width: auto;
        flex: none;
        order: 2;
    }

    .hero-text h1 {
        font-size: 2.6rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }
    
    .hero-btns {
        justify-content: center;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 2rem;
    }
    
    .hero-btns .btn {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    /* Tighten other sections */
    .ai-features-section,
    .features-section-new,
    .app-preview,
    .final-cta-section,
    .seo-content {
        padding: 60px 0 !important;
    }

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

    .section-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 6px;
        z-index: 1001;
    }
    
    .menu-toggle span {
        display: block;
        width: 28px;
        height: 3px;
        background: var(--secondary);
        border-radius: 4px;
        transition: var(--transition);
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        transform: rotate(-45deg);
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .hero-text h1 { 
        font-size: 2.2rem; 
        margin-bottom: 0.8rem;
    }
    .hero-description {
        font-size: 1.05rem;
        margin-bottom: 1.2rem;
    }
    .cta-box h2 { font-size: 2rem; }
    .cta-btns { flex-direction: column; }
    
    .static-phone {
        max-width: 320px !important;
        width: 90% !important;
        margin: 0 auto;
    }
    
    .ai-card-grid, .features-grid-new {
        gap: 20px;
        margin-top: 30px;
    }

    .final-cta-section h2 { font-size: 2rem; }
    .final-cta-section p { font-size: 1rem; margin-bottom: 25px; }
    .btn-cta-blue { padding: 16px 35px; font-size: 1.1rem; }
}

/* Policy Pages */
.policy-page {
    padding: 180px 0 100px;
}

.policy-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 5%;
}

.policy-container h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.policy-container h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.policy-container h3, .policy-container h4 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.8rem;
}

.policy-container p {
    color: var(--text-muted);
    margin-bottom: 1.2rem;
}

.policy-container ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.policy-container li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.policy-date {
    display: block;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.back-to-home {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.back-to-home:hover {
    transform: translateX(-5px);
}

/* AI Powered Fitness Section */
.ai-features-section {
    padding: 100px 0;
    background: #ffffff;
}
.ai-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.ai-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 24px;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    text-align: center;
}
.ai-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px -12px rgba(37, 99, 235, 0.15);
    border-color: var(--primary-light);
}
.ai-card .icon-circle {
    width: 70px;
    height: 70px;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 30px;
}
.ai-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}
.ai-card p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Everything You Need Section */
.features-section-new {
    padding: 100px 0;
    background: var(--bg-alt);
}
.features-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 50px;
}
.feature-item-new {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.feature-item-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.feature-item-new .feat-icon {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary);
}
.feature-item-new h4 {
    margin-bottom: 8px;
    font-size: 1.2rem;
}
.feature-item-new p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Upgraded Screenshot Slider */
.screenshot-slider-wrap {
    margin-top: 60px;
    position: relative;
    padding-bottom: 20px;
}
.screenshot-slider {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding: 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
}
.screenshot-slider::-webkit-scrollbar {
    display: none;
}
.screenshot-item {
    flex: 0 0 auto;
    width: 280px;
    scroll-snap-align: center;
    transition: var(--transition);
}
.screenshot-item:hover {
    transform: scale(1.05);
    z-index: 10;
}
.iphone-frame {
    background: #000000;
    padding: 8px;
    border-radius: 36px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border: 3px solid #f1f5f9;
}
.iphone-frame img {
    width: 100%;
    border-radius: 28px;
    display: block;
}

/* Final CTA */
.final-cta-section {
    padding: 120px 0;
    background: #ffffff;
    text-align: center;
}
.cta-content-wrap {
    max-width: 800px;
    margin: 0 auto;
}
.final-cta-section h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}
.final-cta-section p {
    font-size: 1.4rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}
.btn-cta-blue {
    background: var(--primary);
    color: #ffffff !important;
    padding: 20px 50px;
    font-size: 1.3rem;
    border-radius: 100px;
    font-weight: 800;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.3);
}
.btn-cta-blue:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.4);
    background: var(--primary-dark);
}

@media (max-width: 768px) {
    .final-cta-section h2 { font-size: 2.5rem; }
    .final-cta-section p { font-size: 1.1rem; }
    .screenshot-item { width: 240px; }
}
