:root {
    --ps-blue: #003B8E;
    --ps-blue-dark: #002460;
    --ps-blue-light: #0052CC;
    --ps-green: #00A651;
    --ps-green-dark: #008A43;
    --ps-green-light: #00C962;
    --ps-yellow: #FFD200;
    --ps-white: #FFFFFF;
    --ps-gray-100: #F4F7FA;
    --ps-gray-200: #E2E8F0;
    --ps-gray-800: #1A2332;
    --ps-gray-900: #0D1117;
    --ps-gradient-blue: linear-gradient(135deg, #003B8E 0%, #0052CC 50%, #003B8E 100%);
    --ps-gradient-green: linear-gradient(135deg, #00A651 0%, #00C962 100%);
    --ps-gradient-dark: linear-gradient(180deg, #0D1117 0%, #1A2332 100%);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--ps-gray-900);
    overflow-x: hidden;
    background: var(--ps-white);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--ps-gradient-dark);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 70% 40%, rgba(0, 59, 142, 0.4) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 20% 80%, rgba(0, 166, 81, 0.15) 0%, transparent 50%);
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
}

.hero-glow {
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
    z-index: 1;
}

.hero-glow-1 { background: var(--ps-blue); top: -100px; right: -100px; }
.hero-glow-2 { background: var(--ps-green); bottom: -150px; left: -100px; opacity: 0.15; }

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 100px 24px 60px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 166, 81, 0.15);
    border: 1px solid rgba(0, 166, 81, 0.3);
    color: var(--ps-green-light);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: fadeInDown 0.8s ease-out;
}

.hero-badge .pulse-dot {
    width: 8px; height: 8px;
    background: var(--ps-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-left h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 900;
    color: var(--ps-white);
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero-left h1 .highlight-revenue {
    display: inline;
    background: var(--ps-gradient-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-left h1 .highlight-line {
    position: relative;
    display: inline-block;
}

.hero-left h1 .highlight-line::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 0;
    width: 100%;
    height: 4px;
    background: var(--ps-green);
    border-radius: 2px;
    opacity: 0.6;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 520px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-stats {
    display: flex;
    gap: 32px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-stat {
    text-align: left;
}

.hero-stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--ps-white);
    line-height: 1;
}

.hero-stat-number span {
    color: var(--ps-green);
}

.hero-stat-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.hero-seal {
    margin-top: 28px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-seal img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 16px;
    padding: 6px;
    background: rgba(255, 255, 255, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.25);
}

/* ===== FORM ===== */
.hero-form-wrapper {
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.form-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
}

.form-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--ps-gradient-green);
}

.form-header {
    text-align: center;
    margin-bottom: 28px;
}

.form-header h3 {
    color: var(--ps-white);
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.form-header p {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

.form-urgency {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 210, 0, 0.1);
    border: 1px solid rgba(255, 210, 0, 0.25);
    border-radius: 10px;
    padding: 10px 16px;
    margin-bottom: 24px;
}

.form-urgency svg {
    flex-shrink: 0;
}

.form-urgency span {
    color: var(--ps-yellow);
    font-size: 0.8rem;
    font-weight: 700;
}

.form-group {
    margin-bottom: 14px;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.06);
    color: var(--ps-white);
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input::placeholder {
    color: rgba(255,255,255,0.35);
}

.form-group input:focus, .form-group select:focus {
    border-color: var(--ps-green);
    background: rgba(0, 166, 81, 0.08);
    box-shadow: 0 0 0 3px rgba(0, 166, 81, 0.15);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-group select option {
    background: var(--ps-gray-900);
    color: var(--ps-white);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.city-search-wrapper {
    position: relative;
}

.city-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 200px;
    overflow-y: auto;
    background: var(--ps-gray-900);
    border: 1px solid rgba(255,255,255,0.15);
    border-top: none;
    border-radius: 0 0 12px 12px;
    list-style: none;
    z-index: 100;
    margin: 0;
    padding: 0;
}

.city-dropdown.active {
    display: block;
}

.city-dropdown li {
    padding: 12px 16px;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

.city-dropdown li:hover,
.city-dropdown li.highlighted {
    background: rgba(0, 166, 81, 0.15);
    color: var(--ps-white);
}

.city-dropdown::-webkit-scrollbar {
    width: 6px;
}

.city-dropdown::-webkit-scrollbar-track {
    background: transparent;
}

.city-dropdown::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.15);
    border-radius: 3px;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 12px;
    background: var(--ps-gradient-green);
    color: var(--ps-white);
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    margin-top: 6px;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 166, 81, 0.4);
}

.btn-submit:hover::before {
    left: 100%;
}

.form-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 14px;
    color: rgba(255,255,255,0.35);
    font-size: 0.75rem;
}

/* ===== SOCIAL PROOF BAR ===== */
.social-proof-bar {
    background: var(--ps-blue);
    padding: 20px 0;
    overflow: hidden;
    position: relative;
}

.proof-scroll {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ps-white);
    font-weight: 700;
    font-size: 0.85rem;
    white-space: nowrap;
}

.proof-item svg {
    flex-shrink: 0;
    opacity: 0.8;
}

/* ===== SECTION: POR QUE POINT S ===== */
.section-benefits {
    padding: 100px 24px;
    background: var(--ps-white);
    position: relative;
}

.section-benefits::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 200px; height: 200px;
    background: var(--ps-green);
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.08;
}

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

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 59, 142, 0.08);
    color: var(--ps-blue);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: var(--ps-gray-900);
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-title .green { color: var(--ps-green); }
.section-title .blue { color: var(--ps-blue); }

.section-subtitle {
    font-size: 1.05rem;
    color: #64748B;
    line-height: 1.7;
    max-width: 650px;
    margin-bottom: 56px;
}

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

.benefit-card {
    background: var(--ps-gray-100);
    border-radius: 20px;
    padding: 36px 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 0;
    background: var(--ps-green);
    transition: height 0.4s ease;
    border-radius: 0 0 2px 0;
}

.benefit-card:hover {
    background: var(--ps-white);
    border-color: var(--ps-gray-200);
    box-shadow: 0 20px 60px rgba(0, 59, 142, 0.08);
    transform: translateY(-4px);
}

.benefit-card:hover::before {
    height: 100%;
}

.benefit-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: rgba(0, 166, 81, 0.1);
}

.benefit-card:nth-child(even) .benefit-icon {
    background: rgba(0, 59, 142, 0.1);
}

.benefit-card h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--ps-gray-900);
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 0.9rem;
    color: #64748B;
    line-height: 1.65;
}

/* ===== NUMBERS SECTION ===== */
.section-numbers {
    padding: 80px 24px;
    background: var(--ps-blue);
    position: relative;
    overflow: hidden;
}

.section-numbers::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 600px; height: 600px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.number-card {
    text-align: center;
    padding: 32px 16px;
    border-radius: 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    transition: transform 0.3s ease;
}

.number-card:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.08);
}

.number-value {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--ps-green-light);
    line-height: 1;
    margin-bottom: 8px;
}

.number-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    font-weight: 600;
    line-height: 1.4;
}

/* ===== INVESTMENT SECTION ===== */
.section-investment {
    padding: 100px 24px;
    background: var(--ps-gray-100);
}

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

.investment-info {
    /* text side */
}

.investment-breakdown {
    background: var(--ps-white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--ps-gray-200);
}

.breakdown-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--ps-gray-200);
}

.breakdown-header h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ps-gray-800);
}

.breakdown-header .investment-total {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--ps-green);
}

.breakdown-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px dashed rgba(0,0,0,0.06);
}

.breakdown-item:last-child { border-bottom: none; }

.breakdown-item .label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--ps-gray-800);
    font-weight: 500;
}

.breakdown-item .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--ps-green);
}

.breakdown-item:nth-child(even) .dot { background: var(--ps-blue); }

.breakdown-item .value {
    font-weight: 700;
    color: var(--ps-gray-900);
    font-size: 0.9rem;
}

.roi-highlight {
    margin-top: 28px;
    background: linear-gradient(135deg, rgba(0, 166, 81, 0.08), rgba(0, 59, 142, 0.05));
    border: 1px solid rgba(0, 166, 81, 0.2);
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.roi-highlight .roi-icon {
    width: 48px; height: 48px;
    background: var(--ps-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.roi-highlight .roi-text h5 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--ps-green-dark);
    margin-bottom: 2px;
}

.roi-highlight .roi-text p {
    font-size: 0.82rem;
    color: #64748B;
}

/* ===== SUPORTE SECTION ===== */
.section-support {
    padding: 100px 24px;
    background: var(--ps-white);
}

.support-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 56px;
    position: relative;
}

.support-timeline::before {
    content: '';
    position: absolute;
    top: 40px; left: 10%; right: 10%;
    height: 2px;
    background: var(--ps-gray-200);
}

.timeline-step {
    text-align: center;
    padding: 0 16px;
    position: relative;
}

.step-number {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: var(--ps-blue);
    color: var(--ps-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    border: 4px solid var(--ps-white);
    box-shadow: 0 4px 15px rgba(0, 59, 142, 0.2);
}

.timeline-step:last-child .step-number {
    background: var(--ps-green);
    box-shadow: 0 4px 15px rgba(0, 166, 81, 0.3);
}

.timeline-step h5 {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--ps-gray-900);
    margin-bottom: 8px;
}

.timeline-step p {
    font-size: 0.82rem;
    color: #64748B;
    line-height: 1.6;
}

/* ===== TESTIMONIAL ===== */
.section-testimonial {
    padding: 80px 24px;
    background: var(--ps-gradient-dark);
    position: relative;
    overflow: hidden;
}

.section-testimonial::before {
    content: '"';
    position: absolute;
    top: 20px; left: 50%;
    transform: translateX(-50%);
    font-size: 20rem;
    color: rgba(255,255,255,0.02);
    font-family: Georgia, serif;
    line-height: 1;
}

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

.testimonial-text {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    color: var(--ps-white);
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 32px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--ps-gradient-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--ps-white);
}

.testimonial-author-info h5 {
    color: var(--ps-white);
    font-weight: 700;
    font-size: 1rem;
}

.testimonial-author-info p {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

.testimonial-metric {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 166, 81, 0.15);
    border: 1px solid rgba(0, 166, 81, 0.3);
    color: var(--ps-green-light);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 24px;
}

/* ===== CTA SECTION ===== */
.section-cta {
    padding: 100px 24px;
    background: var(--ps-white);
    text-align: center;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    background: var(--ps-blue);
    border-radius: 32px;
    padding: 64px 48px;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 400px; height: 400px;
    background: rgba(0, 166, 81, 0.15);
    border-radius: 50%;
    filter: blur(80px);
}

.cta-box::after {
    content: '';
    position: absolute;
    bottom: -30%; left: -10%;
    width: 300px; height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-box h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 900;
    color: var(--ps-white);
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.cta-box p {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: var(--ps-gradient-green);
    color: var(--ps-white);
    text-decoration: none;
    border-radius: 14px;
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    border: none;
    cursor: pointer;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 166, 81, 0.4);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--ps-gray-900);
    padding: 32px 24px;
    text-align: center;
}

.footer p {
    color: rgba(255,255,255,0.3);
    font-size: 0.8rem;
}

/* ===== FLOATING CTA (MOBILE) ===== */
.floating-cta {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    padding: 12px 16px;
    background: rgba(13, 17, 23, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,0.1);
    z-index: 1000;
}

.floating-cta .btn-cta {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 0.95rem;
}

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

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 80px;
    }

    .hero-subtitle { margin: 0 auto 32px; }
    .hero-stats { justify-content: center; }
    .hero-seal { text-align: center; }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .numbers-grid { grid-template-columns: repeat(2, 1fr); }
    .investment-grid { grid-template-columns: 1fr; }
    .support-timeline { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .support-timeline::before { display: none; }
}

@media (max-width: 640px) {
    .hero-content { padding: 70px 16px 40px; gap: 40px; }
    .hero-stats { flex-direction: row; gap: 24px; }
    .hero-stat-number { font-size: 1.6rem; }
    .form-card { padding: 28px 20px; }
    .form-row { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr; }
    .numbers-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .support-timeline { grid-template-columns: 1fr; gap: 24px; }
    .cta-box { padding: 48px 24px; border-radius: 24px; }
    .floating-cta { display: block; }
    .proof-scroll { gap: 24px; }
    .section-benefits, .section-investment, .section-support, .section-cta { padding: 64px 16px; }
}
