/* ===== LANDING PAGE V2 — Light Theme (Teal/Green) ===== */

.landing-body {
    background: #F8FAFB;
    overflow-x: hidden;
}

/* ---- Navigation ---- */
.landing-body .landing-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid #E2E8F0;
    z-index: 1000;
    padding: 0 40px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.landing-body .landing-nav.scrolled {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.landing-body .landing-nav .brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    z-index: 10;
}

.landing-body .landing-nav .brand-icon {
    width: 38px; height: 38px;
    background: linear-gradient(135deg, #0D9488, #2DD4BF);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 18px;
}

.landing-body .landing-nav .brand-name {
    font-size: 18px;
    font-weight: 700;
    color: #1E293B;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #1E293B;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    padding: 8px;
}

.landing-body .nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.landing-body .nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: #64748B;
    text-decoration: none;
    transition: all 0.2s ease;
}

.landing-body .nav-links a:hover {
    color: #0D9488;
}

.btn-accent {
    background: linear-gradient(135deg, #0D9488, #2DD4BF) !important;
    color: #fff !important;
    border: none !important;
    font-weight: 600 !important;
    padding: 8px 20px !important;
    border-radius: 8px !important;
}

.btn-accent:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.landing-body .nav-links .btn-outline-light {
    color: #0D9488 !important;
    border-color: #0D9488 !important;
}

.landing-body .nav-links .btn-outline-light:hover {
    background: #0D9488 !important;
    color: #fff !important;
}

.nav-btn {
    padding: 8px 20px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
}

/* ---- Hero V2 ---- */
.landing-hero-v2 {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 40px 80px;
    overflow: hidden;
    background: linear-gradient(180deg, #F0FDFA 0%, #F8FAFB 100%);
}

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

.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
}

.orb-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, #CCFBF1 0%, transparent 70%);
    top: -200px; right: -100px;
    animation: orbFloat 8s ease-in-out infinite;
}

.orb-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, #99F6E4 0%, transparent 70%);
    bottom: -100px; left: -100px;
    animation: orbFloat 10s ease-in-out infinite reverse;
}

.orb-3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, #A5F3FC 0%, transparent 70%);
    top: 40%; left: 50%;
    opacity: 0.2;
    animation: orbFloat 12s ease-in-out infinite;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(13,148,136,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(13,148,136,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: #CCFBF1;
    border: 1px solid #99F6E4;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    color: #0F766E;
    margin-bottom: 28px;
}

.badge-dot {
    width: 8px; height: 8px;
    background: #0D9488;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.landing-hero-v2 h1 {
    font-size: 56px;
    font-weight: 900;
    color: #1E293B;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.gradient-text {
    background: linear-gradient(135deg, #0D9488, #0F766E, #115E59);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: #64748B;
    line-height: 1.7;
    max-width: 620px;
    margin: 0 auto 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.btn-hero-primary {
    padding: 16px 36px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    border-radius: 12px !important;
    background: linear-gradient(135deg, #0D9488, #0F766E) !important;
    color: #fff !important;
    border: none !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 20px rgba(13, 148, 136, 0.3) !important;
}

.btn-hero-primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 30px rgba(13, 148, 136, 0.4) !important;
}

.btn-hero-secondary {
    padding: 16px 36px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    border-radius: 12px !important;
    background: #fff !important;
    color: #1E293B !important;
    border: 1px solid #E2E8F0 !important;
    transition: all 0.3s ease !important;
}

.btn-hero-secondary:hover {
    background: #F1F5F9 !important;
    border-color: #CBD5E1 !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06) !important;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

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

.stat-number {
    font-size: 28px;
    font-weight: 800;
    color: #0D9488;
}

.stat-label {
    font-size: 13px;
    color: #94A3B8;
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: #E2E8F0;
}

/* ---- Mockup Window ---- */
.hero-mockup {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    perspective: 1000px;
}

.mockup-window {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #E2E8F0;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,0,0,0.03);
    transform: rotateX(3deg);
    transition: transform 0.5s ease;
}

.mockup-window:hover {
    transform: rotateX(0deg);
}

.mockup-topbar {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 20px;
    background: #F8FAFB;
    border-bottom: 1px solid #E2E8F0;
}

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

.mockup-dots span {
    width: 10px; height: 10px;
    border-radius: 50%;
}

.mockup-dots span:nth-child(1) { background: #EF4444; }
.mockup-dots span:nth-child(2) { background: #F59E0B; }
.mockup-dots span:nth-child(3) { background: #10B981; }

.mockup-url {
    flex: 1;
    text-align: center;
    font-size: 12px;
    color: #94A3B8;
    background: #F1F5F9;
    padding: 6px 16px;
    border-radius: 8px;
}

.mockup-body {
    display: flex;
    min-height: 280px;
}

.mockup-sidebar {
    width: 56px;
    background: #F8FAFB;
    border-right: 1px solid #E2E8F0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 0;
    gap: 8px;
}

.m-item {
    width: 36px; height: 36px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: #94A3B8;
    font-size: 16px;
    transition: all 0.2s;
}

.m-item.active {
    background: linear-gradient(135deg, #0D9488, #2DD4BF);
    color: #fff;
}

.mockup-content {
    flex: 1;
    padding: 24px;
    background: #fff;
}

.mockup-stat-row {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.m-stat {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #F8FAFB;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    padding: 14px 16px;
}

.m-stat-icon {
    width: 36px; height: 36px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
}

.m-stat-icon.teal { background: #CCFBF1; color: #0D9488; }
.m-stat-icon.blue { background: #DBEAFE; color: #2563EB; }
.m-stat-icon.green { background: #D1FAE5; color: #059669; }

.m-stat-val {
    font-size: 20px;
    font-weight: 800;
    color: #1E293B;
    line-height: 1;
}

.m-stat-lbl {
    font-size: 11px;
    color: #94A3B8;
    margin-top: 2px;
}

.mockup-chart {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 120px;
    padding: 16px 0;
}

.chart-bar {
    flex: 1;
    background: #CCFBF1;
    border-radius: 6px 6px 0 0;
    transition: all 0.3s ease;
}

.chart-bar.active {
    background: linear-gradient(to top, #0D9488, #2DD4BF);
}

.chart-bar:hover {
    background: #99F6E4;
}

/* ---- Section Headers ---- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background: #CCFBF1;
    border: 1px solid #99F6E4;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #0F766E;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 38px;
    font-weight: 800;
    color: #1E293B;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 16px;
    color: #64748B;
    max-width: 560px;
    margin: 0 auto;
}

/* ---- Features V2 ---- */
.landing-features-v2 {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.feature-card-v2 {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 32px 28px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card-v2::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13,148,136,0.03), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card-v2:hover {
    border-color: #99F6E4;
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(13,148,136,0.08);
}

.feature-card-v2:hover::before { opacity: 1; }

.feature-icon-v2 {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.feature-icon-v2.icon-teal { background: #CCFBF1; color: #0D9488; }
.feature-icon-v2.icon-blue { background: #DBEAFE; color: #2563EB; }
.feature-icon-v2.icon-green { background: #D1FAE5; color: #059669; }
.feature-icon-v2.icon-amber { background: #FEF3C7; color: #D97706; }
.feature-icon-v2.icon-purple { background: #EDE9FE; color: #7C3AED; }
.feature-icon-v2.icon-rose { background: #FFE4E6; color: #E11D48; }

.feature-card-v2 h3 {
    font-size: 17px;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.feature-card-v2 p {
    font-size: 14px;
    color: #64748B;
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 1;
}

.feature-tag {
    display: inline-block;
    margin-top: 16px;
    padding: 3px 10px;
    background: #F1F5F9;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

/* ---- Professionals ---- */
.landing-professionals {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
    background: transparent;
}

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

.prof-card {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.prof-card:hover {
    border-color: #99F6E4;
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(13,148,136,0.08);
}

.prof-icon {
    width: 64px; height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, #CCFBF1, #F0FDFA);
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
    color: #0D9488;
    margin: 0 auto 20px;
}

.prof-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 8px;
}

.prof-card p {
    font-size: 14px;
    color: #64748B;
    line-height: 1.6;
    margin: 0;
}

/* ---- Pricing V2 ---- */
.landing-pricing-v2 {
    padding: 100px 40px;
    background: #F1F5F9;
}

.pricing-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card-v2 {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 40px 32px;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card-v2:hover {
    border-color: #CBD5E1;
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}

.pricing-card-v2.featured {
    border-color: #0D9488;
    box-shadow: 0 0 0 1px #0D9488, 0 10px 40px rgba(13,148,136,0.1);
}

.pricing-popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: linear-gradient(135deg, #0D9488, #0F766E);
    color: #fff;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.pricing-card-header {
    text-align: center;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid #E2E8F0;
}

.pricing-card-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 16px;
}

.price-v2 {
    font-size: 48px;
    font-weight: 900;
    color: #1E293B;
    line-height: 1;
    margin-bottom: 8px;
}

.price-cents {
    font-size: 24px;
    font-weight: 700;
    vertical-align: super;
}

.price-period {
    font-size: 16px;
    font-weight: 400;
    color: #94A3B8;
}

.price-desc-v2 {
    font-size: 14px;
    color: #64748B;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}

.pricing-features li {
    padding: 10px 0;
    font-size: 14px;
    color: #64748B;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li i {
    color: #0D9488;
    font-size: 16px;
    flex-shrink: 0;
}

.pricing-features li strong {
    color: #1E293B;
}

.btn-pricing-primary {
    padding: 14px 28px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    border-radius: 12px !important;
    background: linear-gradient(135deg, #0D9488, #0F766E) !important;
    color: #fff !important;
    border: none !important;
    transition: all 0.3s ease !important;
}

.btn-pricing-primary:hover {
    box-shadow: 0 4px 20px rgba(13, 148, 136, 0.3) !important;
    transform: translateY(-2px) !important;
}

.btn-pricing-outline {
    padding: 14px 28px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    border-radius: 12px !important;
    background: transparent !important;
    color: #0D9488 !important;
    border: 1px solid #E2E8F0 !important;
    transition: all 0.3s ease !important;
}

.btn-pricing-outline:hover {
    background: #F0FDFA !important;
    border-color: #0D9488 !important;
}

.pricing-extra-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.extra-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #64748B;
}

.extra-info-item i {
    color: #0D9488;
    font-size: 18px;
}

/* ---- Payment Methods ---- */
.landing-payment {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto 48px;
}

.payment-card {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.payment-card:hover {
    border-color: #99F6E4;
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(13,148,136,0.08);
}

.payment-icon {
    width: 72px; height: 72px;
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    font-size: 32px;
    margin: 0 auto 24px;
}

.pix-icon { background: #D1FAE5; color: #059669; }
.boleto-icon { background: #DBEAFE; color: #2563EB; }
.card-icon { background: #EDE9FE; color: #7C3AED; }

.payment-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 12px;
}

.payment-card p {
    font-size: 14px;
    color: #64748B;
    line-height: 1.7;
    margin-bottom: 20px;
}

.payment-badge {
    display: inline-block;
    padding: 4px 14px;
    background: #CCFBF1;
    border: 1px solid #99F6E4;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #0F766E;
}

.payment-security {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #64748B;
}

.security-item i {
    color: #0D9488;
    font-size: 18px;
}

/* ---- Tech Stack ---- */
.landing-tech {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.tech-item {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    padding: 28px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.tech-item:hover {
    border-color: #99F6E4;
    box-shadow: 0 4px 16px rgba(13,148,136,0.06);
}

.tech-item i {
    font-size: 28px;
    color: #0D9488;
    margin-bottom: 14px;
    display: block;
}

.tech-item h5 {
    font-size: 15px;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 6px;
}

.tech-item p {
    font-size: 13px;
    color: #94A3B8;
    margin: 0;
}

/* ---- CTA V2 ---- */
.landing-cta-v2 {
    position: relative;
    padding: 120px 40px;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0F766E, #0D9488, #14B8A6);
}

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

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.cta-orb-1 {
    width: 500px; height: 500px;
    background: rgba(45,212,191,0.25);
    top: -150px; right: -100px;
}

.cta-orb-2 {
    width: 400px; height: 400px;
    background: rgba(204,251,241,0.15);
    bottom: -200px; left: -100px;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.cta-content p {
    font-size: 17px;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 36px;
}

.landing-cta-v2 .btn-hero-primary {
    background: #fff !important;
    color: #0F766E !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15) !important;
}

.landing-cta-v2 .btn-hero-primary:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.2) !important;
}

.landing-cta-v2 .btn-hero-secondary {
    background: rgba(255,255,255,0.1) !important;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,0.25) !important;
}

.landing-cta-v2 .btn-hero-secondary:hover {
    background: rgba(255,255,255,0.2) !important;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---- Footer V2 ---- */
.landing-footer-v2 {
    border-top: 1px solid #E2E8F0;
    padding: 48px 40px;
    background: #fff;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1E293B;
    font-size: 16px;
    font-weight: 700;
}

.footer-brand .brand-icon {
    width: 32px; height: 32px;
    background: linear-gradient(135deg, #0D9488, #2DD4BF);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 14px;
    color: #64748B;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover { color: #0D9488; }

.footer-copy {
    font-size: 13px;
    color: #94A3B8;
}

/* ---- Animations ---- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Responsive ---- */
@media (max-width: 992px) {
    .features-grid-v2,
    .professionals-grid,
    .pricing-grid-v2,
    .payment-grid,
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .landing-hero-v2 h1 {
        font-size: 42px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .mockup-stat-row {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .landing-body .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0; right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid #E2E8F0;
    }

    .landing-body .nav-links.show {
        display: flex;
    }

    .landing-body .landing-nav {
        padding: 0 20px;
    }

    .landing-hero-v2 {
        padding: 120px 20px 60px;
    }

    .landing-hero-v2 h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-number {
        font-size: 22px;
    }

    .hero-mockup {
        display: none;
    }

    .features-grid-v2,
    .professionals-grid,
    .pricing-grid-v2,
    .payment-grid,
    .tech-grid {
        grid-template-columns: 1fr;
    }

    .landing-features-v2,
    .landing-professionals,
    .landing-pricing-v2,
    .landing-payment,
    .landing-tech,
    .landing-cta-v2 {
        padding: 60px 20px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .pricing-extra-info,
    .payment-security {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .cta-content h2 {
        font-size: 30px;
    }

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}
