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

        html {
            scroll-behavior: smooth;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
        html::-webkit-scrollbar {
            display: none;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            line-height: 1.6;
            color: #1A1A1A;
            background: #FFFFFF;
            overflow-x: hidden;
        }

        /* Color system - LIGHT THEME */
        :root {
            --bg-primary: #FFFFFF;
            --bg-secondary: #F8F8FA;
            --bg-tertiary: #F0F0F3;
            --text-primary: #1A1A1A;
            --text-secondary: #555555;
            --text-tertiary: #888888;
            --accent: #FFBB58;
            --accent-glow: rgba(255, 187, 88, 0.15);
            --border: rgba(0, 0, 0, 0.08);
        }

        /* Typography */
        h1 {
            font-size: clamp(48px, 7vw, 64px);
            font-weight: 600;
            line-height: 1.1;
            letter-spacing: -0.02em;
            color: var(--text-primary);
        }

        h2 {
            font-size: clamp(32px, 5vw, 40px);
            font-weight: 600;
            line-height: 1.2;
            letter-spacing: -0.01em;
            color: var(--text-primary);
            margin-bottom: 24px;
        }

        h3 {
            font-size: 18px;
            font-weight: 600;
            line-height: 1.4;
            color: var(--text-primary);
            margin-bottom: 12px;
        }

        body, p, li {
            font-size: 17px;
            font-weight: 400;
            line-height: 1.7;
            color: var(--text-secondary);
        }

        .label {
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--accent);
        }

        a {
            color: var(--accent);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        a:hover {
            color: #FFD080;
        }

        /* Layout */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 32px;
        }

        section {
            padding: 72px 0;
            position: relative;
        }

        @media (max-width: 768px) {
            section {
                padding: 56px 0;
            }
        }

        @media (max-width: 480px) {
            section {
                padding: 40px 0;
            }
        }

        /* Navigation */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: transparent;
            transition: all 0.3s ease;
            padding: 24px 32px;
        }

        header.scrolled {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(8px);
            border-bottom: 1px solid var(--border);
        }

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

        .logo {
            font-size: 20px;
            font-weight: 600;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .logo-sub {
            font-size: 11px;
            font-weight: 400;
            color: var(--text-tertiary);
            display: block;
            margin-top: -4px;
        }

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

        .nav-links a {
            color: var(--text-secondary);
            font-size: 15px;
            font-weight: 400;
            transition: color 0.3s ease;
        }

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

        .nav-cta {
            background: var(--accent);
            color: #FFFFFF;
            padding: 10px 20px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .nav-cta:hover {
            background: #FFD080;
            color: #FFFFFF;
            box-shadow: 0 4px 12px rgba(255, 187, 88, 0.3);
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 14px 28px;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            border: none;
        }

        .btn-primary {
            background: var(--accent);
            color: #FFFFFF;
            box-shadow: 0 2px 16px rgba(255, 187, 88, 0.2);
        }

        .btn-primary:hover {
            background: #FFD080;
            color: #FFFFFF;
            box-shadow: 0 4px 24px rgba(255, 187, 88, 0.3);
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: var(--bg-secondary);
            color: var(--text-primary);
            border: 1px solid var(--border);
        }

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

        /* Hero Section */
        .hero {
            position: relative;
            overflow: hidden;
            min-height: 60vh;
            padding-top: 100px;
            padding-bottom: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(255, 187, 88, 0.05) 0%, rgba(255, 187, 88, 0.02) 100%);
        }

        @media (max-width: 768px) {
            .hero {
                padding-top: 80px;
                padding-bottom: 40px;
            }
        }

        @media (max-width: 480px) {
            .hero {
                padding-top: 60px;
                padding-bottom: 32px;
            }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 700px;
        }

        .hero h1 {
            margin-bottom: 24px;
            animation: fadeInUp 0.8s ease 0.2s backwards;
        }

        .hero p {
            font-size: 20px;
            color: var(--text-secondary);
            margin-bottom: 32px;
            animation: fadeInUp 0.8s ease 0.4s backwards;
        }

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

        /* Pricing Section */
        .pricing {
            background: transparent;
            border-radius: 0;
            padding: 80px 40px;
        }

        .pricing h2 {
            text-align: center;
        }

        .pricing-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .pricing-card {
            background: white;
            border-radius: 12px;
            padding: 40px;
            border: 1px solid var(--border);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .pricing-card .btn {
            margin-top: auto;
            white-space: nowrap;
        }

        .pricing-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
        }

        .pricing-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .pricing-description {
            font-size: 14px;
            color: var(--text-tertiary);
            margin-bottom: 24px;
        }

        .pricing-amount {
            font-size: 32px;
            font-weight: 600;
            margin-bottom: 24px;
            white-space: nowrap;
        }

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

        .pricing-features li {
            font-size: 14px;
            padding: 8px 0;
            border-bottom: 1px solid var(--border);
            display: flex;
            gap: 8px;
        }

        .pricing-features li:last-child {
            border-bottom: none;
        }

        .pricing-features i {
            color: var(--accent);
            flex-shrink: 0;
        }

        /* CTA Section */
        .final-cta {
            text-align: center;
            padding: 60px 40px;
            background: linear-gradient(135deg, rgba(255, 187, 88, 0.1) 0%, rgba(255, 187, 88, 0.05) 100%);
            border-radius: 12px;
            border: 1px solid var(--accent-glow);
            margin: 80px 0;
        }

        .final-cta h2 {
            margin-bottom: 20px;
        }

        /* Partnership Section */
        .partnership-section {
            text-align: center;
            padding: 60px 40px;
            background: linear-gradient(135deg, rgba(255, 187, 88, 0.1) 0%, rgba(255, 187, 88, 0.05) 100%);
            border-radius: 12px;
            border: 1px solid var(--accent-glow);
            margin: 80px 0;
        }

        .partnership-section h2 {
            margin-bottom: 20px;
        }

        .partnership-section p {
            font-size: 18px;
            margin-bottom: 24px;
            color: var(--text-secondary);
        }

        .partnership-content {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .partnership-list {
            display: inline-block;
            text-align: left;
            margin: 0 auto 32px auto;
            padding-left: 24px;
            list-style: disc;
        }

        .partnership-list li {
            font-size: 16px;
            line-height: 1.8;
            color: var(--text-secondary);
        }

        .partnership-content .btn {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            margin: 0 auto;
        }

        .final-cta p {
            font-size: 18px;
            margin-bottom: 32px;
        }

        .final-cta ul {
            list-style: none;
            text-align: left;
            display: inline-block;
            margin-bottom: 32px;
        }

        .final-cta li {
            font-size: 16px;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .final-cta li:before {
            content: "•";
            color: var(--accent);
            font-weight: 600;
            margin-right: 8px;
        }

        /* Footer */
        footer {
            background: var(--text-primary);
            color: #FFFFFF;
            padding: 60px 32px;
            margin-top: 60px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h4 {
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 16px;
            color: var(--accent);
        }

        .footer-section ul {
            list-style: none;
        }

        /* Footer link styling handled by global styles.css */

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 32px;
            text-align: center;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
        }

        /* Animations & Transitions */
        .reveal {
            opacity: 0;
        }

        .reveal.visible {
            opacity: 1;
            animation: slideInUp 0.6s ease forwards;
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .container {
                padding: 0 20px;
            }

            section {
                padding: 60px 0;
            }

            .nav-links {
                gap: 24px;
                font-size: 14px;
            }

            h1 {
                font-size: 36px;
            }

            h2 {
                font-size: 28px;
            }

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

            .pricing-cards {
                grid-template-columns: 1fr;
            }

            .final-cta .btn {
                display: block;
                width: 100%;
            }
        }