/* ═══════════════════════════════════════════════════ */
/* DESIGN TOKENS                                      */
/* ═══════════════════════════════════════════════════ */
:root {
    /* Colors */
    --green-400: #25D366;
    --green-500: #128C7E;
    --green-600: #075E54;
    --green-glow: rgba(37, 211, 102, .15);

    --bg-primary: #0a0a0f;
    --bg-secondary: #111118;
    --bg-tertiary: #1a1a24;
    --bg-card: #15151f;
    --bg-card-hover: #1c1c28;

    --text-primary: #f0f0f5;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;

    --border-color: rgba(255, 255, 255, .06);
    --border-hover: rgba(255, 255, 255, .12);

    --accent: #25D366;
    --accent-hover: #20bd5a;
    --accent-glow: rgba(37, 211, 102, .25);

    --blue: #3b82f6;
    --purple: #8b5cf6;
    --red: #ef4444;
    --orange: #f59e0b;

    /* Spacing */
    --section-py: 100px;
    --container-px: 24px;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 24px;

    /* Z-index */
    --z-navbar: 100;
}

/* ═══════════════════════════════════════════════════ */
/* RESET & BASE                                       */
/* ═══════════════════════════════════════════════════ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

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

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

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

/* ═══════════════════════════════════════════════════ */
/* SECTION HEADER                                     */
/* ═══════════════════════════════════════════════════ */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

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

.section-tag {
    display: inline-block;
    background: var(--accent-glow);
    color: var(--accent);
    font-weight: 600;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-tag-green {
    background: rgba(16, 185, 129, .12);
    color: #34d399;
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent), #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ═══════════════════════════════════════════════════ */
/* BUTTONS                                            */
/* ═══════════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    font-weight: 600;
    font-size: .95rem;
    padding: 12px 28px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all .25s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent);
    color: #000;
    box-shadow: 0 0 20px var(--accent-glow);
}

.btn-primary:hover {
    background: var(--accent-hover);
    box-shadow: 0 0 30px var(--accent-glow), 0 4px 20px rgba(0, 0, 0, .3);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-hover);
}

.btn-ghost:hover {
    border-color: var(--text-secondary);
    background: rgba(255, 255, 255, .03);
}

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

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1rem;
}

.btn-xl {
    padding: 18px 40px;
    font-size: 1.1rem;
    border-radius: var(--radius-lg);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ═══════════════════════════════════════════════════ */
/* NAVBAR                                             */
/* ═══════════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-navbar);
    padding: 16px 0;
    transition: all .3s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 15, .85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
}

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

.nav-logo {
    font-size: 1.4rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-primary);
}

.nav-logo i {
    color: var(--accent);
    font-size: 1.6rem;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: .9rem;
    transition: color .2s;
}

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

.nav-cta {
    background: var(--accent);
    color: #000;
    font-weight: 700;
    font-size: .85rem;
    padding: 10px 24px;
    border-radius: var(--radius-md);
    transition: all .2s;
}

.nav-cta:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.4rem;
    cursor: pointer;
}

/* ═══════════════════════════════════════════════════ */
/* HERO                                               */
/* ═══════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: .4;
}

.hero-glow-1 {
    width: 500px;
    height: 500px;
    background: var(--accent);
    top: -100px;
    right: -100px;
    opacity: .12;
}

.hero-glow-2 {
    width: 400px;
    height: 400px;
    background: var(--purple);
    bottom: -50px;
    left: -100px;
    opacity: .08;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    color: var(--accent);
    font-weight: 600;
    font-size: .8rem;
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 32px;
    animation: fadeInUp .6s ease;
}

.hero h1 {
    font-size: clamp(2.4rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp .6s .1s ease both;
}

.hero-gradient {
    background: linear-gradient(135deg, var(--accent) 0%, #34d399 50%, var(--blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.7;
    animation: fadeInUp .6s .2s ease both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
    animation: fadeInUp .6s .3s ease both;
}

.hero-proof {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp .6s .4s ease both;
}

.hero-proof-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: .85rem;
}

.hero-proof-item i {
    color: var(--accent);
    font-size: .9rem;
}

/* ═══════════════════════════════════════════════════ */
/* PAIN                                               */
/* ═══════════════════════════════════════════════════ */
.pain {
    padding: var(--section-py) 0;
    background: var(--bg-secondary);
}

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

.pain-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all .3s ease;
}

.pain-card:hover {
    border-color: rgba(239, 68, 68, .3);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .2);
}

.pain-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: rgba(239, 68, 68, .1);
    color: var(--red);
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.pain-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

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

/* ═══════════════════════════════════════════════════ */
/* SOLUTION                                           */
/* ═══════════════════════════════════════════════════ */
.solution {
    padding: var(--section-py) 0;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.solution-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    position: relative;
    transition: all .3s ease;
}

.solution-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .2);
}

.solution-card-highlight {
    border-color: rgba(37, 211, 102, .25);
    background: linear-gradient(135deg, rgba(37, 211, 102, .04), transparent);
}

.solution-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 255, 255, .04);
    position: absolute;
    top: 16px;
    right: 24px;
    line-height: 1;
}

.solution-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--accent);
}

.solution-card p {
    color: var(--text-secondary);
    font-size: .9rem;
    line-height: 1.65;
}

/* ═══════════════════════════════════════════════════ */
/* FEATURES                                           */
/* ═══════════════════════════════════════════════════ */
.features {
    padding: var(--section-py) 0;
    background: var(--bg-secondary);
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: all .3s ease;
}

.feature-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, .15);
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: var(--accent-glow);
    color: var(--accent);
    font-size: 1.15rem;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

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

/* ═══════════════════════════════════════════════════ */
/* HOW IT WORKS                                       */
/* ═══════════════════════════════════════════════════ */
.how-it-works {
    padding: var(--section-py) 0;
}

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    flex: 1;
    max-width: 320px;
    position: relative;
    transition: all .3s ease;
}

.step-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.step-number {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: var(--accent);
    color: #000;
    font-weight: 800;
    font-size: .9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.step-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
}

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

.step-connector {
    color: var(--text-muted);
    font-size: 1.2rem;
    padding: 0 16px;
}

/* ═══════════════════════════════════════════════════ */
/* SOCIAL PROOF                                       */
/* ═══════════════════════════════════════════════════ */
.social-proof {
    padding: 60px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.stat-card {
    padding: 20px;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent), #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline;
}

.stat-suffix {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--accent);
    display: inline;
}

.stat-label {
    color: var(--text-secondary);
    font-size: .85rem;
    margin-top: 4px;
}

/* ═══════════════════════════════════════════════════ */
/* TESTIMONIALS                                       */
/* ═══════════════════════════════════════════════════ */
.testimonials {
    padding: var(--section-py) 0;
}

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

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all .3s ease;
}

.testimonial-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.testimonial-stars {
    color: var(--orange);
    margin-bottom: 16px;
    font-size: .85rem;
    display: flex;
    gap: 2px;
}

.testimonial-card>p {
    color: var(--text-secondary);
    font-size: .9rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--accent), var(--blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .8rem;
    color: #000;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: .9rem;
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: .78rem;
}

/* ═══════════════════════════════════════════════════ */
/* PRICING                                            */
/* ═══════════════════════════════════════════════════ */
.pricing {
    padding: var(--section-py) 0;
    background: var(--bg-secondary);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
}

.toggle-label {
    font-size: .9rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: color .2s;
}

.toggle-label.active {
    color: var(--text-primary);
}

.toggle-badge {
    background: var(--accent);
    color: #000;
    font-size: .65rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 100px;
    margin-left: 4px;
}

.toggle-switch {
    width: 48px;
    height: 26px;
    background: var(--bg-tertiary);
    border: 2px solid var(--border-hover);
    border-radius: 100px;
    cursor: pointer;
    position: relative;
    transition: all .3s;
}

.toggle-switch:hover {
    border-color: var(--accent);
}

.toggle-dot {
    width: 18px;
    height: 18px;
    background: var(--text-primary);
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: transform .3s;
}

.toggle-switch.active .toggle-dot {
    transform: translateX(22px);
}

.toggle-switch.active {
    background: var(--accent);
    border-color: var(--accent);
}

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

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    position: relative;
    transition: all .3s ease;
}

.pricing-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .2);
}

.pricing-card-popular {
    border-color: var(--accent);
    background: linear-gradient(180deg, rgba(37, 211, 102, .06) 0%, var(--bg-card) 40%);
    transform: scale(1.05);
    z-index: 2;
}

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

.pricing-popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #000;
    font-weight: 800;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 20px;
    border-radius: 100px;
}

.pricing-header {
    margin-bottom: 24px;
}

.pricing-header h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.pricing-header p {
    color: var(--text-muted);
    font-size: .82rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 28px;
}

.price-currency {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-right: 4px;
}

.price-amount {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
}

.price-period {
    font-size: .85rem;
    color: var(--text-muted);
    margin-left: 4px;
}

.pricing-features {
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .85rem;
    color: var(--text-secondary);
}

.pricing-features li i {
    color: var(--accent);
    font-size: .75rem;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════ */
/* FAQ                                                */
/* ═══════════════════════════════════════════════════ */
.faq {
    padding: var(--section-py) 0;
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color .3s;
}

.faq-item:hover {
    border-color: var(--border-hover);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: inherit;
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
}

.faq-question i {
    color: var(--text-muted);
    font-size: .8rem;
    transition: transform .3s;
    flex-shrink: 0;
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .3s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    font-size: .88rem;
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════ */
/* FINAL CTA                                          */
/* ═══════════════════════════════════════════════════ */
.final-cta {
    padding: 120px 0;
    background: radial-gradient(ellipse at center, rgba(37, 211, 102, .08) 0%, transparent 60%);
    position: relative;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.cta-content>p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 32px;
}

.cta-subtext {
    display: block;
    margin-top: 16px;
    font-size: .8rem;
    color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════ */
/* FOOTER                                             */
/* ═══════════════════════════════════════════════════ */
.footer {
    padding: 60px 0 32px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

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

.footer-logo {
    font-size: 1.3rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.footer-logo i {
    color: var(--accent);
}

.footer-brand p {
    color: var(--text-muted);
    font-size: .85rem;
    max-width: 280px;
}

.footer-links h4 {
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    font-size: .85rem;
    margin-bottom: 10px;
    transition: color .2s;
}

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

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: .8rem;
}

/* ═══════════════════════════════════════════════════ */
/* ANIMATIONS                                         */
/* ═══════════════════════════════════════════════════ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ═══════════════════════════════════════════════════ */
/* RESPONSIVE                                         */
/* ═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .pricing-card-popular:hover {
        transform: translateY(-4px);
    }
}

@media (max-width: 768px) {
    :root {
        --section-py: 72px;
    }

    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 15, .95);
        backdrop-filter: blur(16px);
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border-color);
    }

    .pain-grid,
    .solution-grid,
    .testimonials-grid,
    .pricing-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

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

    .steps-grid {
        flex-direction: column;
        gap: 20px;
    }

    .step-connector {
        transform: rotate(90deg);
    }

    .step-card {
        max-width: 100%;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

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

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-proof {
        flex-direction: column;
        gap: 12px;
    }
}