        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: white;
            color: #1A1A1A;
        }

        /* Navigation */
        .navbar {
            background: white;
            padding: 16px 60px;
            border: 1px solid #E5E5E5;
            border-radius: 20px;
            margin: 16px 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            box-shadow: 0 2px 8px rgba(0,0,0,0.04);
        }

.logo img {
    height: 40px;
    width: auto;
}

        .nav-links {
            display: flex;
            gap: 36px;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: #666;
            font-size: 15px;
            font-weight: 400;
            transition: color 0.3s;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: #2B7EFF;
        }

        .btn-partner {
            background: #2B7EFF;
            color: white;
            padding: 12px 28px;
            border: none;
            border-radius: 50px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #1A1A1A;
        }

        /* Hero Section */
        .hero-section {
            padding: 80px 80px 60px;
            text-align: center;
        }

        .section-badge {
            display: inline-block;
            padding: 10px 28px;
            border: 2px solid #2B7EFF;
            border-radius: 50px;
            color: #2B7EFF;
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 32px;
            letter-spacing: 1px;
        }

        .hero-title {
            font-size: 52px;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 32px;
            max-width: 1100px;
            margin-left: auto;
            margin-right: auto;
        }

        .highlight {
            color: #2B7EFF;
        }

        .hero-description {
            font-size: 18px;
            line-height: 1.8;
            color: #555;
            max-width: 1000px;
            margin: 0 auto 60px;
        }

        /* Stats Section */
        .stats-section {
            padding: 60px 80px;
            background: white;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .stat-card {
            border-radius: 24px;
            padding: 50px 40px;
            text-align: center;
            box-shadow: 0 4px 16px rgba(0,0,0,0.08);
            transition: transform 0.3s;
        }

        .stat-card:hover {
            transform: translateY(-8px);
        }

        .stat-card:nth-child(1) {
            background: linear-gradient(135deg, #FFE6F0 0%, #FFD1E8 100%);
        }

        .stat-card:nth-child(2) {
            background: linear-gradient(135deg, #E6FFF7 0%, #B3FFE6 100%);
        }

        .stat-card:nth-child(3) {
            background: linear-gradient(135deg, #FFF4E6 0%, #FFECCF 100%);
        }

        .stat-number {
            font-size: 80px;
            font-weight: 900;
            line-height: 1;
            margin-bottom: 20px;
        }

        .stat-text {
            font-size: 20px;
            font-weight: 700;
            line-height: 1.4;
        }

        /* Pilot Program Section */
        .pilot-section {
            padding: 80px 80px;
            background: #F8F8F8;
        }

        .pilot-title {
            font-size: 32px;
            font-weight: 800;
            text-align: center;
            margin-bottom: 50px;
        }

        .pilot-gallery {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto 40px;
        }

        .pilot-image {
            width: 100%;
            height: 300px;
            border-radius: 24px;
            object-fit: cover;
            transition: transform 0.3s;
        }

        .pilot-image:nth-child(1) {
            border: 4px solid #FFE6B3;
        }

        .pilot-image:nth-child(2) {
            border: 4px solid #D1E8FF;
        }

        .pilot-image:nth-child(3) {
            border: 4px solid #FFD1E8;
        }

        .pilot-image:hover {
            transform: scale(1.05);
        }

        .pilot-description {
            max-width: 1000px;
            margin: 0 auto 30px;
            font-size: 16px;
            line-height: 1.8;
            color: #555;
        }

        .pilot-quote {
            max-width: 900px;
            margin: 30px auto;
            padding: 30px;
            background: white;
            border-left: 4px solid #2B7EFF;
            border-radius: 12px;
            font-style: italic;
            font-size: 17px;
            line-height: 1.6;
        }

        .pilot-quote strong {
            color: #2B7EFF;
            font-style: normal;
        }

        .pilot-btn {
            display: block;
            margin: 0 auto;
            background: #2B7EFF;
            color: white;
            padding: 14px 32px;
            border: none;
            border-radius: 50px;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
        }

        .pilot-btn:hover {
            background: #1a6de6;
            transform: translateY(-2px);
        }

        /* Partners Section */
        .partners-section {
            padding: 80px 80px;
            background: white;
        }

        .partners-title {
            font-size: 32px;
            font-weight: 800;
            text-align: center;
            margin-bottom: 50px;
        }

        .partner-card {
            max-width: 600px;
            margin: 0 auto;
            background: white;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0,0,0,0.08);
            display: grid;
            grid-template-columns: 150px 1fr;
        }

        .partner-label {
            background: linear-gradient(135deg, #D1E8FF 0%, #B3D9FF 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 30px;
            writing-mode: vertical-lr;
            text-orientation: mixed;
            font-size: 24px;
            font-weight: 800;
        }

        .partner-content {
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .partner-name {
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 8px;
        }

        .partner-type {
            font-size: 16px;
            color: #666;
            font-style: italic;
        }

        .partners-note {
            text-align: center;
            font-size: 16px;
            font-style: italic;
            color: #555;
            margin-top: 30px;
        }

        /* Future Partners CTA */
        .future-cta {
            padding: 60px 80px;
            margin: 60px 80px;
            background: linear-gradient(135deg, #2B7EFF 0%, #1a6de6 100%);
            border-radius: 48px;
            text-align: center;
        }

        .cta-badge {
            display: inline-block;
            padding: 10px 28px;
            background: white;
            border-radius: 50px;
            color: #2B7EFF;
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 24px;
            letter-spacing: 1px;
        }

        .cta-title {
            color: white;
            font-size: 36px;
            font-weight: 800;
            margin-bottom: 16px;
        }

        .cta-subtitle {
            color: white;
            font-size: 18px;
            margin-bottom: 32px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .btn-white {
            background: white;
            color: #2B7EFF;
            padding: 14px 32px;
            border: none;
            border-radius: 50px;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-white:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(255,255,255,0.3);
        }

/* Footer */
        .footer {
            background: #2C2C2C;
            color: white;
            padding: 60px 80px 30px;
        }

        .footer-cta {
            background: white;
            border-radius: 28px;
            padding: 40px 50px;
            margin-bottom: 50px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .footer-cta h3 {
            color: #2B7EFF;
            font-size: 28px;
            font-weight: 800;
            max-width: 600px;
        }

        .btn-cta {
            background: #2B7EFF;
            color: white;
            padding: 14px 32px;
            border: none;
            border-radius: 50px;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            white-space: nowrap;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1.2fr 2fr;
            gap: 60px;
            margin-bottom: 40px;
        }

        .footer-brand p {
            color: #999;
            margin: 20px 0;
            line-height: 1.6;
        }

        .social-links h4 {
            font-size: 15px;
            margin-bottom: 14px;
            font-weight: 600;
        }

        .social-icons {
            display: flex;
            gap: 10px;
        }

        .social-icon {
            width: 36px;
            height: 36px;
            background: #2B7EFF;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 16px;
        }

        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .footer-column a,
        .footer-column p {
            display: block;
            color: #999;
            text-decoration: none;
            margin-bottom: 14px;
            font-size: 14px;
        }

        .footer-column a:hover {
            color: white;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #444;
            font-size: 13px;
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #1A1A1A;
        }

.mobile-only {
    display: none;
}

/* Tablets and below */
@media (max-width: 1024px) {
    /* Navbar */
    .navbar {
        margin: 16px 20px;
        padding: 16px 24px;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 20px;
        right: 20px;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        border-radius: 16px;
        z-index: 1000;
        gap: 16px;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-only {
        display: block;
    }

    .btn-partner {
        display: none;
    }

    /* Hero */
    .hero-section {
        padding: 50px 30px;
    }
    .hero-title {
        font-size: 36px;
    }
    .hero-description {
        font-size: 16px;
    }

    /* Sections with grids */
    .steps-section,
    .difference-section,
    .works-section {
        padding: 50px 30px;
    }
    .steps-grid,
    .works-grid,
    .difference-grid,
    .diff-card {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Practice section */
    .practice-section {
        padding: 40px 30px;
        margin: 40px 20px;
    }
    .practice-text {
        font-size: 24px;
    }

    /* Footer */
    .footer {
        padding: 50px 30px 30px;
    }
    .footer-cta {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 30px;
    }
    .footer-cta h3 {
        font-size: 22px;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Small tablets / large phones */
@media (max-width: 768px) {
    /* Hero */
    .hero-section {
        padding: 40px 20px;
    }
    .hero-title {
        font-size: 28px;
    }
    .hero-description {
        font-size: 16px;
    }
    .section-badge,
    .steps-badge {
        font-size: 12px;
        padding: 8px 20px;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .stat-card {
        padding: 30px 20px;
    }
    .stat-number {
        font-size: 48px;
    }
    .stat-text {
        font-size: 16px;
    }

    /* Pilot Program */
    .pilot-section {
        padding: 40px 20px;
    }
    .pilot-title {
        font-size: 24px;
    }
    .pilot-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .pilot-image {
        height: 200px;
    }
    .pilot-description {
        font-size: 15px;
    }
    .pilot-quote {
        font-size: 15px;
        padding: 20px;
    }
    .pilot-btn {
        padding: 12px 28px;
        font-size: 14px;
    }

    /* Partners */
    .partners-section {
        padding: 40px 20px;
    }
    .partners-title {
        font-size: 24px;
    }
    .partner-card {
        grid-template-columns: 1fr;
    }
    .partner-label {
        padding: 20px;
        font-size: 18px;
        writing-mode: horizontal-tb; /* mobile-friendly */
        text-orientation: initial;
    }
    .partner-content {
        padding: 20px;
    }
    .partner-name {
        font-size: 20px;
    }
    .partner-type {
        font-size: 14px;
    }
    .partners-note {
        font-size: 14px;
    }

    /* Future CTA */
    .future-cta {
        padding: 30px 20px;
        margin: 30px 20px;
        border-radius: 24px;
    }
    .cta-badge {
        font-size: 12px;
        padding: 6px 16px;
    }
    .cta-title {
        font-size: 24px;
    }
    .cta-subtitle {
        font-size: 15px;
    }
    .btn-white {
        padding: 12px 28px;
        font-size: 14px;
    }
}