﻿
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1d1d1f;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: #ffffff;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: saturate(180%) blur(20px);
    padding: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    font-size: 26px;
    font-weight: 700;
    color: #1d1d1f;
    letter-spacing: -0.025em;
    background: linear-gradient(135deg, #00C244, #009933);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav-link {
    color: #475569;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 8px;
    transition: all 0.2s ease;
    letter-spacing: -0.022em;
}

    .nav-link:hover {
        color: black;
        color: #00C244;
        border: 1px solid #e2e8f0;
        border-color: #00C244;
        background: rgba(0, 194, 68, 0.05);
    }

.nav-docs {
    color: #00C244;
    background: rgba(0, 194, 68, 0.05);
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 8px;
    transition: all 0.2s ease;
    letter-spacing: -0.022em;
    border: 1px solid #e2e8f0;
    border-color: #00C244;
}

    .nav-docs:hover {
        color: #00C244;
        border: 1px solid #e2e8f0;
        border-color: #00C244;
        background: rgba(0, 194, 68, 0.05);
    }

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 10rem 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.08) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
        pointer-events: none;
    }

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.07;
    letter-spacing: -0.005em;
    color: #1d1d1f;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #000, #333);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(18px, 2.5vw, 28px);
    font-weight: 400;
    line-height: 1.14;
    letter-spacing: 0.007em;
    color: #374151;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.primary-cta {
    background: linear-gradient(135deg, #00C244, #009933);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    letter-spacing: -0.022em;
    min-width: 150px;
    justify-content: center;
    box-shadow: 0 4px 14px 0 rgba(99, 102, 241, 0.25);
}

    .primary-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px 0 rgba(99, 102, 241, 0.35);
    }

.secondary-cta {
    color: #333;
    padding: 16px 32px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    background: white;
    letter-spacing: -0.022em;
}

    .secondary-cta:hover {
        border-color: #333;
        transform: translateY(-2px);
    }

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.device-mockup {
    background: linear-gradient(135deg, #00C244, #009933);
    border-radius: 39px;
    padding: 8px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.1);
    transform: rotateX(5deg) rotateY(-5deg);
    transition: all 0.3s ease;
    width: 320px;
    height: 640px;
    position: relative;
}

    .device-mockup:hover {
        transform: rotateX(0deg) rotateY(0deg) scale(1.02);
    }

.device-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00C244, #009933);
    border-radius: 31px;
    position: relative;
    overflow: hidden;
}

/* Screen Container */
.screen-content {
    padding: 60px 18px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-y: auto;
}

/* Updated Professional Offer Card Styles */
.offer-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 64px;
    position: relative;
    overflow: hidden;
}

    .offer-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(135deg, #00C244, #009933);
        opacity: 0;
        transition: opacity 0.2s ease;
    }

    .offer-card:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
        background: rgba(255, 255, 255, 1);
        border-color: rgba(99, 102, 241, 0.2);
    }

        .offer-card:hover::before {
            opacity: 1;
        }

/* Refined Icon */
.offer-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
}

    .offer-icon::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 10px;
        background: linear-gradient(135deg, #00C244, #009933);
    }

/* Icon Colors - More Professional Gradients */
.icon-shopping {
    background: linear-gradient(135deg, #f59e0b, #f97316);
}

.icon-gaming {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
}

.icon-beauty {
    background: linear-gradient(135deg, #ec4899, #f43f5e);
}

.icon-finance {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
}

.icon-insurance {
    background: linear-gradient(135deg, #06b6d4, #0284c7);
}

/* Content Area - Tighter Typography */
.offer-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.offer-title {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 2px 0;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.offer-subtitle {
    font-size: 12px;
    color: #6b7280;
    margin: 0;
    line-height: 1.3;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    font-weight: 400;
}

/* CTA Button - More Professional */
.offer-cta {
    background: #4f46e5;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(79, 70, 229, 0.2);
    flex-shrink: 0;
    min-width: 70px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: -0.01em;
}

    .offer-cta:hover {
        background: #4338ca;
        transform: translateY(-1px);
        box-shadow: 0 2px 8px rgba(79, 70, 229, 0.25);
    }

    .offer-cta:active {
        transform: translateY(0);
        box-shadow: 0 1px 3px rgba(79, 70, 229, 0.2);
    }

/* Premium Card Styling */
.offer-card.premium {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.06), rgba(245, 158, 11, 0.03));
    border: 1px solid rgba(251, 191, 36, 0.2);
}

    .offer-card.premium::before {
        background: linear-gradient(90deg, #f59e0b, #f97316);
    }

    .offer-card.premium .offer-cta {
        background: linear-gradient(135deg, #f59e0b, #f97316);
        box-shadow: 0 1px 3px rgba(245, 158, 11, 0.2);
    }

        .offer-card.premium .offer-cta:hover {
            background: linear-gradient(135deg, #d97706, #ea580c);
            box-shadow: 0 2px 8px rgba(245, 158, 11, 0.25);
        }

/* Section Styling */
.section {
    padding: 120px 0;
}

.section-dark {
    background: #000000;
    color: #f5f5f7;
    position: relative;
    overflow: hidden;
}

    .section-dark::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
    }

.section-light {
    background: #ffffff;
}

.section-gray {
    background: #f5f5f7;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.003em;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: clamp(18px, 2vw, 21px);
    font-weight: 400;
    line-height: 1.38;
    letter-spacing: 0.011em;
    color: #4b5563;
    max-width: 600px;
    margin: 0 auto;
}

.section-dark .section-subtitle {
    color: #cbd5e1;
}

/* Features Section */
.features-section {
    padding: 120px 0;
    background: #f5f5f7;
}

.features-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 18px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

    .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #000, #555);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 24px;
    float: right;
}

.feature-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.17;
    letter-spacing: 0.009em;
    color: #1d1d1f;
    margin-bottom: 16px;
}

.feature-description {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.47;
    letter-spacing: -0.022em;
    color: #4b5563;
}

/* Platform Section */
.platform-section {
    padding: 120px 0px;
    background: #000000;
    color: #f5f5f7;
    position: relative;
    overflow: hidden;
}

    .platform-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
    }

.platform-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.platform-text h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.003em;
    margin-bottom: 24px;
}

.platform-text p {
    font-size: 21px;
    font-weight: 400;
    line-height: 1.38;
    letter-spacing: 0.011em;
    color: #a1a1a6;
    margin-bottom: 40px;
    text-align: left;
}

.platform-features {
    list-style: none;
}

.platform-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.47;
    letter-spacing: -0.022em;
    color: #f5f5f7;
}

    .platform-feature::before {
        content: '●';
        color: #30d158;
        margin-right: 16px;
        font-size: 12px;
        margin-top: 8px;
    }

.platform-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Image Placeholder */
.image-placeholder {
    background: rgba(245, 245, 247, 0.05);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(245, 245, 247, 0.1);
    width: 100%;
    max-width: 480px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.placeholder-content {
    text-align: center;
    color: #94a3b8;
}

.placeholder-icon {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.placeholder-text {
    font-size: 14px;
    font-weight: 500;
}

/* Process Section */
.process-section {
    padding: 120px 0;
    background: #ffffff;
}

.process-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 32px;
    text-align: center;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 60px;
    margin-top: 80px;
}

.process-step {
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #000, #444);
    color: white;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 28px;
    margin: 0 auto 32px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.step-title {
    font-size: 21px;
    font-weight: 600;
    line-height: 1.19;
    letter-spacing: 0.011em;
    color: #1d1d1f;
    margin-bottom: 16px;
}

.step-description {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.47;
    letter-spacing: -0.022em;
    color: #4b5563;
}

/* Advertisers Section */
.advertisers-section {
    padding: 120px 0px;
    background: #f5f5f7;
}

.advertisers-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 32px;
}

.advertisers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    /*             margin-bottom: 80px;
                                 */
}

.advertisers-text h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.003em;
    color: #1d1d1f;
    margin-bottom: 24px;
}

.advertisers-text p {
    font-size: 21px;
    font-weight: 400;
    line-height: 1.38;
    letter-spacing: 0.011em;
    color: #4b5563;
    margin-bottom: 32px;
    text-align: left;
}

.advertiser-benefits {
    list-style: none;
    margin-bottom: 40px;
}

.advertiser-benefit {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.47;
    letter-spacing: -0.022em;
    color: #1d1d1f;
}

    .advertiser-benefit::before {
        content: '●';
        color: #30d158;
        margin-right: 16px;
        font-size: 12px;
        margin-top: 8px;
    }

.footer-section {
    background-color: #111;
    color: #ddd;
    text-align: center;
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 32px;
    text-align: center;
}

.footer-cta {
    margin-bottom: 60px;
}

    .footer-cta h2 {
        font-size: clamp(28px, 3vw, 32px);
        font-weight: 600;
        line-height: 1.125;
        letter-spacing: 0.004em;
        color: #1d1d1f;
        margin-bottom: 20px;
    }

    .footer-cta p {
        font-size: 19px;
        font-weight: 400;
        line-height: 1.42;
        letter-spacing: 0.012em;
        color: #4b5563;
        margin-bottom: 32px;
    }

.footer-links {
    color: #86868b;
    font-size: 12px;
    letter-spacing: -0.01em;
}

/* Responsive Design */
@media (max-width: 1068px) {
    .platform-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .advertisers-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .nav {
        padding: 0 24px;
    }
}

@media (max-width: 734px) {

    .nav-menu {
        display: none;
    }

    .hero-text h1 {
        font-size: clamp(2.5rem, 5vw, 4rem);
        line-height: 1.125;
        letter-spacing: 0.004em;
    }

    .hero-subtitle {
        font-size: 19px;
        line-height: 1.42;
        letter-spacing: 0.012em;
    }

    .section-title {
        font-size: 32px;
        line-height: 1.125;
        letter-spacing: 0.004em;
    }

    .platform-text h2 {
        font-size: 32px;
        line-height: 1.125;
        letter-spacing: 0.004em;
    }

    .hero-cta-group {
        gap: 16px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .device-mockup {
        width: 280px;
        height: 560px;
    }

    .container {
        padding: 0 24px;
    }

    .hero-content {
        padding: 0 24px;
    }

    .features-content {
        padding: 0 24px;
    }

    .process-content {
        padding: 0 24px;
    }

    .advertisers-content {
        padding: 0 24px;
    }

    .footer-content {
        padding: 0 24px;
    }
}

/* Responsive Design - Tablet */
@media (max-width: 1024px) {
    .screen-content {
        padding: 55px 16px 18px;
        gap: 11px;
    }

    .offer-card {
        padding: 15px;
        gap: 13px;
        min-height: 62px;
    }

    .offer-icon {
        width: 38px;
        height: 38px;
        font-size: 17px;
        border-radius: 9px;
    }

    .offer-title {
        font-size: 13px;
    }

    .offer-subtitle {
        font-size: 11px;
    }

    .offer-cta {
        padding: 9px 15px;
        font-size: 11px;
        min-width: 68px;
        height: 34px;
    }
}

/* Responsive Design - Mobile */
@media (max-width: 768px) {
    .screen-content {
        padding: 50px 14px 16px;
        gap: 10px;
    }

    .offer-card {
        padding: 14px;
        gap: 12px;
        min-height: 60px;
        border-radius: 10px;
    }

    .offer-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
        border-radius: 8px;
    }

    .offer-title {
        font-size: 13px;
    }

    .offer-subtitle {
        font-size: 11px;
    }

    .offer-cta {
        padding: 8px 14px;
        font-size: 11px;
        border-radius: 7px;
        min-width: 65px;
        height: 32px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .screen-content {
        padding: 45px 12px 14px;
        gap: 8px;
    }

    .offer-card {
        padding: 12px;
        gap: 10px;
        min-height: 56px;
    }

    .offer-icon {
        width: 34px;
        height: 34px;
        font-size: 15px;
    }

    .offer-title {
        font-size: 12px;
    }

    .offer-subtitle {
        font-size: 10px;
    }

    .offer-cta {
        padding: 7px 12px;
        font-size: 10px;
        min-width: 60px;
        height: 30px;
    }
}

/* Very Small Mobile */
@media (max-width: 360px) {
    .screen-content {
        padding: 40px 10px 12px;
        gap: 7px;
    }

    .offer-card {
        padding: 10px;
        gap: 8px;
        min-height: 52px;
    }

    .offer-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .offer-title {
        font-size: 11px;
    }

    .offer-subtitle {
        font-size: 9px;
    }

    .offer-cta {
        padding: 6px 10px;
        font-size: 9px;
        min-width: 55px;
        height: 28px;
    }
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: rotateX(5deg) rotateY(-5deg) translateY(0px);
    }

    50% {
        transform: rotateX(5deg) rotateY(-5deg) translateY(-10px);
    }
}

.device-mockup {
    animation: float 6s ease-in-out infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card, .process-step {
    animation: fadeInUp 0.6s ease-out;
}

/* Form Section - Dark theme matching platform-section */
.form-section {
    padding: 120px 0px 360px 0px;
    background: #000000;
    color: #f5f5f7;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 2;
}

/* Section Header - Matching site's typography */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.form-section .section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.003em;
    margin-bottom: 20px;
    color: #f5f5f7;
}

.form-section .section-subtitle {
    font-size: clamp(18px, 2vw, 21px);
    font-weight: 400;
    line-height: 1.38;
    letter-spacing: 0.011em;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
}

/* Tab Switch - Matching hero CTA styling */
.tab-switch {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.tab-btn {
    color: #00C244;
    padding: 16px 32px;
    border: 2px solid rgba(245, 245, 247, 0.1);
    border-radius: 12px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    background: rgba(245, 245, 247, 0.05);
    letter-spacing: -0.022em;
    min-width: 180px;
    text-align: center;
}

    .tab-btn:hover {
        border-color: #00C244;
        background: rgba(99, 102, 241, 0.1);
        transform: translateY(-2px);
    }

    .tab-btn.active {
        background: linear-gradient(135deg, #00C244, #009933);
        color: white;
        border: none;
        box-shadow: 0 4px 14px rgba(99, 102, 241, 0.25);
        transform: translateY(-2px);
    }

/* Form Content */
.form-content {
    position: relative;
}

/* Placeholder State */
.form-placeholder {
    text-align: center;
    padding: 80px 20px;
    color: #64748b;
}

.placeholder-icon {
    font-size: 48px;
    margin-bottom: 24px;
    opacity: 0.6;
}

.form-placeholder p {
    font-size: clamp(18px, 2vw, 21px);
    font-weight: 500;
    line-height: 1.38;
    letter-spacing: 0.011em;
}

/* Form Styling - Matching site's clean aesthetic */
.lead-form {
    display: none;
    background: rgba(245, 245, 247, 0.05);
    backdrop-filter: saturate(180%) blur(20px);
    border: 1px solid rgba(245, 245, 247, 0.1);
    border-radius: 18px;
    padding: 40px;
    position: relative;
}

    .lead-form.active {
        display: block;
        animation: fadeInUp 0.6s ease-out;
    }

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

    .form-intro p {
        font-size: 19px;
        font-weight: 400;
        line-height: 1.42;
        letter-spacing: 0.012em;
        color: #a1a1a6;
    }

/* Form Layout */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

    .form-row.single {
        grid-template-columns: 1fr;
    }

.form-group {
    display: flex;
    flex-direction: column;
}

/* Labels - Matching site's typography */
label {
    font-size: 17px;
    font-weight: 500;
    color: #f5f5f7;
    margin-bottom: 8px;
    letter-spacing: -0.022em;
}

/* Inputs - Clean, minimal styling */
input, select, textarea {
    width: 100%;
    padding: 16px 20px;
    font-size: 17px;
    font-weight: 400;
    border: 1px solid rgba(245, 245, 247, 0.2);
    border-radius: 12px;
    background: rgba(245, 245, 247, 0.05);
    backdrop-filter: saturate(180%) blur(20px);
    color: #f5f5f7;
    transition: all 0.2s ease;
    font-family: inherit;
    -webkit-appearance: none;
    appearance: none;
    letter-spacing: -0.022em;
}

    input:focus, select:focus, textarea:focus {
        outline: none;
        border-color: #6366f1;
        background: rgba(245, 245, 247, 0.08);
        box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    }

    input::placeholder, textarea::placeholder {
        color: #86868b;
        font-weight: 400;
    }

/* Select Styling */
select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23a1a1a6' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 16px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 48px;
    cursor: pointer;
}

/* Textarea */
textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

/* Submit Button - Matching primary CTA */
.submit-button {
    background: linear-gradient(135deg, #00C244, #009933);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    letter-spacing: -0.022em;
    min-width: 200px;
    justify-content: center;
    box-shadow: 0 4px 14px 0 rgba(99, 102, 241, 0.25);
    margin: 24px auto 0;
    width: 100%;
}

    .submit-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px 0 rgba(99, 102, 241, 0.35);
    }

    .submit-button:active {
        transform: translateY(0);
    }

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1068px) {
    .container {
        padding: 0 24px;
    }
}

@media (max-width: 734px) {


    .form-section {
        padding: 80px 0px 360px 0px;
    }

    .container {
        padding: 0 24px;
    }

    .section-header {
        margin-bottom: 60px;
    }

    .form-section .section-title {
        font-size: 32px;
        line-height: 1.125;
        letter-spacing: 0.004em;
    }

    .form-section .section-subtitle {
        font-size: 19px;
        line-height: 1.42;
        letter-spacing: 0.012em;
    }

    .tab-switch {
        gap: 16px;
        margin-bottom: 40px;
    }

    .tab-btn {
        min-width: 150px;
        padding: 14px 24px;
        font-size: 16px;
    }

    .lead-form {
        padding: 32px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-placeholder {
        padding: 60px 20px;
    }

    input, select, textarea {
        padding: 14px 16px;
        font-size: 16px;
    }

    label {
        font-size: 16px;
    }

    .form-intro p {
        font-size: 17px;
    }
}

@media (max-width: 480px) {


    .form-section {
        padding: 60px 0px 360px 0px;
    }

    .container {
        padding: 0 20px;
    }

    .lead-form {
        padding: 24px 20px;
    }

    .tab-btn {
        min-width: 140px;
        padding: 12px 20px;
        font-size: 15px;
    }
}
/* Select Styling - Dark Mode */
select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23a1a1a6' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 16px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 48px;
    cursor: pointer;
}

    select option {
        background-color: #1a1a1a;
        color: #f5f5f7;
        padding: 12px 16px;
        border: none;
    }

        select option:hover {
            background-color: #2a2a2a;
        }

        select option:checked {
            background-color: #6366f1;
            color: #ffffff;
        }

    /* Webkit specific select styling */
    select::-webkit-scrollbar {
        width: 8px;
    }

    select::-webkit-scrollbar-track {
        background: #1a1a1a;
        border-radius: 4px;
    }

    select::-webkit-scrollbar-thumb {
        background: #3a3a3a;
        border-radius: 4px;
    }

        select::-webkit-scrollbar-thumb:hover {
            background: #4a4a4a;
        }

