/* ═══════════════════════════════════════════════════════════
   HOME — Screentext AI marketing landing page
   Palette: #10b981 (green), #3b82f6 (blue), dark bg
═══════════════════════════════════════════════════════════ */

/* ─── Shared tokens ─────────────────────────────────────── */
.gradient-text {
    background: linear-gradient(90deg, #10b981, #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ─── Ambient blobs (home uses a third blob) ────────────── */
.blob-3 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.25) 0%, transparent 70%);
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    z-index: 1;
    pointer-events: none;
    animation: float 16s ease-in-out infinite;
    animation-delay: -3s;
}

/* ─── NAVBAR ────────────────────────────────────────────── */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    padding: 0;
    background: transparent;
    transition: background 0.3s, box-shadow 0.3s;
}
.site-nav.scrolled {
    background: rgba(2, 20, 12, 0.85);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.1rem 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav-logo {
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-decoration: none;
    color: #fff;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.logo-ai {
    background: linear-gradient(90deg, #10b981, #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-left: 0.25rem;
}

.nav-links {
    display: flex;
    gap: 0.25rem;
    flex: 1;
}
.nav-link {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.4rem 0.75rem;
    border-radius: 8px;
    transition: color 0.18s, background 0.18s;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.06); }

.nav-cta { display: flex; align-items: center; gap: 0.6rem; }

.nav-user-pill {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(16,185,129,0.1);
    border: 1px solid rgba(16,185,129,0.2);
    padding: 0.35rem 0.9rem;
    border-radius: 99px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.75);
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.pulse-dot {
    width: 7px; height: 7px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(16,185,129,0.7);
    animation: pulseDot 2s infinite;
    flex-shrink: 0;
}
@keyframes pulseDot {
    0%   { box-shadow: 0 0 0 0 rgba(16,185,129,0.7); }
    70%  { box-shadow: 0 0 0 8px rgba(16,185,129,0); }
    100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); }
}

.btn-nav-ghost, .btn-nav-outline, .btn-nav-primary {
    padding: 0.45rem 1rem;
    border-radius: 9px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.18s;
    white-space: nowrap;
}
.btn-nav-ghost {
    color: rgba(255,255,255,0.7);
    background: none;
}
.btn-nav-ghost:hover { color: #fff; background: rgba(255,255,255,0.07); }
.btn-nav-outline {
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.15);
    background: none;
}
.btn-nav-outline:hover { border-color: rgba(255,255,255,0.3); color: #fff; }
.btn-nav-primary {
    background: linear-gradient(90deg, #10b981, #3b82f6);
    color: #fff;
}
.btn-nav-primary:hover { opacity: 0.88; transform: translateY(-1px); }

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}
.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: rgba(255,255,255,0.7);
    border-radius: 2px;
    transition: all 0.25s;
}
.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 0.75rem 1.5rem 1.25rem;
    background: rgba(2, 20, 12, 0.97);
    border-top: 1px solid rgba(255,255,255,0.06);
    gap: 0.1rem;
}
.mobile-menu.open { display: flex; }
.mobile-link {
    padding: 0.7rem 0;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: color 0.18s;
}
.mobile-link:hover { color: #fff; }
.mobile-link-primary {
    color: #10b981;
    font-weight: 700;
    border-bottom: none;
}
.mobile-divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin: 0.4rem 0; }

/* ─── HERO ──────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 5rem;
    position: relative;
    z-index: 2;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16,185,129,0.08);
    border: 1px solid rgba(16,185,129,0.2);
    padding: 0.3rem 0.85rem;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #10b981;
    margin-bottom: 1.5rem;
}
.eyebrow-dot {
    width: 6px; height: 6px;
    background: #10b981;
    border-radius: 50%;
    animation: pulseDot 2s infinite;
}
.hero-headline {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: #fff;
    margin: 0 0 1.25rem;
}
.hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.55);
    max-width: 560px;
    line-height: 1.65;
    margin: 0 auto 2.25rem;
    font-weight: 300;
}
.hero-actions {
    display: flex;
    gap: 0.85rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(90deg, #10b981, #3b82f6);
    color: #fff;
    padding: 0.85rem 1.75rem;
    border-radius: 14px;
    font-size: 0.975rem;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 0 30px rgba(16,185,129,0.25);
}
.btn-hero-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(16,185,129,0.35);
}
.btn-hero-ghost {
    display: inline-flex;
    align-items: center;
    padding: 0.85rem 1.75rem;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.75);
    font-size: 0.975rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}
.btn-hero-ghost:hover {
    border-color: rgba(255,255,255,0.3);
    color: #fff;
    background: rgba(255,255,255,0.05);
}

/* Stats row */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: center;
}
.stat-item { text-align: center; }
.stat-num {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(90deg, #10b981, #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}
.stat-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    margin-top: 0.2rem;
    font-weight: 500;
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.1);
}

/* Floating badges */
.hero-badges {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.hero-badge {
    position: absolute;
    background: rgba(15,30,20,0.8);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
    padding: 0.45rem 0.9rem;
    border-radius: 99px;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    animation: floatBadge 6s ease-in-out infinite;
}
@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}
.badge-veo    { top: 20%; left: 8%; animation-delay: 0s; }
.badge-agents { top: 30%; right: 7%; animation-delay: 1.5s; }
.badge-img    { bottom: 28%; left: 6%; animation-delay: 3s; }
.badge-auto   { bottom: 25%; right: 9%; animation-delay: 4.5s; }

/* ─── SECTIONS ──────────────────────────────────────────── */
.section {
    position: relative;
    z-index: 2;
    padding: 6rem 2rem;
}
.section-alt {
    background: rgba(255,255,255,0.02);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.section-tag {
    display: inline-block;
    background: rgba(16,185,129,0.1);
    border: 1px solid rgba(16,185,129,0.2);
    color: #10b981;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: 99px;
    margin-bottom: 1rem;
}
.section-title {
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.75rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
}
.section-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.45);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ─── TOOLS GRID ────────────────────────────────────────── */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem;
}
.tool-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: border-color 0.25s, transform 0.25s;
    --mx: 50%; --my: 50%;
    --glow: rgba(16,185,129,0.3);
}
.tool-card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mx) var(--my), var(--glow) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    border-radius: inherit;
}
.tool-card:hover .tool-card-glow { opacity: 1; }
.tool-card:hover {
    border-color: rgba(255,255,255,0.15);
    transform: translateY(-3px);
}
.tool-card-featured {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(16,185,129,0.08) 0%, rgba(30,41,59,0.5) 100%);
    border-color: rgba(16,185,129,0.2);
}
.tool-icon-wrap {
    width: 48px; height: 48px;
    background: color-mix(in srgb, var(--icon-color) 15%, transparent);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    color: var(--icon-color);
    flex-shrink: 0;
}
.tool-icon-wrap svg { width: 24px; height: 24px; }
.tool-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
}
.tool-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.6;
    flex: 1;
}
.tool-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.tag {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.55rem;
    border-radius: 99px;
}
.tool-arrow {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.25);
    align-self: flex-end;
    transition: transform 0.2s, color 0.2s;
}
.tool-card:hover .tool-arrow { color: #10b981; transform: translateX(4px); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.5s, transform 0.5s; }
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* ─── HOW IT WORKS ──────────────────────────────────────── */
.steps-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}
.step-card {
    flex: 1;
    max-width: 280px;
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
}
.step-num {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: #10b981;
    margin-bottom: 0.75rem;
}
.step-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.step-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.5rem;
}
.step-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.6;
    margin: 0;
}
.step-connector {
    width: 60px;
    flex-shrink: 0;
}
.step-connector svg { width: 100%; }

/* ─── PRICING ───────────────────────────────────────────── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    align-items: start;
}
.pricing-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 22px;
    padding: 2rem 1.75rem;
    position: relative;
    transition: transform 0.2s, border-color 0.2s;
}
.pricing-card:hover { transform: translateY(-3px); border-color: rgba(255,255,255,0.15); }
.pricing-card-featured {
    background: linear-gradient(145deg, rgba(16,185,129,0.1) 0%, rgba(59,130,246,0.08) 100%);
    border-color: rgba(16,185,129,0.3);
    box-shadow: 0 0 60px rgba(16,185,129,0.12);
}
.pricing-popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #10b981, #3b82f6);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.28rem 0.85rem;
    border-radius: 99px;
    white-space: nowrap;
}
.pricing-tier {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 0.5rem;
}
.pricing-price { margin-bottom: 0.5rem; }
.price-amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}
.price-period { font-size: 0.9rem; color: rgba(255,255,255,0.35); }
.pricing-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    margin: 0 0 1.25rem;
    line-height: 1.5;
}
.pricing-features {
    list-style: none;
    margin: 0 0 1.75rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}
.pricing-features li {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
}
.pricing-features li.dim { color: rgba(255,255,255,0.25); }

.pricing-credits {
    font-size: 0.85rem;
    font-weight: 700;
    color: #10b981;
    background: rgba(16,185,129,0.1);
    display: inline-block;
    padding: 0.35rem 0.85rem;
    border-radius: 99px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(16,185,129,0.2);
}

/* Credits Refills Section */
.credits-extra {
    margin-top: 5rem;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 4rem;
}
.credits-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2.5rem;
    letter-spacing: -0.01em;
}
.credits-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}
.credit-pack {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 1.5rem;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 200px;
    transition: all 0.2s;
}
.credit-pack:hover {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.1);
}
.pack-name {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 0.5rem;
    font-weight: 700;
}
.pack-amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.25rem;
}
.pack-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #3b82f6;
    margin-bottom: 1.25rem;
}
.btn-pack {
    background: rgba(255,255,255,0.08);
    border: none;
    color: #fff;
    padding: 0.5rem 1.25rem;
    border-radius: 9px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
}
.btn-pack:hover {
    background: #fff;
    color: #000;
}
.credits-note {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
    margin-top: 1rem;
}

.btn-pricing-primary, .btn-pricing-outline {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    box-sizing: border-box;
}
.btn-pricing-primary {
    background: linear-gradient(90deg, #10b981, #3b82f6);
    color: #fff;
}
.btn-pricing-primary:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-pricing-outline {
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.7);
}
.btn-pricing-outline:hover {
    border-color: rgba(255,255,255,0.3);
    color: #fff;
    background: rgba(255,255,255,0.05);
}

/* ─── FINAL CTA ─────────────────────────────────────────── */
.cta-section { padding: 4rem 2rem 5rem; }
.cta-glow-card {
    max-width: 820px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(16,185,129,0.1) 0%, rgba(59,130,246,0.08) 100%);
    border: 1px solid rgba(16,185,129,0.2);
    border-radius: 28px;
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-glow-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.cta-orb-1 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(16,185,129,0.2) 0%, transparent 70%);
    top: -100px; left: -100px;
}
.cta-orb-2 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(59,130,246,0.15) 0%, transparent 70%);
    bottom: -100px; right: -100px;
}
.cta-inner { position: relative; z-index: 1; }
.cta-headline {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    color: #fff;
    margin: 0.75rem 0 0.75rem;
    letter-spacing: -0.02em;
    line-height: 1.15;
}
.cta-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.45);
    margin: 0 auto 2rem;
    max-width: 420px;
}
.cta-buttons { display: flex; gap: 0.85rem; justify-content: center; flex-wrap: wrap; }

/* ─── FOOTER ────────────────────────────────────────────── */
.site-footer {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 3rem 2rem 1.5rem;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 1.5rem;
}
.footer-brand { flex: 1; min-width: 200px; }
.footer-logo {
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    color: #fff;
    display: flex;
    align-items: center;
    margin-bottom: 0.6rem;
}
.footer-tagline { font-size: 0.82rem; color: rgba(255,255,255,0.35); line-height: 1.5; margin: 0; }
.footer-links-group { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 0.5rem; min-width: 120px; }
.footer-col-title {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 0.25rem;
}
.footer-link {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.18s;
}
.footer-link:hover { color: #fff; }
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.25);
    flex-wrap: wrap;
    gap: 0.75rem;
}
.footer-socials { display: flex; gap: 0.5rem; }
.social-btn {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    transition: all 0.18s;
}
.social-btn:hover { background: rgba(255,255,255,0.1); color: #fff; }

/* ─── Responsive ────────────────────────────────────────── */
@media (max-width: 900px) {
    .tools-grid { grid-template-columns: 1fr 1fr; }
    .tool-card-featured { grid-column: span 2; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .steps-row { flex-direction: column; }
    .step-connector { display: none; }
}
@media (max-width: 640px) {
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .hero { padding: 7rem 1.25rem 4rem; }
    .hero-badges { display: none; }
    .tools-grid { grid-template-columns: 1fr; }
    .tool-card-featured { grid-column: span 1; }
    .hero-stats { gap: 1.25rem; }
    .cta-glow-card { padding: 2.5rem 1.5rem; }
    .footer-inner { flex-direction: column; gap: 2rem; }
}
