        :root {
            --orange: #ED8936;
            --orange-light: #F6AD55;
            --navy: #1A365D;
            --navy-light: #2A4A7F;
            --emerald: #10B981;
            --heading: #1A365D;
            --body: #4A5568;
            --muted: #475569; /* DALGA 3 — 7.58:1 AAA */
            --border: #E2E8F0;
            --border-light: #EDE9E4;
            --bg: #F7F3F0;
            --bg-white: #FFFFFF;
            --bg-subtle: #F0EBE6;
            --purple: #1A365D;
            --purple-light: #2A4A7F;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            overflow-x: hidden;
            background: var(--bg);
            color: var(--body);
        }
        ::selection { background: var(--orange); color: white; }

        .navbar-landing {
            position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
            background: rgba(255,255,255,0.97); backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            transition: all 0.3s ease; padding: 0.85rem 0;
            border-bottom: 1px solid transparent;
        }
        .navbar-landing.scrolled {
            padding: 0.55rem 0;
            border-bottom: 1px solid var(--border);
            box-shadow: 0 1px 4px rgba(0,0,0,0.03);
        }
        .brand-logo {
            font-weight: 800; font-size: 1.6rem; letter-spacing: 2px;
            background: linear-gradient(135deg, var(--purple), var(--purple-light));
            -webkit-background-clip: text; -webkit-text-fill-color: transparent;
            text-decoration: none;
        }
        .brand-slogan {
            font-size: 0.6rem; color: var(--muted); font-weight: 400;
            letter-spacing: 0.3px; margin-top: -1px;
            -webkit-text-fill-color: var(--muted);
        }
        .mobile-menu-btn {
            display: none; background: none; border: 1px solid var(--border);
            border-radius: 8px; padding: 8px 10px; color: var(--heading);
            font-size: 1.2rem; cursor: pointer; transition: all 0.2s;
        }
        .mobile-menu-btn:hover { background: var(--bg-subtle); }
        .nav-desktop { display: flex; align-items: center; gap: 1rem; }
        .mobile-drawer {
            display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
            z-index: 2000; opacity: 0; visibility: hidden; transition: all 0.3s ease;
        }
        .mobile-drawer.open { opacity: 1; visibility: visible; }
        .mobile-drawer-overlay {
            position: absolute; inset: 0; background: rgba(0,0,0,0.4);
        }
        .mobile-drawer-panel {
            position: absolute; top: 0; right: 0; bottom: 0; width: 280px;
            background: white; box-shadow: -4px 0 20px rgba(0,0,0,0.1);
            transform: translateX(100%); transition: transform 0.3s ease;
            display: flex; flex-direction: column; padding: 1.5rem;
            overflow-y: auto;
        }
        .mobile-drawer.open .mobile-drawer-panel { transform: translateX(0); }
        .mobile-drawer-close {
            align-self: flex-end; background: none; border: none;
            font-size: 1.4rem; color: var(--muted); cursor: pointer; padding: 4px 8px;
        }
        .mobile-drawer-link {
            display: flex; align-items: center; min-height: 48px; padding: 12px 0; color: var(--heading); text-decoration: none;
            font-weight: 500; font-size: 1rem; border-bottom: 1px solid var(--border-light);
        }
        .mobile-drawer-link:hover { color: var(--purple); }
        .mobile-drawer-buttons {
            display: flex; flex-direction: column; gap: 10px; margin-top: 1.5rem;
        }
        .mobile-drawer-buttons .btn { width: 100%; text-align: center; padding: 12px; min-height: 48px; font-size: 1rem; }
        @media (max-width: 991px) {
            .mobile-menu-btn { display: block; }
            .nav-desktop { display: none !important; }
            .navbar-logo-img { height: 50px !important; }
            .brand-slogan { font-size: 0.5rem !important; margin-top: -8px !important; }
        }
        @media (max-width: 576px) {
            .navbar-logo-img { height: 40px !important; }
            .brand-slogan { display: none !important; }
        }
        .nav-link-custom {
            color: var(--body); text-decoration: none; font-size: 0.875rem;
            font-weight: 500; transition: color 0.2s; padding: 6px 2px;
            position: relative;
        }
        .nav-link-custom:hover { color: var(--heading); }
        .nav-link-custom::after {
            content: ''; position: absolute; bottom: 0; left: 0; right: 0;
            height: 2px; background: var(--orange); border-radius: 1px;
            transform: scaleX(0); transition: transform 0.2s ease;
        }
        .nav-link-custom:hover::after { transform: scaleX(1); }

        .btn-primary-ox {
            background: var(--orange); border: 2px solid var(--orange); color: white;
            font-weight: 600; border-radius: 8px; padding: 8px 20px;
            transition: all 0.2s; letter-spacing: 0.2px; font-size: 0.875rem;
        }
        .btn-primary-ox:hover {
            background: var(--orange-light); border-color: var(--orange-light); color: white;
            transform: translateY(-1px) scale(1.02); box-shadow: 0 6px 20px rgba(237,137,54,0.3);
        }
        .btn-outline-purple {
            border: 2px solid var(--navy); color: var(--navy);
            background: white; font-weight: 600; border-radius: 8px;
            padding: 8px 20px; transition: all 0.2s; font-size: 0.875rem;
        }
        .btn-outline-purple:hover {
            background: rgba(26,54,93,0.04); color: var(--navy);
            transform: translateY(-1px) scale(1.02);
        }
        .btn-outline-ox {
            border: 1.5px solid var(--border); color: var(--heading);
            background: transparent; font-weight: 600; border-radius: 8px;
            padding: 8px 20px; transition: all 0.2s; font-size: 0.875rem;
        }
        .btn-outline-ox:hover {
            background: var(--bg-subtle); color: var(--orange);
            border-color: var(--orange);
            transform: translateY(-1px) scale(1.02);
        }
        .btn-ghost {
            background: var(--bg-subtle); border: 1px solid var(--border);
            color: var(--body); font-weight: 500; border-radius: 8px;
            padding: 8px 20px; transition: all 0.2s; font-size: 0.875rem;
        }
        .btn-ghost:hover { background: var(--border-light); color: var(--heading); transform: translateY(-1px) scale(1.02); }

        .hero {
            min-height: 100vh; position: relative;
            display: flex; align-items: center;
            background: linear-gradient(165deg, #F7F3F0 0%, #EDE7E1 40%, #E8E0D8 100%);
            overflow: hidden;
            padding-top: 100px; padding-bottom: 20px;
        }
        .hero::before {
            content: ''; position: absolute; top: 0; right: 0;
            width: 45%; height: 100%;
            background: linear-gradient(135deg, rgba(26,54,93,0.03) 0%, rgba(237,137,54,0.04) 100%);
            clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
            z-index: 0;
        }
        .hero::after {
            content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 80px;
            background: linear-gradient(to bottom, transparent, var(--bg));
            z-index: 1;
        }
        .hero-content { position: relative; z-index: 2; }
        .hero-badge {
            display: inline-flex; align-items: center; gap: 8px;
            background: rgba(26,54,93,0.06); border: 1px solid rgba(26,54,93,0.12);
            padding: 8px 18px; border-radius: 50px; font-size: 0.82rem;
            color: var(--navy); margin-bottom: 1.5rem; font-weight: 600;
        }
        .hero h1 { font-size: 3.5rem; font-weight: 800; line-height: 1.12; letter-spacing: -1.5px; color: var(--heading); }
        .hero h1 .accent { color: var(--orange); }
        .hero h1 .accent-green { color: var(--navy); opacity: 0.7; }
        .hero-product-preview {
            position: relative; border: 1px solid rgba(26,54,93,0.12);
            border-radius: 18px; overflow: hidden; background:#F8FAFC;
            box-shadow: 0 24px 64px rgba(26,54,93,0.16), 0 8px 24px rgba(0,0,0,0.06);
            transform: rotate(1deg); transition: transform 0.35s ease;
        }
        .hero-product-preview:hover { transform: rotate(0deg) translateY(-3px); }
        .product-window-bar {
            min-height: 46px; display:flex; align-items:center; gap:12px;
            padding:0 14px; background:#fff; border-bottom:1px solid #E2E8F0;
        }
        .window-dot { width:8px; height:8px; border-radius:50%; display:inline-block; }
        .window-dot-red { background:#F87171; } .window-dot-yellow { background:#FBBF24; } .window-dot-green { background:#34D399; }
        .product-window-title { font-size:0.7rem; font-weight:700; color:var(--heading); flex:1; }
        .product-window-title span { color:#94A3B8; padding:0 4px; }
        .product-window-period { font-size:0.62rem; color:#64748B; background:#F1F5F9; padding:5px 8px; border-radius:6px; }
        .product-preview-body { padding:16px; display:grid; grid-template-columns:0.9fr 1.1fr; gap:14px; }
        .product-photo-card { position:relative; min-height:280px; overflow:hidden; border-radius:12px; background:#0F172A; }
        .product-photo-card img { width:100%; height:100%; min-height:280px; object-fit:cover; display:block; }
        .product-photo-card::after { content:''; position:absolute; inset:0; background:linear-gradient(to top,rgba(15,23,42,0.7),transparent 48%); pointer-events:none; }
        .photo-status { position:absolute; left:10px; bottom:10px; z-index:1; color:#fff; font-size:0.62rem; font-weight:700; background:rgba(15,23,42,0.72); border:1px solid rgba(255,255,255,0.22); padding:6px 8px; border-radius:7px; }
        .photo-status i { color:#FBBF24; }
        .product-result-card { background:#fff; border:1px solid #E2E8F0; border-radius:12px; padding:16px; }
        .product-eyebrow { color:#64748B; font-size:0.6rem; font-weight:800; letter-spacing:0.08em; text-transform:uppercase; margin-bottom:5px; }
        .product-result-card h3 { color:var(--heading); font-size:0.98rem; line-height:1.3; font-weight:800; margin:0; }
        .risk-badge-high { flex:none; background:#FFF1F2; color:#BE123C; border:1px solid #FECDD3; border-radius:6px; padding:5px 7px; font-size:0.62rem; font-weight:800; }
        .product-detail-row { display:flex; align-items:center; gap:8px; color:#475569; font-size:0.68rem; line-height:1.4; margin-top:11px; }
        .product-detail-row i { width:14px; color:var(--orange); text-align:center; }
        .product-action-box { margin-top:14px; padding:10px; border-radius:8px; background:#FFF7ED; border-left:3px solid var(--orange); }
        .product-action-box p { color:#7C2D12; font-size:0.68rem; line-height:1.45; margin:0; }
        .product-review-state { color:#1D4ED8; background:#EFF6FF; border-radius:7px; padding:8px 10px; margin-top:12px; font-size:0.64rem; font-weight:700; }
        .hero-img-wrapper {
            position: relative; border-radius: 20px; overflow: hidden;
            box-shadow: 0 24px 64px rgba(26,54,93,0.12), 0 8px 24px rgba(0,0,0,0.06);
            border: 1px solid rgba(26,54,93,0.08);
        }
        .hero-img-wrapper img {
            width: 100%; display: block; border-radius: 20px;
        }
        .hero-img-wrapper::after {
            content: ''; position: absolute; inset: 0;
            background: linear-gradient(to top, rgba(26,54,93,0.08) 0%, transparent 40%);
            border-radius: 20px; pointer-events: none;
        }
        .hero-float-card {
            position: absolute; background: white; border-radius: 14px;
            padding: 14px 18px; box-shadow: 0 8px 32px rgba(0,0,0,0.1);
            display: flex; align-items: center; gap: 10px;
            border: 1px solid rgba(0,0,0,0.04); z-index: 3;
            animation: floatY 3s ease-in-out infinite;
        }
        .hero-float-card:nth-child(2) { animation-delay: 1.5s; }
        @keyframes floatY {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }

        .lifestyle-section { position: relative; overflow: hidden; }
        .lifestyle-img-container {
            border-radius: 20px; overflow: hidden; position: relative;
            box-shadow: 0 8px 30px rgba(0,0,0,0.08);
        }
        .lifestyle-img-container img { width: 100%; height: 100%; object-fit: cover; display: block; }
        .lifestyle-img-container .lifestyle-overlay {
            position: absolute; bottom: 0; left: 0; right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
            padding: 2rem 1.5rem 1.5rem;
        }
        .lifestyle-feature-pill {
            display: inline-flex; align-items: center; gap: 6px;
            background: rgba(255,255,255,0.2); border: 1px solid rgba(255,255,255,0.3);
            color: white; padding: 6px 14px;
            border-radius: 50px; font-size: 0.78rem; font-weight: 600;
            backdrop-filter: blur(10px);
        }

        .section { padding: 100px 0; }
        .section-title {
            font-size: 2.4rem; font-weight: 800; letter-spacing: -0.5px;
            margin-bottom: 0.6rem; color: var(--heading);
        }
        .section-subtitle { color: var(--body); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
        .section-border { border-top: 1px solid var(--border-light); }

        .stats-bar {
            background: var(--navy); border-radius: 20px; padding: 2.5rem 2rem;
            margin-top: -40px; position: relative; z-index: 5;
            box-shadow: 0 16px 48px rgba(26,54,93,0.2);
            opacity: 1 !important; visibility: visible !important;
            transform: none !important; animation: none !important;
        }
        .stat-card {
            text-align: center; padding: 1.5rem 1rem;
            border-right: 1px solid rgba(255,255,255,0.12);
        }
        .stat-card:last-child { border-right: none; }
        .stat-card .stat-value {
            font-size: 2.4rem; font-weight: 800; color: var(--orange);
        }
        .stat-card .stat-label { color: rgba(255,255,255,0.7); font-size: 0.85rem; margin-top: 4px; }

        .feature-card {
            background: var(--bg-white); border: 1px solid var(--border);
            border-radius: 16px; padding: 2rem; height: 100%;
            transition: all 0.4s ease; position: relative; overflow: hidden;
            box-shadow: 0 1px 3px rgba(0,0,0,0.06);
        }
        .feature-card:hover {
            transform: translateY(-4px); border-color: rgba(237,137,54,0.3);
            box-shadow: 0 12px 40px rgba(237,137,54,0.08);
        }
        .feature-icon-box {
            width: 56px; height: 56px; border-radius: 14px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.4rem; margin-bottom: 1.2rem;
        }

        .workflow-section { position: relative; }
        .workflow-card {
            background: var(--bg-white); border: 1px solid var(--border);
            border-radius: 16px; padding: 2rem 1.5rem; text-align: center;
            position: relative; transition: all 0.4s ease; height: 100%;
            box-shadow: 0 1px 3px rgba(0,0,0,0.06);
        }
        .workflow-card:hover {
            transform: translateY(-6px); border-color: rgba(237,137,54,0.2);
            box-shadow: 0 16px 40px rgba(0,0,0,0.06);
        }
        .workflow-step-num {
            width: 52px; height: 52px; border-radius: 14px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.3rem; font-weight: 800; margin: 0 auto 1rem;
            color: white; position: relative; z-index: 2;
        }
        .workflow-connector { display: none; }

        .gamification-badge {
            background: var(--bg-white); border: 1px solid var(--border);
            border-radius: 16px; padding: 2rem; text-align: center;
            transition: all 0.4s ease; height: 100%;
            box-shadow: 0 1px 3px rgba(0,0,0,0.06);
        }
        .gamification-badge:hover {
            transform: translateY(-5px); border-color: rgba(237,137,54,0.2);
            box-shadow: 0 12px 40px rgba(0,0,0,0.06);
        }
        .badge-icon {
            width: 80px; height: 80px; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: 2rem; margin: 0 auto 1rem;
        }

        .ai-preview-card {
            background: var(--bg-white); border: 1px solid var(--border);
            border-radius: 20px; overflow: hidden;
            box-shadow: 0 1px 3px rgba(0,0,0,0.06);
        }
        .ai-header {
            background: var(--bg-subtle);
            padding: 1.5rem 2rem; border-bottom: 1px solid var(--border);
        }
        .ai-body { padding: 2rem; }
        .ai-detection-item {
            display: flex; align-items: flex-start; gap: 12px;
            padding: 12px 16px; border-radius: 10px; margin-bottom: 10px;
            transition: background 0.3s;
        }
        .ai-detection-item:hover { background: var(--bg-subtle); }
        .ai-status-dot {
            width: 10px; height: 10px; border-radius: 50%; margin-top: 5px; flex-shrink: 0;
        }
        .ai-progress-bar {
            width: 100%; height: 6px; background: var(--border-light);
            border-radius: 3px; overflow: hidden; margin-top: 6px;
        }
        .ai-progress-fill {
            height: 100%; border-radius: 3px; transition: width 1.5s ease;
        }

        .points-display {
            display: inline-flex; align-items: center; gap: 6px;
            padding: 6px 14px; border-radius: 8px; font-weight: 700; font-size: 1.1rem;
        }
        .points-positive { background: rgba(26,54,93,0.07); color: var(--navy); }
        .points-negative { background: rgba(239,68,68,0.08); color: #EF4444; }

        .pricing-card {
            background: var(--bg-white); border: 1px solid var(--border);
            border-radius: 16px; padding: 2.5rem 2rem; text-align: center;
            transition: all 0.4s ease; height: 100%;
            box-shadow: 0 1px 3px rgba(0,0,0,0.06);
        }
        .pricing-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        .pricing-card.featured:hover {
            transform: translateY(-5px) scale(1.03);
            box-shadow: 0 24px 48px rgba(237,137,54,0.15);
        }
        .pricing-card.featured {
            border-color: var(--orange);
            border-width: 2px;
            position: relative;
        }
        .pricing-card.featured::before {
            content: ''; position: absolute; top: -2px; left: -2px; right: -2px; height: 4px;
            background: linear-gradient(90deg, var(--navy), var(--orange));
            border-radius: 16px 16px 0 0;
        }
        .pricing-card .price {
            font-size: 2.5rem; font-weight: 800; color: var(--heading);
        }
        .pricing-card .check-icon { color: var(--navy); }
        .pricing-card .x-icon { color: var(--muted); }

        .cta-section {
            background: var(--navy);
            padding: 100px 0; position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: ''; position: absolute; top: -50%; right: -20%;
            width: 500px; height: 500px; border-radius: 50%;
            background: rgba(237,137,54,0.08);
        }
        .cta-section h2, .cta-section .lead { color: white !important; }
        .cta-section .lead { opacity: 0.8; }

        .footer {
            background: var(--bg); color: var(--body);
            padding: 50px 0 20px; border-top: 1px solid var(--border-light);
        }
        .iso-footer-badge {
            display: inline-flex; align-items: center; gap: 10px;
            background: var(--bg-subtle); border: 1px solid var(--border);
            padding: 12px 20px; border-radius: 12px; transition: all 0.3s;
        }
        .iso-footer-badge:hover {
            background: rgba(237,137,54,0.04); border-color: rgba(237,137,54,0.15);
        }
        .iso-footer-badge .iso-icon {
            width: 40px; height: 40px; border-radius: 10px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.1rem;
        }

        .login-modal-overlay {
            display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0,0,0,0.4); backdrop-filter: blur(8px);
            z-index: 2000; align-items: center; justify-content: center;
        }
        .login-modal-overlay.active { display: flex; }
        .login-modal {
            background: var(--bg-white); border: 1px solid var(--border);
            border-radius: 20px; padding: 2.5rem; width: 100%; max-width: 420px;
            position: relative; animation: modalIn 0.3s ease;
            box-shadow: 0 25px 60px rgba(0,0,0,0.12);
        }
        @keyframes modalIn {
            from { opacity: 0; transform: translateY(20px) scale(0.95); }
            to { opacity: 1; transform: translateY(0) scale(1); }
        }
        .login-modal .form-control {
            background: var(--bg-subtle); border: 1px solid var(--border);
            color: var(--heading); border-radius: 10px; padding: 12px 16px;
        }
        .login-modal .form-control:focus {
            border-color: var(--orange);
            box-shadow: 0 0 0 3px rgba(237,137,54,0.1);
            background: var(--bg-white);
            color: var(--heading);
        }
        .login-modal .form-control::placeholder { color: var(--muted); }

        .lang-switch .btn {
            padding: 4px 12px; font-size: 0.8rem; font-weight: 600;
            border-radius: 6px; transition: all 0.3s;
        }
        .lang-switch .btn-active {
            background: var(--orange); color: white; border-color: var(--orange);
        }
        .lang-switch .btn-inactive {
            background: transparent; color: var(--muted);
            border: 1px solid var(--border);
        }

        .testimonial-card {
            background: var(--bg-white); border: 1px solid var(--border);
            border-radius: 16px; padding: 2rem; height: 100%;
            transition: all 0.4s ease; position: relative;
            box-shadow: 0 1px 3px rgba(0,0,0,0.06);
        }
        .testimonial-card:hover {
            transform: translateY(-4px); border-color: rgba(237,137,54,0.2);
            box-shadow: 0 12px 40px rgba(237,137,54,0.08);
        }
        .testimonial-quote-icon {
            width: 48px; height: 48px; border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.2rem; margin-bottom: 1.2rem;
            background: rgba(237,137,54,0.08); color: var(--orange);
        }
        .testimonial-stars { color: var(--orange); font-size: 0.85rem; margin-bottom: 1rem; }
        .testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: 1.5rem; }
        .testimonial-avatar {
            width: 48px; height: 48px; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-weight: 700; font-size: 1rem; color: white;
        }

        .faq-section .accordion-item {
            background: var(--bg-white); border: 1px solid var(--border) !important;
            border-radius: 16px !important; margin-bottom: 12px; overflow: hidden;
        }
        .faq-section .accordion-button {
            background: var(--bg-white); color: var(--heading); font-weight: 600;
            font-size: 1rem; padding: 1.25rem 1.5rem; border: none;
            box-shadow: none !important;
        }
        .faq-section .accordion-button:not(.collapsed) {
            background: var(--bg-subtle); color: var(--orange);
        }
        .faq-section .accordion-button::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2364748B'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }
        .faq-section .accordion-body {
            padding: 0 1.5rem 1.25rem; color: var(--body); font-size: 0.95rem; line-height: 1.7;
        }

        @media (max-width: 1200px) {
            .device-mockups { height: 340px; }
            .mockup-desktop .mockup-screen { height: 160px; }
            .mockup-tablet .mockup-screen { height: 130px; }
            .mockup-phone .mockup-screen { height: 140px; }
        }
        @media (max-width: 991px) {
            .device-mockups { display: none; }
            .lifestyle-img-container { height: 280px !important; }
        }
        @media (max-width: 768px) {
            .hero { padding-top: 80px; min-height: auto; padding-bottom: 10px; }
            .hero::before, .hero::after { display: none; }
            .hero h1 { font-size: 2rem !important; line-height: 1.15 !important; letter-spacing: -0.5px !important; }
            .hero .lead { font-size: 0.95rem !important; }
            .hero .btn-lg { padding: 12px 24px !important; font-size: 0.9rem !important; }
            .hero-product-preview { transform:none; }
            .workflow-connector { display: none !important; }
            .stats-bar { border-radius: 14px; padding: 1.5rem 1rem; margin-top: -20px; }
            .stat-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 1rem 0.5rem; }
            .stat-card .stat-value { font-size: 1.8rem; }
            .section { padding: 60px 0; }
            .section-title { font-size: 1.6rem; }
            .lifestyle-img-container { height: 220px !important; }
            .cta-section h2 { font-size: 1.6rem !important; }
            .pricing-card { margin-bottom: 1rem; }
        }
        @media (max-width: 480px) {
            .hero h1 { font-size: 1.7rem !important; }
            .hero .lead { font-size: 0.88rem !important; }
            .hero .d-flex.flex-wrap.gap-3 { flex-direction: column; }
            .hero .d-flex.flex-wrap.gap-3 .btn { width: 100%; }
            .product-preview-body { grid-template-columns:1fr; }
            .product-photo-card, .product-photo-card img { min-height:190px; max-height:220px; }
            .section-title { font-size: 1.4rem; }
            .section-subtitle { font-size: 0.9rem; }
        }

        .sv-lang-menu { display: none !important; }
        .sv-lang-menu.sv-lang-open { display: block !important; }

        .trusted-section { padding: 60px 0 40px; }
        .trusted-logos {
            display: flex; flex-wrap: wrap; align-items: center;
            justify-content: center; gap: 40px;
        }
        .trusted-logo-item {
            display: flex; align-items: center; gap: 10px;
            opacity: 0.5; transition: opacity 0.3s;
            filter: grayscale(100%);
        }
        .trusted-logo-item:hover { opacity: 0.85; filter: grayscale(0%); }
        .trusted-logo-icon {
            width: 44px; height: 44px; border-radius: 10px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.2rem;
        }
        .trusted-logo-text {
            font-weight: 700; font-size: 0.95rem; color: var(--heading);
            letter-spacing: 0.5px;
        }
        .trusted-logo-sub {
            font-size: 0.65rem; color: var(--muted); font-weight: 500;
            text-transform: uppercase; letter-spacing: 0.5px;
        }

        .video-modal-overlay {
            display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0,0,0,0.85); backdrop-filter: blur(8px);
            z-index: 3000; align-items: center; justify-content: center;
        }
        .video-modal-overlay.active { display: flex; }
        .video-modal-content {
            position: relative; width: 90%; max-width: 900px;
            aspect-ratio: 16/9; border-radius: 16px; overflow: hidden;
            box-shadow: 0 25px 60px rgba(0,0,0,0.4);
            animation: modalIn 0.3s ease;
        }
        .video-modal-close {
            position: absolute; top: -40px; right: 0;
            background: none; border: none; color: white;
            font-size: 1.5rem; cursor: pointer; z-index: 10;
            padding: 4px 10px; opacity: 0.8; transition: opacity 0.2s;
        }
        .video-modal-close:hover { opacity: 1; }
        .video-placeholder {
            width: 100%; height: 100%;
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
            display: flex; flex-direction: column;
            align-items: center; justify-content: center;
            color: white; text-align: center; padding: 2rem;
        }
        .video-play-btn {
            width: 80px; height: 80px; border-radius: 50%;
            background: var(--orange); display: flex;
            align-items: center; justify-content: center;
            font-size: 2rem; color: white; margin-bottom: 1.5rem;
            box-shadow: 0 8px 32px rgba(237,137,54,0.4);
            animation: pulse-play 2s ease-in-out infinite;
        }
        @keyframes pulse-play {
            0%, 100% { transform: scale(1); box-shadow: 0 8px 32px rgba(237,137,54,0.4); }
            50% { transform: scale(1.08); box-shadow: 0 12px 40px rgba(237,137,54,0.6); }
        }
        .hero-chip {
            display: inline-flex; align-items: center; gap: 6px;
            padding: 8px 16px; border-radius: 20px; font-size: 0.82rem;
            font-weight: 600; text-decoration: none;
            background: rgba(237,137,54,0.1); color: var(--orange);
            border: 1px solid rgba(237,137,54,0.2);
            transition: all 0.2s ease;
        }
        .hero-chip:hover {
            background: var(--orange); color: white;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(237,137,54,0.25);
        }
        .hero-chip i { font-size: 0.78rem; }

        .footer-social {
            color: #475569; /* DALGA 3 — 7.58:1 AAA */ font-size: 1.1rem;
            opacity: 0.5; transition: all 0.2s ease;
            text-decoration: none;
        }
        .footer-social:hover {
            color: #E8792B; opacity: 1;
            transform: translateY(-2px);
        }

        .nav-link-custom.active { color: var(--heading); font-weight: 600; }
        .nav-link-custom.active::after { transform: scaleX(1); }

        @media (max-width: 768px) {
            .trusted-logos { gap: 24px; }
            .trusted-logo-item { gap: 6px; }
            .trusted-logo-text { font-size: 0.82rem; }
            .video-play-btn { width: 60px; height: 60px; font-size: 1.5rem; }
        }
