/* ========================================
   RESET & BASE STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors */
    --primary-green: #39FF88;
    --secondary-blue: #12D1FF;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --card-bg: #121212;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --border-color: rgba(255, 255, 255, 0.1);

    /* Spacing */
    --container-padding: 2rem;
    --section-padding: 120px 0;

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.btn-download-nav {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-blue));
    padding: 0.625rem 1.5rem;
    border-radius: 50px;
    color: var(--dark-bg) !important;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-download-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(57, 255, 136, 0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

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

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

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

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.mobile-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--primary-green);
    transform: translateX(10px);
}

.mobile-menu .btn-download-nav {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-blue));
    padding: 1rem 2rem;
    border-radius: 50px;
    color: var(--dark-bg) !important;
    font-weight: 600;
    font-size: 1.125rem;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    padding: 180px 0 120px;
    overflow: hidden;
}

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-text {
    max-width: 800px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    justify-content: center;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-blue));
    color: var(--dark-bg);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(57, 255, 136, 0.4);
}

.btn-primary.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

/* Phone Mockup */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

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

.phone-frame {
    width: 320px;
    height: 650px;
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border-radius: 45px;
    padding: 12px;
    box-shadow:
        0 50px 100px rgba(0, 0, 0, 0.5),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.phone-frame .app-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 35px;
}

/* Gradient Blurs */
.hero-gradient-blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    pointer-events: none;
    z-index: -1;
}

.blur-1 {
    width: 600px;
    height: 600px;
    background: var(--primary-green);
    top: -200px;
    left: -100px;
}

.blur-2 {
    width: 500px;
    height: 500px;
    background: var(--secondary-blue);
    bottom: -150px;
    right: -100px;
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features {
    padding: var(--section-padding);
    background: var(--darker-bg);
    position: relative;
}

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

.section-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

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

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

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(57, 255, 136, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(57, 255, 136, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========================================
   APP SHOWCASE - SCROLL DRIVEN
   ======================================== */
.app-showcase {
    position: relative;
    background: var(--darker-bg);
    padding: 0;
    min-height: 400vh;
}

.showcase-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 0 var(--container-padding);
}

/* Sticky phone on the right */
.showcase-phone-wrapper {
    position: sticky;
    top: 120px;
    height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    will-change: transform;
    transform: translateZ(0);
}

.showcase-phone {
    width: 340px;
    height: 690px;
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border-radius: 45px;
    padding: 12px;
    box-shadow:
        0 50px 100px rgba(0, 0, 0, 0.6),
        0 0 80px rgba(57, 255, 136, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    overflow: hidden;
    position: relative;
}

.phone-screen {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
    height: calc(100% - 24px);
    object-fit: cover;
    border-radius: 35px;
    opacity: 0;
    will-change: opacity;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    -webkit-font-smoothing: subpixel-antialiased;
}

.phone-screen.active {
    opacity: 1;
    z-index: 1;
}

#showcase-screen-1 {
    z-index: 2;
}

#showcase-screen-2 {
    z-index: 1;
}

/* Scroll panels on the left */
.showcase-panels {
    position: relative;
    z-index: 1;
}

.showcase-panel {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0;
}

.panel-content {
    max-width: 500px;
    opacity: 0;
}

.panel-number {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.panel-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.panel-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */
.how-it-works {
    padding: var(--section-padding);
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
}

.step-number {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    flex-shrink: 0;
}

.step-content {
    padding-top: 0.5rem;
}

.step-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials {
    padding: var(--section-padding);
    background: var(--darker-bg);
}

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

.testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.testimonial-stars {
    color: #FFD700;
    font-size: 1.25rem;
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.7;
    flex-grow: 1;
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--dark-bg);
}

.author-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-role {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* ========================================
   HORIZONTAL SCROLL
   ======================================== */
.horizontal-scroll-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-green) rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.horizontal-scroll-wrapper::-webkit-scrollbar {
    height: 8px;
}

.horizontal-scroll-wrapper::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.horizontal-scroll-wrapper::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, var(--primary-green), var(--secondary-blue));
    border-radius: 10px;
}

.horizontal-scroll-wrapper::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, var(--secondary-blue), var(--primary-green));
}

.features-grid.horizontal-scroll {
    display: flex;
    gap: 2rem;
    grid-template-columns: none;
    width: max-content;
}

.features-grid.horizontal-scroll .feature-card {
    min-width: 350px;
    max-width: 350px;
    flex-shrink: 0;
}

.testimonials-grid.horizontal-scroll {
    display: flex;
    gap: 2rem;
    grid-template-columns: none;
    width: max-content;
}

.testimonials-grid.horizontal-scroll .testimonial-card {
    min-width: 400px;
    max-width: 400px;
    flex-shrink: 0;
}

/* ========================================
   PRICING SECTION
   ======================================== */
.pricing {
    padding: var(--section-padding);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(57, 255, 136, 0.3);
}

.pricing-card.featured {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 1px var(--primary-green);
    transform: scale(1.05);
}

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

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-blue));
    color: var(--dark-bg);
    padding: 0.375rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

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

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

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

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--text-secondary);
}

.pricing-features .check {
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1.125rem;
}

.btn-pricing {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
}

.btn-pricing:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-pricing.primary {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-blue));
    color: var(--dark-bg);
    border: none;
}

.btn-pricing.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(57, 255, 136, 0.3);
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.cta-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.cta-gradient-blur {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--primary-green), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(150px);
    opacity: 0.1;
    pointer-events: none;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--darker-bg);
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem;
}

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

.footer-brand {
    max-width: 350px;
}

.footer-description {
    color: var(--text-secondary);
    margin-top: 1rem;
    line-height: 1.7;
}

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

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

.footer-column h4 {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .features-grid,
    .testimonials-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .showcase-container {
        gap: 3rem;
    }

    .showcase-phone {
        width: 300px;
        height: 610px;
    }

    .panel-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 1.5rem;
        --section-padding: 80px 0;
    }

    .nav-links {
        display: none;
    }

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

    .hero {
        padding: 140px 0 80px;
    }

    .hero-title {
        font-size: 2.75rem;
        line-height: 1.15;
        margin-bottom: 1.25rem;
    }

    .hero-description {
        font-size: 1.125rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.875rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 1.125rem 2rem;
        font-size: 1.0625rem;
    }

    .hero-stats {
        gap: 2.5rem;
        flex-wrap: wrap;
        justify-content: space-around;
    }

    .stat {
        align-items: center;
    }

    .stat-number {
        font-size: 2.25rem;
    }

    .stat-label {
        font-size: 0.9375rem;
    }

    .section-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .section-description {
        font-size: 1.0625rem;
        line-height: 1.6;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .features-grid.horizontal-scroll .feature-card {
        min-width: 320px;
        max-width: 320px;
        padding: 2rem;
    }

    .testimonials-grid.horizontal-scroll .testimonial-card {
        min-width: 340px;
        max-width: 340px;
        padding: 2rem;
    }

    .app-showcase {
        min-height: auto;
        padding: 80px 0;
        background: var(--dark-bg);
    }

    .showcase-container {
        display: block;
        padding: 0;
    }

    .showcase-phone-wrapper {
        display: none;
    }

    .showcase-panels {
        display: flex;
        flex-direction: column;
        gap: 5rem;
        padding: 0 var(--container-padding);
    }

    .showcase-panel {
        min-height: auto;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        text-align: center;
    }

    .showcase-panel::before {
        content: '';
        width: 300px;
        height: 610px;
        background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
        border-radius: 42px;
        padding: 12px;
        box-shadow:
            0 40px 80px rgba(0, 0, 0, 0.7),
            0 0 60px rgba(57, 255, 136, 0.15),
            inset 0 0 0 1px rgba(255, 255, 255, 0.1);
        display: block;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        flex-shrink: 0;
    }

    .showcase-panel[data-screen="assets/dashboard.png"]::before {
        background-image: url('assets/dashboard.png');
    }

    .showcase-panel[data-screen="assets/tasks.png"]::before {
        background-image: url('assets/tasks.png');
    }

    .showcase-panel[data-screen="assets/statistics.png"]::before {
        background-image: url('assets/statistics.png');
    }

    .showcase-panel[data-screen="assets/home_widget.png"]::before {
        background-image: url('assets/home_widget.png');
    }

    .panel-content {
        opacity: 1 !important;
        padding: 0;
        max-width: 500px;
    }

    .panel-number {
        font-size: 0.875rem;
    }

    .panel-title {
        font-size: 2.25rem;
        line-height: 1.2;
    }

    .panel-description {
        font-size: 1.0625rem;
        line-height: 1.7;
        max-width: 100%;
        color: var(--text-secondary);
    }

    .pricing-card {
        padding: 2rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

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

    .feature-card {
        padding: 2rem;
    }

    .feature-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 1.25rem;
    }

    .feature-title {
        font-size: 1.375rem;
        margin-bottom: 0.875rem;
    }

    .feature-description {
        font-size: 1rem;
        line-height: 1.6;
    }

    .testimonial-card {
        padding: 2rem;
    }

    .testimonial-text {
        font-size: 1rem;
        line-height: 1.6;
    }

    .step {
        flex-direction: column;
        gap: 1.25rem;
        text-align: left;
    }

    .step-number {
        font-size: 3.5rem;
    }

    .step-content {
        padding-top: 0;
    }

    .step-title {
        font-size: 1.75rem;
        margin-bottom: 0.875rem;
    }

    .step-description {
        font-size: 1.0625rem;
        line-height: 1.7;
    }

    .cta {
        padding: 100px 0;
    }

    .cta-title {
        font-size: 2.75rem;
        line-height: 1.2;
        margin-bottom: 1.25rem;
    }

    .cta-description {
        font-size: 1.125rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }

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

    .footer-links {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-column {
        gap: 0.875rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    :root {
        --container-padding: 1.25rem;
        --section-padding: 70px 0;
    }

    .hero {
        padding: 130px 0 70px;
    }

    .hero-title {
        font-size: 2.25rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 1.0625rem;
        line-height: 1.55;
        margin-bottom: 1.75rem;
    }

    .hero-buttons {
        gap: 0.75rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 1.0625rem 1.75rem;
        font-size: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

    .stat {
        text-align: center;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.875rem;
    }

    .section-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .section-description {
        font-size: 1rem;
        line-height: 1.55;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .feature-card,
    .testimonial-card,
    .pricing-card {
        padding: 1.75rem;
    }

    .features-grid.horizontal-scroll .feature-card {
        min-width: 300px;
        max-width: 300px;
    }

    .testimonials-grid.horizontal-scroll .testimonial-card {
        min-width: 320px;
        max-width: 320px;
    }

    .feature-icon {
        width: 52px;
        height: 52px;
    }

    .feature-title {
        font-size: 1.3125rem;
    }

    .feature-description {
        font-size: 0.9375rem;
        line-height: 1.6;
    }

    .testimonial-text {
        font-size: 0.9375rem;
        line-height: 1.6;
    }

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

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

    .showcase-panels {
        gap: 4rem;
    }

    .showcase-panel {
        gap: 1.75rem;
    }

    .showcase-panel::before {
        width: 260px;
        height: 529px;
        border-radius: 38px;
    }

    .panel-number {
        font-size: 0.8125rem;
        margin-bottom: 0.875rem;
    }

    .panel-title {
        font-size: 1.875rem;
        line-height: 1.2;
        margin-bottom: 1.25rem;
    }

    .panel-description {
        font-size: 1rem;
        line-height: 1.65;
    }

    .step {
        gap: 1rem;
    }

    .step-number {
        font-size: 3.25rem;
    }

    .step-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .step-description {
        font-size: 1rem;
        line-height: 1.65;
    }

    .pricing-title {
        font-size: 1.375rem;
    }

    .pricing-price {
        margin-bottom: 0.5rem;
    }

    .price-amount {
        font-size: 2.75rem;
    }

    .price-period {
        font-size: 1rem;
    }

    .pricing-features li {
        font-size: 0.9375rem;
        padding: 0.625rem 0;
    }

    .cta {
        padding: 80px 0;
    }

    .cta-title {
        font-size: 2.25rem;
        line-height: 1.2;
    }

    .cta-description {
        font-size: 1.0625rem;
        line-height: 1.6;
    }

    .btn-primary.large {
        padding: 1.125rem 2rem;
        font-size: 1rem;
    }

    .footer {
        padding: 3.5rem 0 1.75rem;
    }

    .footer-content {
        gap: 2.5rem;
        margin-bottom: 2.5rem;
    }

    .footer-links {
        gap: 2rem;
    }

    .footer-column h4 {
        font-size: 0.8125rem;
        margin-bottom: 0.625rem;
    }

    .footer-column a {
        font-size: 0.9375rem;
    }

    .footer-bottom {
        padding-top: 1.75rem;
        gap: 0.75rem;
    }

    .footer-bottom p {
        font-size: 0.8125rem;
    }
}

/* ========================================
   ANIMATIONS - SUBTLE & MINIMAL
   ======================================== */

/* Simple fade in */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Smooth scroll offset for fixed nav */
section {
    scroll-margin-top: 80px;
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
