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

        html {
            width: 100%;
            max-width: 100%;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #1e293b;
            width: 100%;
            max-width: 100%;
            overflow-x: hidden;
        }

        /* ================= NAVIGATION ================= */
        .nav {
            background: #fff;
            padding: 20px 0;
            border-bottom: 1px solid #e2e8f0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }

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

        .nav-logo {
            font-size: 28px;
            font-weight: 900;
            color: #1e293b;
            text-decoration: none;
            letter-spacing: -0.02em;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .nav-logo-icon {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .nav-logo-icon svg {
            width: 18px;
            height: 18px;
            color: #fff;
        }

        .nav-logo span {
            color: #f97316;
        }

        .nav-links {
            display: flex;
            gap: 24px;
            align-items: center;
        }

        .nav-links a {
            color: #64748b;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            transition: color 0.2s;
        }

        .nav-links a:hover {
            color: #f97316;
        }

        .nav-cta {
            background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
            color: #fff !important;
            padding: 10px 24px;
            border-radius: 10px;
            font-weight: 800;
            box-shadow: 0 4px 12px rgba(249,115,22,0.3);
            transition: all 0.3s;
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(249,115,22,0.4);
            color: #fff !important;
        }

        /* ================= HERO ================= */
        .hero {
            background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
            padding: 100px 24px 120px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 30% 30%, rgba(249,115,22,0.2) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(14,165,233,0.2) 0%, transparent 50%);
        }

        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="1" cy="1" r="1" fill="white" opacity="0.05"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .hero-content {
            max-width: 700px;
            margin: 0 auto;
            text-align: center;
            color: #fff;
        }

        .hero h1 {
            font-size: 56px;
            font-weight: 900;
            margin-bottom: 20px;
            line-height: 1.1;
            letter-spacing: -0.02em;
        }

        .hero-subtitle {
            font-size: 20px;
            margin-bottom: 40px;
            color: #cbd5e1;
            font-weight: 400;
            line-height: 1.6;
        }

        .hero-search {
            background: #fff;
            border-radius: 16px;
            padding: 8px;
            display: flex;
            gap: 8px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            max-width: 600px;
            margin: 0 auto 30px;
        }

        .hero-search input {
            flex: 1;
            border: none;
            padding: 16px 20px;
            font-size: 16px;
            outline: none;
            border-radius: 12px;
            font-family: inherit;
        }

        .hero-search button {
            background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
            color: #fff;
            border: none;
            padding: 16px 32px;
            border-radius: 12px;
            font-weight: 800;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s;
            white-space: nowrap;
            font-family: inherit;
            box-shadow: 0 4px 12px rgba(249,115,22,0.3);
        }

        .hero-search button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(249,115,22,0.4);
        }

        .hero-vakman-link {
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            border: 2px solid rgba(255,255,255,0.3);
            border-radius: 10px;
            transition: all 0.3s;
            background: rgba(255,255,255,0.05);
        }

        .hero-vakman-link:hover {
            background: rgba(249,115,22,0.2);
            border-color: #f97316;
            transform: translateY(-2px);
        }

        /* ================= TRUST SECTION ================= */
        .trust-section {
            background: #f8fafc;
            padding: 60px 24px;
            text-align: center;
        }

        .trust-stats {
            max-width: 1000px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
        }

        .trust-stat {
            text-align: center;
        }

        .trust-number {
            font-size: 48px;
            font-weight: 900;
            background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 8px;
            letter-spacing: -0.02em;
        }

        .trust-label {
            color: #64748b;
            font-size: 16px;
            font-weight: 600;
        }

        /* ================= CATEGORIES ================= */
        .categories-section {
            padding: 80px 24px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-header h2 {
            font-size: 40px;
            font-weight: 900;
            margin-bottom: 12px;
            color: #1e293b;
            letter-spacing: -0.02em;
        }

        .section-header p {
            font-size: 18px;
            color: #64748b;
        }

        .categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 20px;
        }

        .category-card {
            background: #fff;
            border: 2px solid #e2e8f0;
            border-radius: 16px;
            padding: 32px 20px;
            text-align: center;
            transition: all 0.3s;
            cursor: pointer;
        }

        .category-card:hover {
            border-color: #f97316;
            box-shadow: 0 8px 24px rgba(249,115,22,0.15);
            transform: translateY(-4px);
        }

        .category-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, #fff5ed 0%, #ffedd5 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            transition: all 0.3s;
        }

        .category-card:hover .category-icon {
            background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
        }

        .category-icon svg {
            width: 32px;
            height: 32px;
            color: #f97316;
            transition: color 0.3s;
        }

        .category-card:hover .category-icon svg {
            color: #fff;
        }

        .category-name {
            font-weight: 700;
            color: #1e293b;
            font-size: 16px;
        }

        /* ================= HOW IT WORKS ================= */
        .how-section {
            background: #f8fafc;
            padding: 80px 24px;
        }

        .how-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .how-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .how-step {
            background: #fff;
            padding: 40px;
            border-radius: 20px;
            position: relative;
            border: 2px solid #e2e8f0;
            transition: all 0.3s;
        }

        .how-step:hover {
            border-color: #f97316;
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(249,115,22,0.15);
        }

        .step-number {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
            color: #fff;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-size: 24px;
            margin-bottom: 20px;
            box-shadow: 0 8px 24px rgba(249,115,22,0.3);
        }

        .how-step h3 {
            font-size: 22px;
            font-weight: 800;
            margin-bottom: 12px;
            color: #1e293b;
        }

        .how-step p {
            color: #64748b;
            line-height: 1.7;
            font-size: 15px;
        }

        /* ================= CTA SECTION ================= */
        .cta-section {
            background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
            padding: 80px 24px;
            text-align: center;
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 30% 50%, rgba(249,115,22,0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(14,165,233,0.15) 0%, transparent 50%);
        }

        .cta-content {
            position: relative;
            z-index: 1;
        }

        .cta-section h2 {
            font-size: 40px;
            font-weight: 900;
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }

        .cta-section p {
            font-size: 20px;
            margin-bottom: 40px;
            color: #cbd5e1;
        }

        .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
            color: #fff;
            padding: 16px 40px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 800;
            font-size: 16px;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 4px 12px rgba(249,115,22,0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(249,115,22,0.4);
        }

        .btn-secondary {
            background: #fff;
            color: #1e293b;
            padding: 16px 40px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 800;
            font-size: 16px;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: 2px solid #fff;
        }

        .btn-secondary:hover {
            background: transparent;
            color: #fff;
            transform: translateY(-2px);
        }

        /* ================= FOOTER ================= */
        footer {
            background: #1e293b;
            color: #fff;
            padding: 60px 0 30px;
            width: 100%;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .footer-top {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 40px;
        }

        .footer-logo-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 24px rgba(249,115,22,0.4);
        }

        .footer-logo-icon svg {
            width: 24px;
            height: 24px;
            color: #fff;
        }

        .footer-logo-text {
            font-size: 28px;
            font-weight: 900;
            letter-spacing: -0.02em;
        }

        .footer-logo-text span {
            color: #f97316;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h4 {
            font-size: 16px;
            font-weight: 800;
            margin-bottom: 16px;
            color: #fff;
        }

        .footer-column p {
            color: #94a3b8;
            line-height: 1.6;
            font-size: 14px;
        }

        .footer-column a {
            color: #94a3b8;
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            font-size: 14px;
            transition: color 0.2s;
            font-weight: 500;
        }

        .footer-column a:hover {
            color: #f97316;
        }

        .footer-bottom {
            border-top: 1px solid #334155;
            padding-top: 30px;
            text-align: center;
            color: #94a3b8;
            font-size: 14px;
        }

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

            .nav-logo {
                font-size: 24px;
            }

            .nav-logo-icon {
                width: 32px;
                height: 32px;
            }

            .nav-logo-icon svg {
                width: 16px;
                height: 16px;
            }

            .nav-links {
                gap: 16px;
            }

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

            .nav-cta {
                padding: 8px 16px;
                font-size: 14px;
            }

            .hero {
                padding: 60px 20px 80px;
            }

            .hero h1 {
                font-size: 36px;
            }

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

            .hero-search {
                flex-direction: column;
            }

            .hero-search button {
                width: 100%;
            }

            .trust-stats {
                gap: 30px;
            }

            .trust-number {
                font-size: 36px;
            }

            .section-header h2 {
                font-size: 32px;
            }

            .categories-grid {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
                gap: 16px;
            }

            .how-steps {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .cta-section h2 {
                font-size: 32px;
            }

            .cta-section p {
                font-size: 16px;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: stretch;
            }

            .btn-primary, .btn-secondary {
                width: 100%;
                justify-content: center;
            }

            .footer-container {
                padding: 0 20px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
        }

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

            .hero-subtitle {
                font-size: 14px;
            }

            .section-header h2 {
                font-size: 28px;
            }

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

            .category-card {
                padding: 24px;
            }
        }
    </style>