:root {
    /* Colors - Deep Premium Palette */
    --primary: #6366f1;
    --primary-glow: rgba(99, 102, 241, 0.5);
    --secondary: #06b6d4;
    --secondary-glow: rgba(6, 182, 212, 0.5);
    --accent: #f43f5e;
    --accent-glow: rgba(244, 63, 94, 0.5);
    
    --bg-darker: #020617;
    --bg-dark: #0f172a;
    --bg-accent: #1e293b;
    
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    --glass: rgba(15, 23, 42, 0.6);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-highlight: rgba(255, 255, 255, 0.03);
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 140px 24px;
    
    /* Effects */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-premium: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-darker);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

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

/* Background Mesh Gradient */
.bg-mesh {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        radial-gradient(circle at 0% 0%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(6, 182, 212, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(2, 6, 23, 1) 0%, rgba(2, 6, 23, 1) 100%);
    pointer-events: none;
}

/* Typography & Content */
.gradient-text-vibrant {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 100px;
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    height: 80px;
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    color: #fff;
    text-decoration: none;
}

.logo-symbol {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
    list-style: none;
}

.nav-links a:not(.btn) {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.nav-links a:not(.btn):hover {
    color: #fff;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    gap: 10px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    box-shadow: 0 10px 30px -5px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -10px var(--primary-glow);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    color: #fff;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
}

.btn-text {
    padding: 0;
    color: var(--primary);
    background: transparent;
    font-size: 0.95rem;
}

.btn-text:hover {
    color: var(--secondary);
    gap: 15px;
}

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

/* Hero Section */
.hero {
    padding: 220px 0 140px;
    position: relative;
    text-align: center;
}

.hero-centered .hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(3.5rem, 8vw, 5.5rem);
    line-height: 1;
    margin-bottom: 32px;
    letter-spacing: -0.03em;
}

.hero p {
    font-size: 1.4rem;
    color: var(--text-secondary);
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.hero-visual-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    z-index: -1;
}

.glow-orb {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    filter: blur(80px);
    opacity: 0.5;
}

/* Trust Indicators */
.trust-indicators {
    padding: 60px 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.02);
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
    margin-bottom: 60px;
}

.stat-number {
    font-size: 3rem;
    background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.stat-item p {
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
}

.logo-cloud {
    text-align: center;
}

.logo-placeholder {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.2em;
    margin-bottom: 32px;
}

.logo-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    opacity: 0.5;
    filter: grayscale(1);
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--text-secondary);
}

/* Features */
.features {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 24px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.feature-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 48px;
    border-radius: 32px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    background: rgba(15, 23, 42, 0.8);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 32px;
    font-size: 28px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.card-list {
    list-style: none;
    margin: 24px 0 32px;
    flex-grow: 1;
}

.card-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.card-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

/* Workflow Section */
.workflow {
    padding: var(--section-padding);
    background: rgba(255, 255, 255, 0.02);
}

.workflow-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.step-item {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
}

.step-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--primary-glow);
}

.step-content h3 { font-size: 1.5rem; margin-bottom: 12px; }
.step-content p { color: var(--text-secondary); }

.workflow-visual-container {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    padding: 60px;
}

.workflow-progress-visual {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
}

.node {
    width: 48px;
    height: 48px;
    background: var(--bg-dark);
    border: 2px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.node.active {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 20px var(--primary-glow);
}

.line {
    flex-grow: 1;
    height: 2px;
    background: var(--glass-border);
    margin: 0 -10px;
}

/* Testimonials Section */
.testimonials {
    padding: var(--section-padding);
}

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

.testimonial-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 48px;
    border-radius: 32px;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    border-color: var(--secondary);
    background: rgba(15, 23, 42, 0.8);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
    color: #fbbf24;
}

.testimonial-rating i {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 32px;
    line-height: 1.7;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
}

.user-info h4 { font-size: 1rem; margin-bottom: 2px; }
.user-info span { font-size: 0.85rem; color: var(--text-muted); }

/* Pricing */
.pricing {
    padding: var(--section-padding);
}

.toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.toggle-switch {
    width: 64px;
    height: 32px;
    background: var(--bg-accent);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    position: relative;
}

.toggle-knob {
    width: 24px;
    height: 24px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 4px;
    transition: var(--transition-smooth);
}

.toggle-switch.active { background: var(--primary); }
.toggle-switch.active .toggle-knob { left: 34px; }

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

.pricing-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 60px 48px;
    border-radius: 40px;
}

.pricing-card.popular {
    background: rgba(15, 23, 42, 0.9);
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

.price {
    font-size: 4rem;
    font-weight: 800;
    margin: 32px 0;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.price span { font-size: 1.25rem; color: var(--text-muted); }

.pricing-features { list-style: none; margin-bottom: 48px; }
.pricing-features li { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; color: var(--text-secondary); }
.pricing-features i { color: var(--secondary); }

/* Blog Section */
.blog {
    padding: var(--section-padding);
}

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

.blog-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.blog-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary);
    color: #fff;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
}

.blog-content {
    padding: 32px;
}

.blog-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.blog-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    line-height: 1.3;
}

.blog-card p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* Newsletter Section */
.newsletter {
    padding: 80px 24px;
}

.newsletter-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 40px;
    border-radius: 40px;
    text-align: center;
    border: 1px solid var(--glass-border);
}

.mail-icon {
    width: 48px;
    height: 48px;
    color: var(--primary);
    margin-bottom: 24px;
}

.newsletter-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.newsletter-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.newsletter-form {
    display: flex;
    gap: 16px;
    max-width: 500px;
    margin: 0 auto 24px;
}

.newsletter-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 16px 24px;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
}

.newsletter-privacy {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Final CTA */
.final-cta {
    padding: var(--section-padding);
}

.cta-content {
    background: linear-gradient(135deg, var(--bg-dark), var(--bg-darker));
    border: 1px solid var(--glass-border);
    padding: 100px 40px;
    border-radius: 60px;
    text-align: center;
}

.cta-content h2 { font-size: 4rem; margin-bottom: 24px; }
.cta-content p { font-size: 1.25rem; color: var(--text-secondary); margin-bottom: 48px; }

/* Footer */
.footer {
    padding: 100px 0 40px;
    background: var(--bg-darker);
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-brand p { color: var(--text-secondary); margin-top: 24px; max-width: 300px; }
.footer-links h4 { color: #fff; margin-bottom: 24px; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: var(--text-secondary); text-decoration: none; transition: var(--transition-smooth); }
.footer-links a:hover { color: #fff; }

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ============================================
   HAMBURGER MENU
   ============================================ */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    cursor: pointer;
    z-index: 1100;
    transition: var(--transition-smooth);
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 4px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.nav-hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, 0.7);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.nav-overlay.active {
    opacity: 1;
}

/* ============================================
   TABLET BREAKPOINT (≤ 1024px)
   ============================================ */
@media (max-width: 1024px) {
    :root {
        --section-padding: 100px 24px;
    }

    /* Grids → single column */
    .testimonials-grid,
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 520px;
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }

    .workflow-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .workflow-visual-container {
        padding: 40px;
    }

    /* Pricing card */
    .pricing-card.popular {
        transform: scale(1);
    }

    /* Newsletter form */
    .newsletter-form {
        flex-direction: column;
    }

    /* Section headings */
    .section-header h2 {
        font-size: 2.4rem;
    }

    .cta-content h2 {
        font-size: 3rem;
    }
}

/* ============================================
   MOBILE BREAKPOINT (≤ 768px)
   ============================================ */
@media (max-width: 768px) {
    :root {
        --section-padding: 80px 20px;
    }

    /* ----- Navbar ----- */
    .nav-hamburger {
        display: flex;
    }

    .nav-overlay {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(320px, 80vw);
        height: 100dvh;
        background: rgba(10, 17, 40, 0.98);
        backdrop-filter: blur(30px);
        border-left: 1px solid var(--glass-border);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 100px 32px 48px;
        gap: 8px;
        z-index: 1050;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        list-style: none;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a:not(.btn) {
        display: block;
        font-size: 1.2rem;
        padding: 12px 0;
        border-bottom: 1px solid var(--glass-border);
        color: var(--text-primary);
    }

    .nav-links .btn {
        width: 100%;
        margin-top: 8px;
        justify-content: center;
        padding: 14px 24px !important;
    }

    /* ----- Hero ----- */
    .hero {
        padding: 160px 20px 80px;
    }

    .hero h1 {
        font-size: clamp(2.4rem, 9vw, 3.5rem);
        line-height: 1.1;
        margin-bottom: 24px;
    }

    .hero p {
        font-size: 1.1rem;
        margin-bottom: 36px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 340px;
        justify-content: center;
    }

    /* ----- Trust stats → stacked ----- */
    .trust-stats {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

    .logo-grid {
        gap: 28px;
        flex-wrap: wrap;
        justify-content: center;
    }

    /* ----- Features grid ----- */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 32px 24px;
        border-radius: 24px;
    }

    /* ----- Section headers ----- */
    .section-header {
        margin-bottom: 48px;
    }

    .section-header h2 {
        font-size: 2rem;
        margin-bottom: 16px;
    }

    .section-header p {
        font-size: 1rem;
    }

    /* ----- Workflow ----- */
    .workflow-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .step-item {
        gap: 20px;
        margin-bottom: 32px;
    }

    .step-number {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 1.2rem;
    }

    .workflow-visual-container {
        padding: 28px 20px;
        border-radius: 24px;
    }

    /* ----- Testimonials ----- */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 32px 24px;
        border-radius: 24px;
    }

    /* ----- Pricing ----- */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
    }

    .pricing-card {
        padding: 40px 28px;
        border-radius: 28px;
    }

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

    .price {
        font-size: 3rem;
    }

    /* ----- Blog ----- */
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-image {
        height: 200px;
    }

    .blog-content {
        padding: 24px;
    }

    /* ----- Newsletter ----- */
    .newsletter-box {
        padding: 48px 24px;
        border-radius: 28px;
    }

    .newsletter-header h2 {
        font-size: 1.8rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input,
    .newsletter-form .btn {
        width: 100%;
    }

    /* ----- Final CTA ----- */
    .cta-content {
        padding: 60px 24px;
        border-radius: 32px;
    }

    .cta-content h2 {
        font-size: 2rem;
        margin-bottom: 16px;
    }

    .cta-content p {
        font-size: 1rem;
        margin-bottom: 32px;
    }

    .cta-btns .btn {
        width: 100%;
        max-width: 340px;
    }

    /* ----- Footer ----- */
    .footer {
        padding: 64px 0 32px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 48px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .social-icons {
        display: flex;
        gap: 16px;
        justify-content: center;
    }
}

/* ============================================
   SMALL MOBILE (≤ 400px)
   ============================================ */
@media (max-width: 400px) {
    .hero h1 {
        font-size: 2rem;
    }

    .logo span {
        font-size: 1.2rem;
    }

    .feature-card,
    .testimonial-card,
    .pricing-card {
        padding: 24px 18px;
    }
}
