        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: #fff;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Brand strip */
        .brand-divider {
            border: none;
            border-top: 1px solid #e5e5e5;
            margin: 60px 0 50px;
        }
        .brand-strip-label {
            font-size: 16px;
            font-weight: 900;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: #bbb;
            text-align: center;
            margin-bottom: 36px;
        }
        .brand-logos {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 24px 48px;
        }
        .brand-logo img {
            height: 40px;
            width: auto;
            display: block;
            opacity: 0.8;
        }
        @media (max-width: 600px) {
            .brand-logos { gap: 16px 28px; }
            .brand-logo img { height: 28px; }
        }

        /* Hero */
        .hero {
            background: linear-gradient(135deg, #7DA5F3, #9BBEF7);
            color: white;
            padding: 100px 20px 80px;
            text-align: center;
        }
        
        .hero img {
            width: 70px;
            height: 70px;
            border-radius: 16px;
            margin-bottom: 25px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.2);
        }
        
        .hero h1 {
            font-size: 52px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .hero p {
            font-size: 22px;
            margin-bottom: 35px;
            opacity: 0.95;
            max-width: 650px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta {
            display: inline-block;
            background: white;
            color: #7DA5F3;
            padding: 16px 40px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 17px;
            margin: 8px;
            transition: transform 0.2s;
        }
        
        .cta:hover {
            transform: translateY(-2px);
        }
        
        .app-store-badge {
            display: inline-block;
            margin: 8px;
        }
        
        .app-store-badge img {
            height: 50px;
            width: auto;
            border-radius: 8px;
            box-shadow: none;
            vertical-align: middle;
        }
        
        .app-store-badge img[alt*="App Store"] {
            height: 35px;
        }
        
        .download-section {
            text-align: center;
            margin-top: 40px;
        }
        
        /* Problem Section */
        .problem {
            padding: 80px 20px;
            background: #f8f9fa;
        }
        
        .problem h2 {
            text-align: center;
            font-size: 44px;
            margin-bottom: 20px;
            color: #333;
        }
        
        .problem-intro {
            text-align: center;
            font-size: 20px;
            color: #666;
            margin-bottom: 60px;
            max-width: 750px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .stat-card {
            text-align: center;
            background: white;
            padding: 35px 25px;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.06);
        }
        
        .stat-number {
            font-size: 48px;
            font-weight: 700;
            color: #7DA5F3;
            margin-bottom: 10px;
        }
        
        .stat-label {
            font-size: 18px;
            font-weight: 600;
            color: #333;
            margin-bottom: 8px;
        }
        
        .stat-description {
            font-size: 14px;
            color: #666;
            line-height: 1.5;
        }
        
        /* Main Section */
        .main {
            padding: 80px 20px;
            background: #f8f9fa;
        }
        
        h2 {
            text-align: center;
            font-size: 42px;
            margin-bottom: 60px;
            color: #333;
        }
        
        /* Features Grid */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-bottom: 80px;
        }
        
        .feature {
            text-align: center;
            background: #f8f9fa;
            padding: 35px 25px;
            border-radius: 12px;
        }
        
        .feature-icon {
            width: 56px;
            height: 56px;
            background: #7DA5F3;
            color: white;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        
        .feature h3 {
            font-size: 22px;
            margin-bottom: 12px;
            color: #333;
        }
        
        .feature p {
            font-size: 16px;
            color: #666;
            line-height: 1.6;
        }
        
        /* UK Section */
        .uk-section {
            background: linear-gradient(135deg, #7DA5F3, #9BBEF7);
            color: white;
            padding: 80px 20px;
        }
        
        .uk-section h2 {
            color: white;
            margin-bottom: 20px;
        }
        
        .uk-intro {
            text-align: center;
            font-size: 20px;
            margin-bottom: 60px;
            opacity: 0.95;
            max-width: 750px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .uk-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .uk-card {
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(10px);
            padding: 35px 30px;
            border-radius: 12px;
            text-align: center;
        }
        
        .uk-icon {
            width: 56px;
            height: 56px;
            background: rgba(255,255,255,0.2);
            color: white;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        
        .uk-card h3 {
            font-size: 22px;
            margin-bottom: 12px;
        }
        
        .uk-card p {
            font-size: 16px;
            line-height: 1.6;
            opacity: 0.95;
        }
        
        /* Builder Section */
        .builder {
            background: #fff;
            padding: 80px 20px;
        }
        
        .builder-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .builder-card {
            background: #f8f9fa;
            padding: 35px 30px;
            border-radius: 12px;
        }
        
        .builder-card h3 {
            font-size: 22px;
            margin-bottom: 12px;
            color: #333;
        }
        
        .builder-card p {
            font-size: 16px;
            line-height: 1.6;
            color: #666;
        }
        
        /* Trust Section */
        .trust {
            padding: 80px 20px;
            background: #f8f9fa;
        }
        
        .trust h2 {
            text-align: center;
            margin-bottom: 20px;
        }
        
        .trust-intro {
            text-align: center;
            font-size: 20px;
            color: #666;
            margin-bottom: 60px;
            max-width: 750px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .trust-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .trust-item {
            text-align: center;
            background: white;
            padding: 35px 25px;
            border-radius: 12px;
        }
        
        .trust-icon {
            width: 56px;
            height: 56px;
            background: #7DA5F3;
            color: white;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        
        .trust-item h3 {
            font-size: 20px;
            margin-bottom: 10px;
            color: #333;
        }
        
        .trust-item p {
            font-size: 15px;
            color: #666;
            line-height: 1.6;
        }
        
        /* Screenshots */
        .screenshots {
            padding: 80px 20px;
            background: #fff;
        }
        
        .screenshots h2 {
            margin-bottom: 50px;
        }
        
        .screenshot-grid {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            padding: 20px 0;
            justify-content: center;
        }
        
        .screenshot-grid img {
            width: 260px;
            border-radius: 16px;
            box-shadow: 0 6px 24px rgba(0,0,0,0.12);
            flex-shrink: 0;
        }
        
        /* Waitlist */
        .waitlist {
            padding: 80px 20px;
            text-align: center;
        }
        
        .waitlist h2 {
            margin-bottom: 20px;
        }
        
        .waitlist p {
            font-size: 18px;
            color: #666;
            margin-bottom: 40px;
        }
        
        .waitlist form {
            max-width: 450px;
            margin: 0 auto;
        }
        
        .waitlist input {
            width: 100%;
            padding: 15px;
            margin-bottom: 12px;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 15px;
        }
        
        .waitlist input:focus {
            outline: none;
            border-color: #7DA5F3;
        }
        
        .waitlist button {
            width: 100%;
            padding: 15px;
            background: #7DA5F3;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 17px;
            font-weight: 600;
            cursor: pointer;
        }
        
        .waitlist button:hover {
            background: #6B93E1;
        }

        /* Guides / Advice */
        .advice {
            padding: 80px 20px;
            background: #fff;
        }

        .advice h2 {
            text-align: center;
            margin-bottom: 12px;
        }

        .advice .intro {
            text-align: center;
            font-size: 18px;
            color: #666;
            margin-bottom: 40px;
        }

        .advice-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 24px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .advice-card {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 28px;
            text-decoration: none;
            color: inherit;
            transition: transform 0.2s, box-shadow 0.2s;
            display: block;
        }

        .advice-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        }

        .advice-card h3 {
            font-size: 20px;
            margin-bottom: 10px;
            color: #333;
        }

        .advice-card p {
            font-size: 15px;
            color: #666;
            line-height: 1.6;
        }

        .advice-tag {
            display: inline-block;
            background: #7DA5F3;
            color: white;
            padding: 4px 12px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        .article-date {
            font-size: 13px;
            color: #999;
            margin-bottom: 8px;
        }

        /* Final CTA */
        .final-cta {
            background: linear-gradient(135deg, #7DA5F3, #9BBEF7);
            color: white;
            padding: 80px 20px;
            text-align: center;
        }

        .final-cta h2 {
            font-size: 36px;
            margin-bottom: 20px;
            color: white;
        }

        .final-cta p {
            font-size: 18px;
            margin-bottom: 40px;
            opacity: 0.95;
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 36px;
            }

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

            .problem h2,
            h2 {
                font-size: 28px;
                margin-bottom: 30px;
            }

            .problem-intro,
            .uk-intro,
            .trust-intro {
                font-size: 17px;
            }

            .stats-grid,
            .features-grid,
            .uk-grid,
            .builder-grid,
            .trust-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .advice-grid {
                grid-template-columns: 1fr;
            }

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

            .screenshot-grid {
                flex-wrap: nowrap;
                justify-content: flex-start;
                padding: 20px;
            }

            .screenshot-grid img {
                width: 200px;
            }

            .final-cta h2 {
                font-size: 28px;
            }

            .cta {
                display: block;
                margin: 8px auto;
                max-width: 260px;
                text-align: center;
            }
        }
    