
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.5;
            color: #1e293b;
            background: #ffffff;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Navigation */
        nav {
            padding: 24px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            border-bottom: 1px solid #e2e8f0;
        }

        .logo {
            font-size: 24px;
            font-weight: 800;
            color: #0f172a;
            letter-spacing: -0.5px;
        }

        .logo span {
            color: #3b82f6;
        }

        .nav-cta {
            background: #3b82f6;
            color: white;
            padding: 10px 20px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
        }

        /* Hero */
        .hero {
            padding: 60px 0 40px;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .hero-badge {
            display: inline-block;
            background: #eff6ff;
            color: #3b82f6;
            font-weight: 600;
            font-size: 14px;
            padding: 6px 16px;
            border-radius: 40px;
            margin-bottom: 24px;
            border: 1px solid #bfdbfe;
        }

        h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: -0.02em;
            color: #0f172a;
            margin-bottom: 24px;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: #475569;
            max-width: 600px;
            margin: 0 auto 32px;
        }

        /* Proof Strip */
        .proof-strip {
            background: #f8fafc;
            border-radius: 80px;
            padding: 24px 32px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            gap: 30px;
            margin: 40px 0;
            border: 1px solid #e2e8f0;
        }

        .proof-item {
            text-align: center;
            flex: 1;
            min-width: 140px;
        }

        .proof-number {
            font-size: 28px;
            font-weight: 800;
            color: #3b82f6;
            margin-bottom: 4px;
        }

        .proof-label {
            font-size: 14px;
            color: #64748b;
            font-weight: 500;
        }

        /* Case Study Cards */
        .case-studies {
            margin: 80px 0;
        }

        .section-title {
            font-size: 32px;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 16px;
            text-align: center;
        }

        .section-subtitle {
            text-align: center;
            color: #475569;
            max-width: 600px;
            margin: 0 auto 48px;
        }

        .case-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
        }

        .case-card {
            background: white;
            border-radius: 24px;
            padding: 32px;
            border: 1px solid #e2e8f0;
            transition: all 0.2s;
        }

        .case-card:hover {
            box-shadow: 0 20px 40px -12px rgba(0,0,0,0.1);
            border-color: #3b82f6;
        }

        .case-icon {
            width: 56px;
            height: 56px;
            background: #eff6ff;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #3b82f6;
            font-size: 28px;
            margin-bottom: 24px;
        }

        .case-quote {
            font-size: 18px;
            font-weight: 600;
            color: #0f172a;
            margin-bottom: 16px;
            line-height: 1.4;
        }

        .case-result {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #059669;
            font-weight: 600;
            font-size: 15px;
            margin: 16px 0;
        }

        .case-detail {
            color: #475569;
            font-size: 14px;
            border-top: 1px solid #e2e8f0;
            padding-top: 16px;
            margin-top: 16px;
        }

        /* What You Get */
        .features {
            background: #f8fafc;
            border-radius: 40px;
            padding: 60px 40px;
            margin: 60px 0;
        }

        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .feature-item {
            display: flex;
            gap: 16px;
        }

        .feature-icon-small {
            width: 48px;
            height: 48px;
            background: white;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #3b82f6;
            font-size: 20px;
            flex-shrink: 0;
        }

        .feature-text h4 {
            font-weight: 700;
            margin-bottom: 6px;
            color: #0f172a;
        }

        .feature-text p {
            color: #475569;
            font-size: 14px;
        }

        /* Pricing Section - Updated with multiple packages */
        .pricing-section {
            margin: 80px 0;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
            align-items: stretch;
        }

        .pricing-card {
            background: white;
            border-radius: 32px;
            padding: 32px;
            border: 1px solid #e2e8f0;
            transition: all 0.2s;
            position: relative;
            display: flex;
            flex-direction: column;
        }

        .pricing-card.popular {
            border: 2px solid #3b82f6;
            transform: scale(1.05);
            box-shadow: 0 20px 40px -12px rgba(59,130,246,0.2);
        }

        .popular-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: #3b82f6;
            color: white;
            padding: 4px 20px;
            border-radius: 40px;
            font-size: 14px;
            font-weight: 600;
            white-space: nowrap;
        }

        .pricing-header {
            text-align: center;
            padding-bottom: 24px;
            border-bottom: 1px solid #e2e8f0;
        }

        .pricing-name {
            font-size: 20px;
            color: #64748b;
            margin-bottom: 16px;
        }

        .pricing-name.popular-name {
            color: #3b82f6;
            font-weight: 700;
        }

        .pricing-price {
            font-size: 48px;
            font-weight: 800;
            color: #0f172a;
            line-height: 1;
            margin-bottom: 8px;
        }

        .pricing-price span {
            font-size: 16px;
            font-weight: 400;
            color: #64748b;
        }

        .pricing-description {
            color: #475569;
            font-size: 14px;
        }

        .pricing-features {
            list-style: none;
            padding: 24px 0;
            flex-grow: 1;
        }

        .pricing-features li {
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
            color: #334155;
            font-size: 14px;
        }

        .pricing-features i {
            color: #3b82f6;
            width: 20px;
            font-size: 14px;
        }

        .pricing-features i.fa-times {
            color: #94a3b8;
        }

        .pricing-footer {
            text-align: center;
            margin-top: auto;
        }

        .btn-pricing {
            display: inline-block;
            width: 100%;
            padding: 14px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 16px;
            text-decoration: none;
            text-align: center;
            transition: all 0.2s;
            border: none;
            cursor: pointer;
            background: white;
            color: #3b82f6;
            border: 2px solid #3b82f6;
        }

        .btn-pricing:hover {
            background: #eff6ff;
            transform: translateY(-2px);
        }

        .btn-pricing.popular-btn {
            background: #3b82f6;
            color: white;
            border: none;
            box-shadow: 0 10px 20px -8px #3b82f6;
        }

        .btn-pricing.popular-btn:hover {
            background: #2563eb;
        }

        /* Add-ons Section */
        .addons-section {
            margin: 48px 0;
            padding: 40px;
            background: #f8fafc;
            border-radius: 40px;
        }

        .addons-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 32px;
        }

        .addon-card {
            background: white;
            padding: 24px;
            border-radius: 24px;
            text-align: center;
            border: 1px solid #e2e8f0;
            transition: all 0.2s;
        }

        .addon-card:hover {
            border-color: #3b82f6;
            transform: translateY(-2px);
        }

        .addon-name {
            font-weight: 700;
            margin-bottom: 8px;
        }

        .addon-price {
            color: #3b82f6;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .addon-price span {
            color: #64748b;
            font-size: 14px;
            font-weight: 400;
        }

        .addon-description {
            color: #64748b;
            font-size: 13px;
        }

        /* Comparison Table */
        .comparison-section {
            margin: 60px 0;
            overflow-x: auto;
        }

        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            background: white;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }

        .comparison-table th {
            background: #f8fafc;
            padding: 20px;
            text-align: center;
            font-weight: 700;
        }

        .comparison-table td {
            padding: 16px 20px;
            border-bottom: 1px solid #e2e8f0;
        }

        .comparison-table tr:last-child td {
            border-bottom: none;
        }

        .comparison-table .feature-name {
            font-weight: 500;
        }

        .comparison-table .check {
            color: #10b981;
            font-size: 18px;
        }

        .comparison-table .check-none {
            color: #94a3b8;
            font-size: 14px;
        }

        /* About You */
        .founder {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            color: white;
            border-radius: 40px;
            padding: 48px;
            margin: 60px 0;
        }

        .founder-flex {
            display: flex;
            gap: 40px;
            align-items: center;
            flex-wrap: wrap;
        }

        .founder-icon {
            width: 100px;
            height: 100px;
            background: #3b82f6;
            border-radius: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 48px;
        }

        .founder h3 {
            font-size: 28px;
            margin-bottom: 16px;
        }

        .founder p {
            color: #cbd5e1;
            max-width: 600px;
        }

        /* FAQ */
        .faq-section {
            margin: 60px 0;
        }

        .faq-grid {
            display: grid;
            gap: 24px;
            max-width: 800px;
            margin: 40px auto 0;
        }

        .faq-item {
            border-bottom: 1px solid #e2e8f0;
            padding-bottom: 16px;
        }

        .faq-item h4 {
            margin-bottom: 8px;
        }

        .faq-item p {
            color: #475569;
        }

        /* Footer */
        footer {
            padding: 40px 0;
            text-align: center;
            color: #64748b;
            font-size: 14px;
            border-top: 1px solid #e2e8f0;
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }

        .modal-content {
            background: white;
            padding: 40px;
            border-radius: 32px;
            max-width: 450px;
            width: 90%;
            text-align: center;
        }

        .modal-content h3 {
            margin-bottom: 24px;
            font-size: 24px;
        }

        .modal-input {
            width: 100%;
            padding: 16px 20px;
            border: 2px solid #e2e8f0;
            border-radius: 16px;
            margin-bottom: 16px;
            font-family: 'Inter', sans-serif;
            font-size: 16px;
        }

        .modal-input:focus {
            outline: none;
            border-color: #3b82f6;
        }

        .modal-close {
            margin-top: 24px;
            color: #64748b;
            cursor: pointer;
            font-size: 14px;
        }

        .modal-close:hover {
            color: #3b82f6;
        }

        .success-message {
            display: none;
            text-align: center;
            padding: 20px;
        }

        .success-message i {
            color: #10b981;
            font-size: 56px;
            margin-bottom: 16px;
        }

        .success-message h4 {
            font-size: 22px;
            margin-bottom: 8px;
        }

        .success-message p {
            color: #475569;
            margin-bottom: 16px;
        }

        /* Form error */
        .error-message {
            color: #dc2626;
            font-size: 14px;
            margin-top: -8px;
            margin-bottom: 16px;
            display: none;
        }

        @media (max-width: 768px) {
            .pricing-card.popular {
                transform: scale(1);
            }
        }

                /* Button Styles - Add this before the closing </style> tag */
        .btn-primary {
            display: inline-block;
            width: 100%;
            padding: 16px 32px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 16px;
            text-decoration: none;
            text-align: center;
            transition: all 0.2s;
            border: none;
            cursor: pointer;
            background: #3b82f6;
            color: white;
            box-shadow: 0 10px 20px -8px #3b82f6;
            font-family: 'Inter', sans-serif;
        }

        .btn-primary:hover {
            background: #2563eb;
            transform: translateY(-2px);
        }

        .btn-secondary {
            display: inline-block;
            width: 100%;
            padding: 16px 32px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 16px;
            text-decoration: none;
            text-align: center;
            transition: all 0.2s;
            border: 2px solid #3b82f6;
            cursor: pointer;
            background: white;
            color: #3b82f6;
            font-family: 'Inter', sans-serif;
        }

        .btn-secondary:hover {
            background: #eff6ff;
            transform: translateY(-2px);
        }