:root {
    --bg-primary: #0A0F0D;
    --bg-secondary: #111916;
    --bg-card: #151E1A;
    --bg-card-hover: #1A2722;
    --accent: #3DFFA2;
    --accent-dim: #2BB875;
    --accent-glow: rgba(61, 255, 162, 0.15);
    --text-primary: #E8F0EC;
    --text-secondary: #8A9E93;
    --text-muted: #5A6E63;
    --border: rgba(61, 255, 162, 0.1);
    --border-strong: rgba(61, 255, 162, 0.25);
    --orange: #FF8B3D;
    --orange-dim: rgba(255, 139, 61, 0.15);

    /* FUENTE DE HEADINGS — Cambiar aquí para probar:
       Opción A: 'Space Grotesk'
       Opción B: 'Inter'                              */
    --font-heading: 'Space Grotesk', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ===== GRAIN OVERLAY ===== */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
}

/* ===== NAVIGATION ===== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    background: rgba(10, 15, 13, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.logo-icon::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    border: 2.5px solid var(--bg-primary);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.logo-icon::before {
    content: '';
    position: absolute;
    width: 2.5px;
    height: 10px;
    background: var(--bg-primary);
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

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

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
    letter-spacing: 0.01em;
}

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

.nav-cta {
    background: var(--accent) !important;
    color: var(--bg-primary) !important;
    padding: 0.6rem 1.4rem;
    border-radius: 8px;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    transition: all 0.2s !important;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px var(--accent-glow);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 0.5rem;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 8rem 2rem 4rem;
    overflow: hidden;
}

.hero-bg-grid {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        linear-gradient(rgba(61, 255, 162, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(61, 255, 162, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
}

.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(61, 255, 162, 0.08), transparent 70%);
    top: -100px;
    right: -100px;
    pointer-events: none;
}

.hero-glow-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 139, 61, 0.05), transparent 70%);
    bottom: 0;
    left: -100px;
    pointer-events: none;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: var(--orange-dim);
    border: 1px solid rgba(255, 139, 61, 0.3);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--orange);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease both;
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--orange);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 5.5vw, 4.2rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.hero h1 .accent {
    color: var(--accent);
}

.hero-sub {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 480px;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    background: var(--accent);
    color: var(--bg-primary);
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--accent-glow);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-strong);
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
}

.btn-secondary:hover {
    background: var(--bg-card);
    border-color: var(--accent);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-mockup {
    background: var(--bg-card);
    border: 1px solid var(--border-strong);
    border-radius: 16px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-muted);
}

.mockup-dots span:first-child { background: #FF5F57; }
.mockup-dots span:nth-child(2) { background: #FEBC2E; }
.mockup-dots span:last-child { background: #28C840; }

.mockup-title {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.mockup-map {
    background: var(--bg-secondary);
    border-radius: 10px;
    height: 200px;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
}

.map-grid {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        linear-gradient(rgba(61, 255, 162, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(61, 255, 162, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
}

.map-pin {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--accent-glow), 0 0 20px var(--accent-glow);
}

.map-pin.p1 { top: 30%; left: 25%; }
.map-pin.p2 { top: 55%; left: 60%; animation-delay: 0.5s; }
.map-pin.p3 { top: 40%; left: 75%; animation-delay: 1s; }
.map-pin.p4 { top: 70%; left: 35%; animation-delay: 1.5s; }

.map-pin::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    animation: ping 2s infinite;
    opacity: 0;
}

@keyframes ping {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

.map-line {
    position: absolute;
    background: linear-gradient(90deg, var(--accent), transparent);
    height: 1px;
    opacity: 0.3;
}

.map-line.l1 { top: 36%; left: 30%; width: 120px; transform: rotate(15deg); }
.map-line.l2 { top: 58%; left: 40%; width: 80px; transform: rotate(-20deg); }

.mockup-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.stat-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.9rem;
    text-align: center;
}

.stat-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-float-card {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid var(--border-strong);
    border-radius: 12px;
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.8rem;
    animation: float 4s ease-in-out infinite;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.hero-float-card.card-sync {
    bottom: -20px;
    left: -30px;
    z-index: 3;
}

.hero-float-card.card-offline {
    top: 40px;
    right: -20px;
    z-index: 3;
    animation-delay: -2s;
}

.float-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.float-icon.green { background: var(--accent-glow); color: var(--accent); }
.float-icon.orange { background: var(--orange-dim); color: var(--orange); }

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

/* ===== STATS BAR ===== */
.stats-bar {
    padding: 3rem 2rem;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-item-value {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: -0.03em;
}

.stat-item-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.3rem;
}

/* ===== PROBLEM SECTION ===== */
.problem {
    padding: 6rem 2rem;
    position: relative;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 1.2rem;
}

.section-label::before {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--accent);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1.2rem;
    max-width: 700px;
}

.section-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 3rem;
}

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

.problem-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 2rem;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.35s ease,
                box-shadow 0.35s ease;
    position: relative;
    overflow: hidden;
}

.problem-card:hover {
    border-color: rgba(255, 80, 80, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(255, 80, 80, 0.06);
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px;
    height: 100%;
    background: #FF5050;
    opacity: 0.5;
    border-radius: 0 2px 2px 0;
}

.problem-icon {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.problem-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: var(--text-primary);
}

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

/* ===== SOLUTION / FEATURES ===== */
.features {
    padding: 6rem 2rem;
    position: relative;
}

.features-header {
    text-align: center;
    margin-bottom: 4rem;
}

.features-header .section-title {
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
}

.features-header .section-desc {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.35s ease,
                background 0.35s ease,
                box-shadow 0.35s ease;
    position: relative;
}

.feature-card:hover {
    border-color: var(--border-strong);
    background: var(--bg-card-hover);
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(61, 255, 162, 0.06);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    background: var(--accent-glow);
    border: 1px solid var(--border-strong);
}

.feature-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
}

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

.feature-tag {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-dim);
    padding: 0.3rem 0.7rem;
    background: var(--accent-glow);
    border-radius: 6px;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: 6rem 2rem;
    border-top: 1px solid var(--border);
}

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

.step {
    text-align: center;
    position: relative;
}

.step::after {
    content: '→';
    position: absolute;
    right: -1.2rem;
    top: 2rem;
    color: var(--text-muted);
    font-size: 1.2rem;
}

.step:last-child::after {
    display: none;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent-glow);
    border: 1px solid var(--border-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--accent);
    font-size: 1.1rem;
    margin: 0 auto 1rem;
}

.step h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ===== VERTICALS ===== */
.verticals {
    padding: 6rem 2rem;
}

.verticals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 3rem;
}

.vertical-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.35s ease,
                box-shadow 0.35s ease;
}

.vertical-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(61, 255, 162, 0.05);
}

.vertical-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.vertical-card h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.vertical-card p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ===== CTA ===== */
.cta {
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-strong);
    border-radius: 24px;
    padding: 4rem 3rem;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 200px;
    background: radial-gradient(ellipse, var(--accent-glow), transparent 70%);
    pointer-events: none;
}

.cta-box .section-title {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    position: relative;
}

.cta-box .section-desc {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    position: relative;
}

.cta-form {
    display: flex;
    gap: 0.75rem;
    max-width: 460px;
    margin: 0 auto;
    position: relative;
}

.cta-form input {
    flex: 1;
    padding: 0.9rem 1.2rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-strong);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: 'DM Sans', sans-serif;
    outline: none;
    transition: border-color 0.2s;
}

.cta-form input::placeholder {
    color: var(--text-muted);
}

.cta-form input:focus {
    border-color: var(--accent);
}

.cta-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 1rem;
    position: relative;
}

/* ===== FOOTER ===== */
footer {
    padding: 3rem 2rem;
    border-top: 1px solid var(--border);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

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

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

.reveal {
    opacity: 0;
    transform: translateY(40px) scale(0.97);
    filter: blur(4px);
    transition:
        opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

/* Stagger: cards dentro de grids entran en cascada */
.problem-card.reveal:nth-child(1),
.feature-card.reveal:nth-child(1),
.step.reveal:nth-child(1),
.vertical-card.reveal:nth-child(1),
.stat-item.reveal:nth-child(1) { transition-delay: 0ms; }

.problem-card.reveal:nth-child(2),
.feature-card.reveal:nth-child(2),
.step.reveal:nth-child(2),
.vertical-card.reveal:nth-child(2),
.stat-item.reveal:nth-child(2) { transition-delay: 80ms; }

.problem-card.reveal:nth-child(3),
.feature-card.reveal:nth-child(3),
.step.reveal:nth-child(3),
.vertical-card.reveal:nth-child(3),
.stat-item.reveal:nth-child(3) { transition-delay: 160ms; }

.problem-card.reveal:nth-child(4),
.feature-card.reveal:nth-child(4),
.step.reveal:nth-child(4),
.vertical-card.reveal:nth-child(4),
.stat-item.reveal:nth-child(4) { transition-delay: 240ms; }

.feature-card.reveal:nth-child(5),
.vertical-card.reveal:nth-child(5) { transition-delay: 320ms; }

.feature-card.reveal:nth-child(6),
.vertical-card.reveal:nth-child(6) { transition-delay: 400ms; }

.vertical-card.reveal:nth-child(7) { transition-delay: 480ms; }
.vertical-card.reveal:nth-child(8) { transition-delay: 560ms; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

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

    .step::after {
        display: none;
    }

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

@media (max-width: 768px) {
    nav { padding: 0.8rem 1.2rem; }

    .nav-links { display: none; }

    .mobile-menu-btn { display: block; }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-primary);
        border-bottom: 1px solid var(--border);
        padding: 1.5rem;
        gap: 1rem;
    }

    .hero { padding: 7rem 1.5rem 3rem; min-height: auto; }

    .hero-float-card { display: none; }

    .stats-bar-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

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

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

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

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

    .cta-box {
        padding: 3rem 1.5rem;
    }

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