        :root {
            --primary-color: #4F46E5;
            --primary-light: #e0e7ff;
            --secondary-color: #10B981;
            --dark-bg: #0f172a;
            --text-main: #1e293b;
            --text-muted: #64748b;
            --custom-green: rgb(76, 175, 80); 
            --custom-green-hover: rgb(67, 160, 71);
            --hero-bg: radial-gradient(circle at 70% 30%, #eef2ff 0%, #f0fdf4 100%);
            --cta-original-bg: radial-gradient(circle at 70% 30%, #f1f5f9 0%, #ffffff 70%);
            --logo-blue: #0163ff;
            --soft-blue: #60a5fa; 
            --cable-color: #bfdbfe; 
            --cable-border: #60a5fa; 
            --card-hover-border: #93c5fd;
            --bulb-color: #fbbf24;
            --brain-gradient-start: #6366f1; 
            --brain-gradient-end: #8b5cf6;   
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background-color: #f8fafc;
            color: var(--text-main);
            overflow-x: hidden;
            scroll-behavior: smooth;
            padding-bottom: 0;
        }

        /* --- TEXT UTILS --- */
        .text-gradient-main {
            background: linear-gradient(135deg, var(--logo-blue) 0%, #10B981 100%);
            -webkit-background-clip: text; -webkit-text-fill-color: transparent;
            display: inline-block; font-weight: 800; padding-bottom: 5px;
        }

        /* HERO & BUTTONS */
        .hero-title { font-weight: 800; font-size: 3.5rem; letter-spacing: -1.5px; color: var(--text-main); margin-bottom: 20px; line-height: 1.2; }
        .hero-text { font-size: 1.2rem; line-height: 1.6; color: var(--text-muted); margin-bottom: 35px; }

        @keyframes shine { 0% { left: -100%; } 20% { left: 100%; } 100% { left: 100%; } }
        .btn-shine-anim { position: relative; overflow: hidden; }
        .btn-shine-anim::after { content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%; background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%); transform: skewX(-25deg); animation: shine 3s infinite; pointer-events: none; }

        .navbar { background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(0,0,0,0.03); padding: 12px 0; z-index: 1000; }
        .navbar-brand img { height: 40px; border-radius: 10px; }
        .navbar-brand span { font-weight: 700; color: var(--text-main); font-size: 1.3rem; margin-left: 10px;margin-right: 10px; }
        
        .nav-link {
            color: var(--text-main);
            font-weight: 600;
            margin: 0 10px;
            transition: 0.2s;
            display: inline-flex;
            align-items: center;
            min-height: 42px;
            padding-top: 0;
            padding-bottom: 0;
        }
        .nav-link:hover { color: var(--primary-color); }
        .nav-link-switch {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 42px;
            padding: 8px 16px;
            margin: 0 8px;
            border-radius: 999px;
            color: #0f172a;
            background: linear-gradient(135deg, rgba(219, 234, 254, 0.92) 0%, rgba(254, 249, 195, 0.92) 100%);
            border: 1px solid rgba(191, 219, 254, 0.95);
            box-shadow: 0 8px 22px rgba(37, 99, 235, 0.08);
            position: relative;
            overflow: hidden;
        }
        .nav-link-switch::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 65%);
            opacity: 0;
            transition: opacity 0.25s ease;
        }
        .nav-link-switch:hover {
            color: #1d4ed8;
            transform: translateY(-1px) scale(1.02);
            border-color: rgba(96, 165, 250, 0.95);
            box-shadow: 0 14px 28px rgba(37, 99, 235, 0.14);
        }
        .nav-link-switch:hover::before {
            opacity: 1;
        }
        .nav-link-switch-learners {
            background: var(--hero-bg);
            border-color: rgba(224, 231, 255, 0.95);
            box-shadow: 0 8px 22px rgba(99, 102, 241, 0.08);
        }
        .nav-link-switch-learners:hover {
            color: #4f46e5;
            border-color: rgba(165, 180, 252, 0.95);
            box-shadow: 0 14px 28px rgba(99, 102, 241, 0.14);
        }
        .nav-lang-compact {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            min-height: 42px;
            padding: 8px 12px;
            border-radius: 999px;
            background: rgba(248, 250, 252, 0.95);
            border: 1px solid rgba(226, 232, 240, 0.95);
            box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
            transition: 0.25s ease;
        }
        #langSelector:hover .nav-lang-compact {
            border-color: rgba(191, 219, 254, 0.95);
            box-shadow: 0 12px 24px rgba(37, 99, 235, 0.08);
            transform: translateY(-1px);
        }
        .nav-lang-flag-mini {
            width: 18px;
            height: 13px;
            border-radius: 3px;
            object-fit: cover;
            box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.8);
        }
        #current-lang-name {
            font-size: 0.85rem;
            font-weight: 700;
            color: #0f172a;
            line-height: 1;
            letter-spacing: 0.04em;
        }
        .nav-lang-chevron {
            font-size: 0.74rem;
            color: #64748b;
        }

        .navbar-toggler { border: none; box-shadow: none !important; }
        .navbar-toggler:focus { outline: none; }

        .btn-nav-download { background-color: var(--custom-green); color: white; border: none; padding: 8px 24px; font-size: 0.9rem; font-weight: 600; border-radius: 50px; transition: 0.3s; box-shadow: 0 4px 10px rgba(76, 175, 80, 0.3); text-decoration: none !important; display: inline-flex; align-items: center; gap: 6px; white-space: normal; text-align: center; justify-content: center; max-width: 100%; }
        .btn-nav-download:hover { background-color: var(--custom-green-hover); color: white; transform: translateY(-2px); }

        .mobile-bottom-bar {
            position: fixed; bottom: 0; left: 0; width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
            border-top: 1px solid rgba(0,0,0,0.05);
            padding: 12px 20px; z-index: 9999;
            box-shadow: 0 -5px 20px rgba(0,0,0,0.05);
            display: none; justify-content: center; align-items: center;
        }
        .btn-mobile-fixed {
            background-color: var(--custom-green); color: white;
            width: 100%; max-width: 400px;
            padding: 12px 16px; border-radius: 50px;
            font-weight: 700; font-size: 1rem; text-decoration: none;
            display: flex; justify-content: center; align-items: center; gap: 8px;
            box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3); transition: 0.2s;
            flex-wrap: wrap; text-align: center; white-space: normal;
        }
        .btn-mobile-fixed:active { transform: scale(0.98); }

        .hero-screen-wrapper { background: var(--hero-bg); padding-top: 76px; }
        .hero-section { padding: 40px 0; overflow: hidden; }
        
        /* GUNCEL HERO STATS TASARIMI (Daha Dikkat Çekici) */
        .hero-stats-container { 
            display: inline-flex; 
            align-items: center; 
            gap: 20px; 
            margin-top: 35px; 
            background: #ffffff; 
            padding: 12px 30px; 
            border-radius: 50px; 
            box-shadow: 0 15px 35px -5px rgba(79, 70, 229, 0.2), 0 5px 15px -5px rgba(0,0,0,0.05);
            border: 2px solid white;
            transition: transform 0.3s ease;
        }
        .hero-stats-container:hover {
            transform: translateY(-3px);
        }
        .hero-stats-item { 
            font-weight: 800; 
            font-size: 1.1rem; 
            color: var(--text-main); 
            display: flex; 
            align-items: center;
        }
        .hero-stats-item i { 
            font-size: 1.25rem; 
            margin-right: 8px; 
            filter: drop-shadow(0 2px 3px rgba(0,0,0,0.1));
        }
        /* Araya Çizgi */
        .hero-stats-divider {
            width: 2px;
            height: 24px;
            background-color: #e2e8f0;
            border-radius: 2px;
        }

        .brain-visual-container { position: relative; width: 360px; height: 360px; margin: 0 auto; display: flex; align-items: center; justify-content: center; }
        .pulse-ring { position: absolute; border-radius: 50%; border: 1px solid var(--primary-color); opacity: 0; animation: ripple 3s linear infinite; }
        .pr-1 { width: 100%; height: 100%; animation-delay: 0s; } .pr-2 { width: 100%; height: 100%; animation-delay: 1s; }
        @keyframes ripple { 0% { transform: scale(0.8); opacity: 0.5; } 100% { transform: scale(1.4); opacity: 0; } }
        .icon-wrapper-main { width: 140px; height: 140px; border-radius: 50%; background: white; box-shadow: 0 20px 50px rgba(79, 70, 229, 0.4); z-index: 2; position: relative; display: flex; align-items: center; justify-content: center; border: 4px solid white; overflow: hidden; }
        
        .orbit-label { 
            position: absolute; background: white; 
            padding: 8px 12px; border-radius: 16px; 
            box-shadow: 0 10px 25px rgba(0,0,0,0.1); 
            display: flex; flex-direction: column; align-items: center; justify-content: center;
            z-index: 3; border: 1px solid rgba(79, 70, 229, 0.1); 
            text-align: center;
            animation: floatSlow 4s ease-in-out infinite; 
            min-width: 110px;
        }
        .ol-1 { top: -10px; left: -10px; } 
        .ol-4 { top: -10px; right: -10px; animation-delay: 1.5s; }
        .ol-2 { bottom: 10px; left: -20px; animation-delay: 0.5s; } 
        .ol-3 { bottom: 10px; right: -20px; animation-delay: 2s; }
        @keyframes floatSlow { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

        .fc-img { width: 35px; height: 35px; object-fit: contain; margin-bottom: 2px; }
        .fc-target { font-weight: 800; font-size: 0.9rem; color: var(--text-main); line-height: 1.1; }
        .fc-native { font-size: 0.75rem; color: var(--text-muted); font-weight: 500; }
        .ctx-bubble { background: #f1f5f9; padding: 4px 8px; border-radius: 8px; font-size: 0.7rem; color: #475569; margin-bottom: 4px; position: relative; }
        .ctx-bubble::after { content: ''; position: absolute; bottom: -4px; left: 50%; transform: translateX(-50%); border-width: 4px; border-style: solid; border-color: #f1f5f9 transparent transparent transparent; }
        .ctx-bold { color: var(--primary-color); font-weight: 800; }
        .ctx-label, .rep-label { font-size: 0.75rem; font-weight: 700; color: var(--text-main); }
        .card-bottom-label { font-size: 0.75rem; font-weight: 700; color: var(--text-main); margin-top: 5px; }
        
        .store-badge-img { height: 52px; margin: 5px; border-radius: 8px; transition: 0.2s; } .store-badge-img:hover { transform: translateY(-3px); }

        /* MARQUEE */
        .marquee-section { padding: 20px 0; background: white; border-top: 1px solid #f1f5f9; border-bottom: 1px solid #f1f5f9; overflow: hidden; white-space: nowrap; }
        .marquee-track { display: inline-block; animation: marquee 120s linear infinite; } 
        .lang-item { display: inline-flex; align-items: center; margin: 0 25px; color: var(--text-main); font-weight: 600; }
        .lang-flag { width: 24px; height: 24px; border-radius: 50%; object-fit: cover; margin-right: 8px; border: 1px solid #eee; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

        section { padding: 90px 0; }

        /* --- SCIENCE SECTION --- */
        .science-section { background: #fff; position: relative; }
        .power-source-container { position: relative; width: 100%; max-width: 1000px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; z-index: 5; }
        .timeline-wrapper { position: relative; max-width: 1000px; margin: 0 auto; }
        .timeline-line { position: absolute; left: 50%; top: 20px; bottom: 400px; width: 12px; background: var(--cable-color); transform: translateX(-50%); border-radius: 6px; z-index: 0; border: 2px solid var(--cable-border); box-shadow: inset 2px 0 4px rgba(255,255,255,0.4), inset -2px 0 4px rgba(0,0,0,0.05); }
        .timeline-row { position: relative; z-index: 1; width: 100%; display: flex; justify-content: center; margin-bottom: 40px; }
        .timeline-card-wrapper { width: 100%; max-width: 400px; padding: 0 15px; position: relative; }
        .timeline-dot { position: absolute; left: 50%; top: 50px; transform: translate(-50%, -50%); width: 44px; height: 44px; background: #f8fafc; border: 4px solid var(--cable-border); border-radius: 8px; color: var(--cable-border); font-weight: 800; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 6px rgba(0,0,0,0.05); z-index: 2; }

        .formula-card { background: #fff; padding: 35px 25px; border-radius: 24px; text-align: center; display: flex; flex-direction: column; justify-content: flex-start; align-items: center; box-shadow: 0 15px 40px rgba(0,0,0,0.06); border: 1px solid rgba(0,0,0,0.04); transition: 0.3s; position: relative; width: 100%; min-height: 360px; }
        .formula-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(147, 197, 253, 0.25); border-color: var(--card-hover-border); }

        @media (min-width: 992px) {
            .timeline-wrapper { display: grid; grid-template-columns: 1fr 1fr; grid-row-gap: 30px; column-gap: 0; }
            .timeline-line { top: 70px; } 
            .timeline-row { margin-bottom: 0; width: 100%; display: flex; }
            .timeline-card-wrapper { width: 100%; max-width: 450px; }
            .timeline-row.left { grid-column: 1; justify-content: flex-end; padding-right: 40px; }
            .timeline-row.right { grid-column: 2; justify-content: flex-start; padding-left: 40px; margin-top: 50px; }
            .timeline-row.left .timeline-dot { right: -22px; left: auto; transform: translateY(-50%); }
            .timeline-row.right .timeline-dot { left: -22px; transform: translateY(-50%); }
            .timeline-row:nth-child(2) { grid-row: 1; }
            .timeline-row:nth-child(3) { grid-row: 1; }
            .timeline-row:nth-child(4) { grid-row: 2; margin-top: 0; }
            .timeline-row:nth-child(5) { grid-row: 2; }
            .timeline-row.center { grid-column: 1 / span 2; grid-row: 3; justify-content: center; margin-top: 40px; z-index: 5; }
            .timeline-row.center .timeline-dot { display: none; }
        }

        .sr-wrapper { display: flex; align-items: center; justify-content: space-between; width: 100%; position: relative; padding: 10px 0; margin-top: 15px; }
        .sr-line-bg { position: absolute; top: 20px; left: 0; width: 100%; height: 3px; background: #e2e8f0; z-index: 1; }
        .sr-item { display: flex; flex-direction: column; align-items: center; position: relative; z-index: 2; width: 40px; }
        .sr-circle { width: 36px; height: 36px; border-radius: 50%; border: 2px solid #cbd5e1; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.8rem; background: white; color: #94a3b8; transition: 0.3s; }
        .sr-circle.active { background: var(--custom-green); border-color: var(--custom-green); color: white; box-shadow: 0 4px 10px rgba(76, 175, 80, 0.4); transform: scale(1.15); }
        .sr-circle.learn { background: var(--soft-blue); border-color: var(--soft-blue); color: white; z-index: 3; }
        .sr-text { font-size: 0.65rem; color: #64748b; font-weight: 700; white-space: nowrap; margin-top:2px; }
        .sr-day-label { font-size: 0.6rem; color: #94a3b8; font-weight: 600; margin: 3px 0 1px 0; text-transform: uppercase; letter-spacing: 0.5px; }

        .spaced-rep-visual.mini { display: flex; align-items: center; justify-content: center; gap: 15px; }
        .day-node { display: flex; flex-direction: column; align-items: center; }
        .day-node .day-circle { width: 34px; height: 34px; border-radius: 50%; font-weight: 800; display: flex; align-items: center; justify-content: center; border: 2px solid #cbd5e1; background: white; color: #94a3b8; font-size: 0.8rem; margin-bottom: 5px; }
        .day-node.active .day-circle { background: var(--custom-green); border-color: var(--custom-green); color: white; box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4); }
        .mini-text-group { display: flex; flex-direction: column; align-items: center; line-height: 1.1; gap: 3px; }
        .mini-day { font-size: 0.5rem; color: #94a3b8; font-weight: 600; text-transform: uppercase; }
        .mini-action { font-size: 0.55rem; color: var(--text-main); font-weight: 700; }
        .rep-arrow { color: #cbd5e1; font-size: 1rem; margin-bottom: 25px; }

        .result-container-transparent { width: 100%; max-width: 500px; display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; z-index: 10; padding-top: 20px; }
        .brain-lottie-wrapper { display: flex; justify-content: center; align-items: center; margin-bottom: 10px; position: relative; }
        .brain-ambient-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 250px; height: 250px; background: radial-gradient(circle, rgba(99, 102, 241, 0.25) 0%, rgba(255,255,255,0) 70%); z-index: -1; pointer-events: none; }
        .formula-visual-large { height: 130px; width: 100%; display: flex; align-items: center; justify-content: center; margin-bottom: 25px; overflow: visible; position: relative; }

        #dynamic-fc-card { background: white; padding: 12px 20px; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); border: 1px solid #f1f5f9; text-align: center; transform: rotate(-3deg); transition: 0.5s all ease; display: flex; flex-direction: column; align-items: center; justify-content: center; min-width: 120px; }
        .formula-card:hover #dynamic-fc-card { transform: rotate(0) scale(1.05); }
        .fc-img-dynamic { width: 45px; height: 45px; object-fit: contain; margin-bottom: 5px; transition: 0.3s; }
        .fc-target-dynamic { font-size: 1.1rem; font-weight: 800; color: var(--text-main); transition: 0.3s; }
        .fc-native-dynamic { font-size: 0.85rem; color: var(--text-muted); transition: 0.3s; }

        .ctx-bubble-lg { background: #f1f5f9; padding: 12px 18px; border-radius: 15px; font-size: 0.95rem; color: #334155; position: relative; transition: 0.5s all ease; width: 100%; display: inline-flex; align-items: center; justify-content: center; gap: 5px; }
        .formula-card:hover .ctx-bubble-lg { transform: scale(1.05); background: #e0e7ff; color: var(--primary-color); }
        .ctx-bubble-lg::after { content: ''; position: absolute; bottom: -8px; left: 50%; transform: translateX(-50%); border-width: 8px; border-style: solid; border-color: #f1f5f9 transparent transparent transparent; transition: 0.3s; }
        .formula-card:hover .ctx-bubble-lg::after { border-top-color: #e0e7ff; }

        .word-trigger { font-weight: 800; border-bottom: 2px dotted rgba(79, 70, 229, 0.4); cursor: pointer; position: relative; margin: 0 4px; display: inline-block; }
        .word-tooltip { position: absolute; bottom: 100%; left: 50%; transform: translateX(-50%); background: #1e293b; color: white; padding: 6px 12px; border-radius: 8px; font-size: 0.8rem; white-space: nowrap; display: flex; align-items: center; gap: 6px; box-shadow: 0 5px 15px rgba(0,0,0,0.2); z-index: 10; margin-bottom: 8px; }
        .word-tooltip::after { content: ''; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); border-width: 6px; border-style: solid; border-color: #1e293b transparent transparent transparent; }
        .tt-icon { font-size: 0.9rem; color: #fbbf24; }
        .sent-audio { font-size: 1.1rem; color: #94a3b8; cursor: pointer; transition: 0.2s; margin-left: 5px; }
        .sent-audio:hover { color: var(--primary-color); transform: scale(1.1); }

        .practice-slider-wrapper { width: 100%; height: 100%; overflow: hidden; position: relative; display: flex; align-items: center; mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent); -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent); }
        .practice-track { display: flex; gap: 15px; width: calc((80px + 15px) * 12); animation: practiceScroll 25s linear infinite; }
        .practice-item-mini { width: 80px; flex-shrink: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; transition: 0.3s; }
        .practice-item-mini:hover { transform: scale(1.1); }
        .p-icon-circle { width: 50px; height: 50px; background: #f8fafc; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 8px; color: var(--primary-color); border: 1px solid #e2e8f0; box-shadow: 0 4px 10px rgba(0,0,0,0.03); font-size: 1.5rem; }
        .p-name { font-size: 0.65rem; font-weight: 700; color: #64748b; text-align: center; white-space: nowrap; }
        @keyframes practiceScroll { 0% { transform: translateX(0); } 100% { transform: translateX(calc((80px + 15px) * -6)); } }
        .practice-slider-wrapper:hover .practice-track { animation-play-state: paused; }

        @keyframes dnaSpin { 0% { transform: rotate(0deg) scale(1); } 50% { transform: rotate(10deg) scale(1.1); } 100% { transform: rotate(0deg) scale(1); } }
        .science-icon-anim { font-size: 3rem; margin-bottom: 10px; display: inline-block; filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1)); animation: dnaSpin 6s ease-in-out infinite; }

        .reviews-section { background: linear-gradient(180deg, #0f172a 0%, #1e1b4b 100%); color: white; position: relative; overflow: hidden; background-attachment: fixed; }
        .space-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: radial-gradient(white, rgba(255,255,255,.9) 1px, transparent 2px), radial-gradient(white, rgba(255,255,255,.6) 1px, transparent 2px), radial-gradient(white, rgba(255,255,255,.4) 2px, transparent 3px); background-size: 350px 350px, 200px 200px, 500px 500px; background-position: 10px 20px, 150px 80px, 300px 250px; background-attachment: fixed; z-index: 0; opacity: 1; animation: twinkle 6s infinite alternate; }
        @keyframes twinkle { from { opacity: 0.4; } to { opacity: 1; } }
        .review-header-img { height: 60px; width: auto; margin-bottom: 20px; display: inline-block; filter: drop-shadow(0 5px 15px rgba(0,0,0,0.1)); position: relative; z-index: 2; }
        .review-card { background: rgba(255, 255, 255, 0.08); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.15); border-radius: 20px; padding: 25px; height: 100%; position: relative; z-index: 2; transition: 0.3s; }
        .review-card:hover { transform: translateY(-5px); background: rgba(255,255,255,0.12); }
        .reviews-stat-badge { background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3); padding: 12px 30px; border-radius: 50px; display: inline-flex; gap: 30px; margin-top: 15px; font-size: 1.1rem; font-weight: 700; position: relative; z-index: 2; }
        .stars { color: #fbbf24; margin-bottom: 10px; }
        .store-icon-review { font-size: 1.2rem; color: #cbd5e1; }
        .reviewer-title { display: block; font-size: 0.75rem; color: rgba(255,255,255,0.6); font-weight: 400; margin-top: 2px; }

        .cta-section { background: var(--cta-original-bg); position: relative; overflow: hidden; color: var(--text-main); }
        .cta-logo-container { display: inline-block; text-align: center; margin-bottom: 20px; }
        .cta-logo { width: 80px; height: 80px; border-radius: 18px; margin-bottom: 15px; box-shadow: 0 10px 20px rgba(0,0,0,0.1);}
        .cta-name { font-weight: 800; font-size: 2.5rem; color: var(--text-main); letter-spacing: -1px; line-height: 1; display: block; }
        .cta-slogan { font-family: 'Poppins', sans-serif; font-size: 1.8rem; font-weight: 600; color: #1e293b; margin-bottom: 30px; margin-top: 10px; letter-spacing: -0.5px; }

        .btn-scroll-top { position: fixed; bottom: 85px; right: 30px; z-index: 999; background: var(--custom-green); color: white; border: none; width: 45px; height: 45px; border-radius: 50%; font-size: 1.2rem; box-shadow: 0 5px 15px rgba(0,0,0,0.2); transition: 0.3s; display: none; align-items: center; justify-content: center; cursor: pointer; }
        .btn-scroll-top:hover { background: var(--custom-green-hover); transform: translateY(-3px); }

        .section-btn-wrapper { margin-top: 50px; text-align: center; }
        .btn-section-cta { background: var(--custom-green); color: white; padding: 14px 32px; border-radius: 50px; font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: 0.3s; box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3); white-space: normal; text-align: center; justify-content: center; }
        .btn-section-cta:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(76, 175, 80, 0.4); color: white; background: var(--custom-green-hover);}
        .btn-store-more { border: 1px solid rgba(255,255,255,0.3); color: #fff; padding: 12px 28px; border-radius: 50px; text-decoration: none; display: inline-flex; align-items: center; margin: 5px; transition: 0.3s; }
        .btn-store-more:hover { background: white; color: var(--dark-bg); border-color: white; }

        /* --- MODERN FOOTER STYLES --- */
        footer { 
            background: var(--dark-bg); 
            color: white; 
            padding-top: 80px; 
            padding-bottom: 30px; 
            border-top: none;
        }
        
        .footer-logo { 
            font-weight: 700; 
            font-size: 1.8rem; 
            color: white; 
            text-decoration: none; 
            display: block; 
            margin-bottom: 15px; 
            transition: color 0.3s ease;
        }
        .footer-logo:hover { 
            color: var(--soft-blue); 
        }

        .footer-desc { font-size: 0.95rem; color: #94a3b8; max-width: 320px; line-height: 1.6; margin-bottom: 25px; }
        
        .footer-heading { 
            color: white; font-weight: 700; margin-bottom: 20px; font-size: 1.1rem; letter-spacing: 0.5px;
        }
        
        .footer-links-list { list-style: none; padding: 0; margin: 0; }
        .footer-link { 
            display: block; 
            color: #cbd5e1; 
            text-decoration: none; 
            font-size: 0.95rem; 
            margin-bottom: 12px; 
            transition: all 0.2s ease;
        }
        .footer-link:hover { 
            color: var(--secondary-color); 
            transform: translateX(5px); 
        }

        /* Footer Socials */
        .social-btn { 
            width: 40px; height: 40px; 
            background: rgba(255,255,255,0.1); 
            border-radius: 50%; 
            display: inline-flex; align-items: center; justify-content: center; 
            color: white; 
            margin-right: 10px; 
            transition: 0.3s; 
            text-decoration: none;
            font-size: 1.1rem;
        }
        .social-btn:hover { background: var(--primary-color); color: white; transform: translateY(-3px); }

        /* Footer Language List (Duolingo Style - Text Only) */
        .footer-lang-section {
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 40px;
            padding-top: 20px; 
        }
        
        .footer-lang-heading {
            font-size: 0.85rem;
            color: #94a3b8; /* Muted/Soluk renk */
            font-weight: 600;
            margin-bottom: 15px;
            opacity: 0.7;
        }

        .footer-languages {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px 25px;
            margin-bottom: 25px;
        }
        .footer-lang-link {
            color: #94a3b8;
            text-decoration: none;
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: color 0.2s;
        }
        .footer-lang-link:hover {
            color: white;
        }

        .lang-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 8px;
        }

        .modal-lang-item {
            display: flex;
            align-items: center;
            width: 100%;
            min-height: 42px;
            padding: 9px 12px;
            border-radius: 14px;
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            color: var(--text-main);
            font-weight: 700;
            font-size: 0.95rem;
            text-decoration: none;
            transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
        }

        .modal-lang-item:hover {
            color: var(--primary-color);
            background: #eef2ff;
            border-color: rgba(79, 70, 229, 0.18);
            box-shadow: 0 10px 24px rgba(79, 70, 229, 0.08);
            transform: translateY(-1px);
        }

        .modal-lang-item span {
            line-height: 1.25;
        }

        .modal-lang-item .nav-flag {
            width: 20px !important;
            height: 15px !important;
            margin-right: 10px !important;
        }

        #languageModal .modal-dialog {
            max-width: 820px;
            margin: 1rem auto;
        }

        #languageModal .modal-content {
            background: #ffffff;
        }

        #languageModal .modal-header {
            padding: 0.8rem 1rem 0;
        }

        #languageModal .modal-title {
            color: var(--text-main);
            letter-spacing: -0.3px;
            font-size: 1.1rem;
            padding-top: 0.25rem !important;
        }

        #languageModal .modal-body {
            padding: 0.9rem 1rem 1rem !important;
        }

        /* Footer Bottom */
        .footer-bottom { 
            display: flex; 
            justify-content: center; 
            align-items: center; 
        }
        .footer-copyright { color: #64748b; font-size: 0.9rem; margin: 0; }

        @media (max-width: 991px) {
            .hero-title { font-size: 2.5rem; }
            .btn-mobile-download { display: none; }
            .timeline-line { left: 20px; transform: none; bottom: 0 !important; }
            .timeline-row { justify-content: flex-start !important; margin-left: 45px; width: auto; margin-bottom: 40px !important; display: block !important; }
            .timeline-card-wrapper { width: 100% !important; text-align: left !important; justify-content: flex-start !important; padding: 0 !important; }
            .timeline-dot { left: 20px; }
            .science-section .text-center { padding: 0 15px; }
            .col-lg-6.text-lg-start { text-align: center; }
            .d-flex.justify-content-lg-start { justify-content: center !important; }
            .hero-stats-container { justify-content: center; }
            .brain-visual-container { width: 300px; height: 300px; margin-top: 40px; }
            .ol-1 { top: -10px; left: -10px; } .ol-2 { bottom: 10px; left: -10px; } .ol-3 { bottom: 10px; right: -10px; } .ol-4 { top: -10px; right: -10px; }
            .mobile-bottom-bar { display: flex; }
            body { padding-bottom: 70px; }
            .btn-scroll-top { bottom: 80px; }
            .navbar-collapse { background: white; padding: 1rem; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); margin-top: 10px; }
            
            .footer-bottom { flex-direction: column; text-align: center; }
            .footer-heading { margin-top: 30px; }
            .footer-languages { justify-content: flex-start; gap: 15px; }
            .footer-lang-heading { text-align: left; }
            .lang-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

            .formula-card { box-shadow: 0 20px 40px rgba(147, 197, 253, 0.25); border-color: var(--card-hover-border); }
        }

        @media (min-width: 992px) {
            .hero-screen-wrapper { height: 100vh; display: flex; flex-direction: column; padding-top: 76px; }
            .hero-section { flex: 1; display: flex; align-items: center; padding: 0; }
            .marquee-section { flex-shrink: 0; }
            .mobile-bottom-bar { display: none !important; }
            body { padding-bottom: 0; }
            .btn-scroll-top { bottom: 30px; }
        }
		
	
		
		/* --- LEGAL CONTENT (Sadece Gerekli Olanlar) --- */
        .legal-wrapper { margin-top: 100px; margin-bottom: 60px; position: relative; z-index: 1; }
        .legal-card { background: white; padding: 40px; border-radius: 20px; box-shadow: 0 10px 40px rgba(0,0,0,0.05); border: 1px solid rgba(0,0,0,0.03); }
        .legal-content h1 { font-weight: 800; color: var(--text-main); margin-bottom: 20px; font-size: 2.5rem; }
        .legal-content h2 { font-size: 1.5rem; font-weight: 700; margin-top: 30px; margin-bottom: 15px; color: var(--text-main); border-bottom: 1px solid #f1f5f9; padding-bottom: 10px; }
        .legal-content p, .legal-content li { color: #475569; font-size: 1rem; margin-bottom: 12px; }
        .legal-content a { color: var(--primary-color); text-decoration: none; font-weight: 600; }
        .meta-box { background: #f8fafc; padding: 20px; border-radius: 12px; margin-bottom: 30px; border-left: 4px solid var(--primary-color); }
        .legal-gradient-bg {
            background:
                radial-gradient(circle at top left, rgba(96, 165, 250, 0.2) 0%, rgba(96, 165, 250, 0) 28%),
                radial-gradient(circle at top right, rgba(16, 185, 129, 0.16) 0%, rgba(16, 185, 129, 0) 24%),
                linear-gradient(180deg, #f7fbff 0%, #f8fafc 38%, #f8fafc 100%);
        }
        .faq-site-page {
            background: #f8fafc;
        }
        .faq-content-shell {
            background: var(--hero-bg);
            min-height: 100vh;
            padding-top: 44px;
            padding-bottom: 72px;
        }
        .faq-topbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            max-width: 920px;
            margin: 0 auto 28px;
        }
        .faq-top-badge {
            margin-bottom: 0;
            box-shadow: 0 10px 24px rgba(79, 70, 229, 0.08);
        }
        .faq-language-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            border: 1px solid rgba(79, 70, 229, 0.1);
            background: rgba(255, 255, 255, 0.9);
            color: var(--text-main);
            border-radius: 999px;
            padding: 12px 18px;
            font-weight: 700;
            box-shadow: 0 10px 24px rgba(79, 70, 229, 0.08);
        }
        .faq-language-button:hover {
            color: var(--primary-color);
        }
        .faq-language-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 12px;
        }
        .faq-language-item {
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 52px;
            padding: 12px 14px;
            border-radius: 16px;
            border: 1px solid #e2e8f0;
            background: #f8fafc;
            color: var(--text-main);
            font-weight: 700;
            transition: 0.2s ease;
        }
        .faq-language-item:hover,
        .faq-language-item.is-active {
            background: #eef2ff;
            color: var(--primary-color);
            border-color: rgba(79, 70, 229, 0.16);
        }
        .legal-footer {
            margin-top: 36px;
            padding-top: 48px;
            padding-bottom: 40px;
        }
        .guide-page-shell {
            background:
                radial-gradient(circle at top left, rgba(79, 70, 229, 0.12) 0%, rgba(79, 70, 229, 0) 26%),
                radial-gradient(circle at top right, rgba(16, 185, 129, 0.14) 0%, rgba(16, 185, 129, 0) 22%),
                linear-gradient(180deg, #f5f9ff 0%, #f8fafc 42%, #f8fafc 100%);
            padding-top: 118px;
        }
        .guide-hero-section {
            padding: 0 0 30px;
        }
        .guide-hero-card,
        .guide-summary-card,
        .guide-block-card,
        .guide-wide-card,
        .guide-feature-card,
        .guide-contact-card,
        .guide-price-card,
        .guide-tip-card {
            background: rgba(255, 255, 255, 0.94);
            border: 1px solid rgba(226, 232, 240, 0.9);
            box-shadow: 0 22px 54px rgba(15, 23, 42, 0.06);
        }
        .guide-hero-card {
            border-radius: 38px;
            padding: 34px;
            backdrop-filter: blur(16px);
        }
        .guide-hero-simple {
            max-width: 760px;
            margin: 0 auto;
            text-align: center;
        }
        .guide-badge,
        .guide-section-label,
        .guide-contact-badge,
        .guide-price-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 8px 14px;
            border-radius: 999px;
            background: rgba(79, 70, 229, 0.08);
            color: var(--primary-color);
            font-size: 0.84rem;
            font-weight: 800;
            margin-bottom: 14px;
            max-width: 100%;
            flex-wrap: wrap;
            text-align: center;
        }
        .guide-title {
            font-size: 3rem;
            line-height: 1.1;
            font-weight: 800;
            color: var(--text-main);
            letter-spacing: -1.3px;
            margin-bottom: 18px;
            overflow-wrap: break-word;
        }
        .guide-subtitle {
            font-size: 1.08rem;
            line-height: 1.8;
            color: var(--text-muted);
            max-width: 620px;
            margin: 0 auto 24px;
        }
        .guide-hero-actions,
        .guide-contact-actions,
        .guide-inline-boxes {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .guide-hero-actions {
            justify-content: center;
        }
        .guide-contact-actions {
            justify-content: center;
            margin-top: 10px;
        }
        .guide-inline-box {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 14px;
            border-radius: 16px;
            background: #fff;
            border: 1px solid rgba(148, 163, 184, 0.18);
            box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
            font-size: 0.92rem;
            font-weight: 700;
            color: #334155;
        }
        .guide-inline-box {
            background: #eef2ff;
            color: #4338ca;
            box-shadow: none;
        }
        .guide-secondary-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            min-height: 52px;
            padding: 12px 22px;
            border-radius: 999px;
            border: 1px solid rgba(79, 70, 229, 0.12);
            background: rgba(255, 255, 255, 0.92);
            color: var(--text-main);
            text-decoration: none;
            font-weight: 700;
            box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
            white-space: normal;
            text-align: center;
        }
        .guide-secondary-cta:hover {
            color: var(--primary-color);
            transform: translateY(-2px);
        }
        .guide-visual-wrap {
            position: relative;
            min-height: 420px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 18px;
        }
        .guide-visual-glow {
            position: absolute;
            width: 320px;
            height: 320px;
            background: radial-gradient(circle, rgba(79, 70, 229, 0.2) 0%, rgba(79, 70, 229, 0) 68%);
            filter: blur(8px);
        }
        .guide-visual-card {
            background: #fff;
            border-radius: 34px;
            box-shadow: 0 28px 60px rgba(79, 70, 229, 0.14);
        }
        .guide-visual-main {
            width: 280px;
            height: 280px;
            padding: 22px;
            position: relative;
            z-index: 2;
        }
        .guide-visual-caption {
            position: relative;
            z-index: 2;
            width: min(100%, 420px);
            padding: 22px 22px 20px;
            border-radius: 24px;
            background: rgba(255, 255, 255, 0.94);
            border: 1px solid rgba(226, 232, 240, 0.9);
            box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
            text-align: left;
        }
        .guide-caption-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 7px 12px;
            border-radius: 999px;
            background: rgba(16, 185, 129, 0.1);
            color: #059669;
            font-size: 0.78rem;
            font-weight: 800;
            margin-bottom: 12px;
        }
        .guide-visual-caption h2 {
            font-size: 1.18rem;
            font-weight: 800;
            color: var(--text-main);
            line-height: 1.4;
            margin-bottom: 10px;
        }
        .guide-visual-caption p {
            color: var(--text-muted);
            line-height: 1.7;
            margin: 0;
        }
        .guide-floating-card {
            position: absolute;
            width: 190px;
            padding: 14px 16px;
            border-radius: 18px;
            background: rgba(255, 255, 255, 0.95);
            border: 1px solid rgba(255, 255, 255, 0.8);
            box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
            z-index: 3;
        }
        .guide-floating-kicker {
            display: block;
            color: var(--primary-color);
            font-weight: 800;
            font-size: 0.78rem;
            text-transform: uppercase;
            letter-spacing: 0.6px;
            margin-bottom: 6px;
        }
        .guide-floating-card strong {
            display: block;
            font-size: 0.95rem;
            color: var(--text-main);
        }
        .gfc-1 { top: 8px; left: 10px; }
        .gfc-2 { right: 0; top: 124px; }
        .gfc-3 { left: 34px; bottom: 12px; }
        .guide-summary-grid,
        .guide-grid-two,
        .guide-feature-grid,
        .guide-settings-grid,
        .guide-tip-grid,
        .guide-pricing-wrap,
        .guide-mini-steps {
            display: grid;
            gap: 18px;
        }
        .guide-summary-grid {
            margin-top: 34px;
        }
        .guide-summary-grid,
        .guide-settings-grid,
        .guide-tip-grid {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }
        .guide-grid-two,
        .guide-pricing-wrap {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
        .guide-closing-grid {
            margin-bottom: 22px;
        }
        .guide-summary-card,
        .guide-block-card,
        .guide-wide-card,
        .guide-feature-card,
        .guide-contact-card,
        .guide-price-card,
        .guide-tip-card {
            border-radius: 28px;
            padding: 24px;
        }
        .guide-summary-card h2,
        .guide-block-card h3,
        .guide-wide-card h3,
        .guide-feature-card h3,
        .guide-price-card h3 {
            font-size: 1.2rem;
            font-weight: 800;
            color: var(--text-main);
            margin-bottom: 10px;
        }
        .guide-summary-card p,
        .guide-block-card p,
        .guide-feature-card p,
        .guide-wide-card p,
        .guide-price-card p,
        .guide-contact-card p {
            color: var(--text-muted);
            line-height: 1.75;
            margin-bottom: 0;
        }
        .guide-summary-icon,
        .guide-block-icon,
        .guide-feature-icon {
            width: 54px;
            height: 54px;
            border-radius: 18px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(79, 70, 229, 0.14) 0%, rgba(16, 185, 129, 0.12) 100%);
            color: var(--primary-color);
            font-size: 1.45rem;
            margin-bottom: 16px;
        }
        .guide-content-section {
            padding: 28px 0;
        }
        .guide-section-soft {
            background: linear-gradient(180deg, rgba(241, 245, 249, 0.38) 0%, rgba(248, 250, 252, 0) 100%);
        }
        .guide-section-head {
            max-width: 720px;
            margin: 0 auto 24px;
            text-align: center;
        }
        .guide-section-head h2,
        .guide-contact-card h2 {
            font-size: 2.3rem;
            font-weight: 800;
            color: var(--text-main);
            letter-spacing: -0.8px;
            margin-bottom: 12px;
        }
        .guide-section-head p {
            color: var(--text-muted);
            font-size: 1rem;
            line-height: 1.8;
        }
        .guide-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .guide-list li {
            position: relative;
            padding-left: 22px;
            margin-bottom: 12px;
            color: #475569;
            line-height: 1.75;
        }
        .guide-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 12px;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--secondary-color);
        }
        .guide-note {
            margin-top: 18px;
            padding: 16px 18px;
            border-radius: 18px;
            background: linear-gradient(135deg, #eef2ff 0%, #ecfeff 100%);
            color: #334155;
            line-height: 1.7;
        }
        .guide-note i { color: var(--primary-color); margin-right: 8px; }
        .guide-wide-card { margin-top: 20px; }
        .guide-wide-top,
        .guide-feature-top {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 16px;
        }
        .guide-mini-steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
        .guide-mini-step,
        .guide-settings-item,
        .guide-feature-item {
            padding: 14px 16px;
            border-radius: 18px;
            background: #f8fafc;
            border: 1px solid rgba(226, 232, 240, 0.9);
            color: #475569;
            line-height: 1.65;
        }
        .guide-mini-step span {
            display: inline-flex;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            background: var(--primary-light);
            color: var(--primary-color);
            font-weight: 800;
            margin-right: 8px;
        }
        .guide-feature-stack,
        .guide-timeline {
            display: grid;
            gap: 20px;
        }
        .guide-feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
        .guide-timeline-card {
            display: grid;
            grid-template-columns: 72px 1fr;
            gap: 18px;
            padding: 22px;
            border-radius: 28px;
            background: rgba(255, 255, 255, 0.94);
            border: 1px solid rgba(226, 232, 240, 0.9);
            box-shadow: 0 22px 54px rgba(15, 23, 42, 0.06);
        }
        .guide-timeline-num {
            width: 56px;
            height: 56px;
            border-radius: 18px;
            background: linear-gradient(135deg, #4f46e5 0%, #10b981 100%);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.2rem;
        }
        .guide-timeline-card h3 {
            font-size: 1.14rem;
            font-weight: 800;
            color: var(--text-main);
            margin-bottom: 8px;
        }
        .guide-timeline-card p {
            margin: 0;
            color: #475569;
            line-height: 1.8;
        }
        .guide-settings-item i,
        .guide-tip-card i {
            color: var(--primary-color);
            margin-right: 8px;
        }
        .guide-price-card-primary {
            background: linear-gradient(180deg, rgba(79, 70, 229, 0.96) 0%, rgba(67, 56, 202, 0.96) 100%);
            color: white;
            border-color: transparent;
            box-shadow: 0 26px 58px rgba(79, 70, 229, 0.24);
        }
        .guide-price-card-primary h3,
        .guide-price-card-primary p,
        .guide-price-card-primary .guide-price-note {
            color: white;
        }
        .guide-price-card-primary .guide-price-badge {
            background: rgba(255, 255, 255, 0.16);
            color: white;
        }
        .guide-price-note {
            margin-top: 14px;
            padding: 12px 14px;
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.14);
            line-height: 1.7;
        }
        .guide-tip-card {
            display: flex;
            flex-direction: column;
            gap: 10px;
            min-height: 100%;
        }
        .guide-tip-card i {
            font-size: 1.35rem;
            margin-right: 0;
        }
        .guide-tip-card strong {
            color: var(--text-main);
            font-size: 1rem;
        }
        .guide-tip-card span {
            color: var(--text-muted);
            line-height: 1.7;
        }
        .guide-contact-card {
            text-align: center;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(240, 249, 255, 0.96) 100%);
            padding: 34px 28px;
        }
        .guide-contact-card p a {
            color: var(--primary-color);
            font-weight: 700;
            text-decoration: none;
        }
        .faq-content-section {
            padding: 96px 0 0;
            background:
                radial-gradient(circle at top left, rgba(96, 165, 250, 0.2) 0%, rgba(96, 165, 250, 0) 28%),
                radial-gradient(circle at top right, rgba(16, 185, 129, 0.16) 0%, rgba(16, 185, 129, 0) 24%),
                linear-gradient(180deg, #f7fbff 0%, #f8fafc 38%, #f8fafc 100%);
        }
        .faq-hero-panel {
            max-width: 920px;
            margin: 0 auto 28px;
            padding: 34px 28px 26px;
            border-radius: 34px;
            background: rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.75);
            box-shadow: 0 22px 55px rgba(15, 23, 42, 0.07);
            backdrop-filter: blur(16px);
        }
        .faq-hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 14px;
            border-radius: 999px;
            background: rgba(79, 70, 229, 0.08);
            color: var(--primary-color);
            font-weight: 800;
            font-size: 0.88rem;
            margin-bottom: 18px;
        }
        .faq-page-heading {
            font-size: 2.4rem;
            font-weight: 800;
            color: var(--text-main);
            letter-spacing: -0.8px;
            margin-bottom: 12px;
            overflow-wrap: break-word;
        }
        .faq-page-subheading {
            color: var(--text-muted);
            font-size: 1.05rem;
            max-width: 620px;
            margin: 0 auto;
            overflow-wrap: break-word;
        }
        .faq-topic-row {
            margin-top: 24px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
        }
        .faq-topic-pill {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 16px;
            border-radius: 18px;
            background: #ffffff;
            border: 1px solid rgba(148, 163, 184, 0.18);
            color: #334155;
            font-weight: 700;
            box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
        }
        .faq-topic-pill i {
            color: var(--primary-color);
        }
        .faq-list-wrap {
            max-width: 920px;
            margin: 0 auto;
        }
        .faq-guide-card {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
            padding: 22px 24px;
            border-radius: 28px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(240, 249, 255, 0.96) 100%);
            border: 1px solid rgba(96, 165, 250, 0.14);
            box-shadow: 0 18px 42px rgba(59, 130, 246, 0.08);
            margin-bottom: 18px;
        }
        .faq-guide-copy h3 {
            font-size: 1.2rem;
            font-weight: 800;
            color: var(--text-main);
            margin-bottom: 8px;
        }
        .faq-guide-copy p {
            color: var(--text-muted);
            line-height: 1.7;
            margin: 0;
            max-width: 560px;
        }
        .faq-guide-kicker {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 7px 12px;
            border-radius: 999px;
            background: rgba(79, 70, 229, 0.08);
            color: var(--primary-color);
            font-size: 0.78rem;
            font-weight: 800;
            margin-bottom: 10px;
        }
        .faq-guide-cta {
            flex-shrink: 0;
        }
        .faq-surface-card {
            padding: 22px;
            border-radius: 32px;
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(226, 232, 240, 0.9);
            box-shadow: 0 26px 64px rgba(15, 23, 42, 0.08);
        }
        .faq-surface-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            margin-bottom: 18px;
            padding: 6px 8px 12px;
        }
        .faq-surface-title {
            font-size: 1.15rem;
            font-weight: 800;
            color: var(--text-main);
            letter-spacing: -0.3px;
        }
        .faq-surface-text {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-top: 4px;
        }
        .faq-surface-count {
            flex-shrink: 0;
            padding: 10px 14px;
            border-radius: 999px;
            background: linear-gradient(135deg, #e0e7ff 0%, #ecfeff 100%);
            color: var(--primary-color);
            font-weight: 800;
            font-size: 0.92rem;
        }
        .faq-accordion-shell .accordion-item {
            border: 1px solid #e2e8f0;
            border-radius: 22px;
            overflow: hidden;
            margin-bottom: 16px;
            box-shadow: 0 14px 34px rgba(15, 23, 42, 0.05);
            background: #fff;
        }
        .faq-accordion-shell .accordion-button {
            font-weight: 700;
            color: var(--text-main);
            padding: 22px 24px;
            background: linear-gradient(180deg, #ffffff 0%, #fcfdff 100%);
            box-shadow: none;
            font-size: 1.04rem;
            line-height: 1.45;
        }
        .faq-accordion .accordion-button::after {
            background-image: none;
            content: '\203A';
            width: auto;
            height: auto;
            font-size: 2rem;
            line-height: 1;
            color: #cbd5e1;
            transform: none;
            margin-top: -2px;
        }
        .faq-accordion .accordion-button:not(.collapsed) {
            color: var(--primary-color);
            background: #f8fafc;
        }
        .faq-accordion .accordion-button:not(.collapsed)::after {
            color: var(--primary-color);
            transform: rotate(90deg);
        }
        .faq-accordion .accordion-button:focus {
            box-shadow: none;
            border-color: transparent;
        }
        .faq-accordion-shell .accordion-body {
            padding: 0 24px 24px;
            color: #475569;
            line-height: 1.75;
        }
        .faq-accordion-shell .accordion-body a {
            color: var(--primary-color);
            font-weight: 700;
            text-decoration: none;
        }
        .faq-accordion-shell .accordion-body a:hover {
            text-decoration: underline;
        }
        .faq-side-badge {
            display: inline-flex;
            align-items: center;
            border-radius: 999px;
            background: rgba(79, 70, 229, 0.08);
            color: var(--primary-color);
            padding: 8px 12px;
            font-size: 0.85rem;
            font-weight: 700;
            margin-bottom: 14px;
        }
        .faq-home-cta {
            min-width: 320px;
            justify-content: center;
        }
        .faq-mail-button,
        .faq-support-card .faq-mail-button {
            background: linear-gradient(180deg, #58adff 0%, #3f95f2 100%);
            color: white !important;
            padding: 20px 38px;
            border-radius: 999px;
            font-weight: 800;
            font-size: 1.08rem;
            letter-spacing: -0.2px;
            text-decoration: none !important;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            border: none;
            box-shadow: 0 9px 0 #2f7fe0, 0 18px 34px rgba(63, 149, 242, 0.32);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            min-width: 320px;
            min-height: 66px;
            text-align: center;
            white-space: nowrap;
        }
        .faq-mail-button:hover,
        .faq-support-card .faq-mail-button:hover {
            color: white !important;
            transform: translateY(2px);
            box-shadow: 0 7px 0 #2f7fe0, 0 15px 28px rgba(63, 149, 242, 0.28);
        }
        .faq-mail-button:active,
        .faq-support-card .faq-mail-button:active {
            transform: translateY(4px);
            box-shadow: 0 4px 0 #2f7fe0, 0 10px 20px rgba(63, 149, 242, 0.24);
        }
        .faq-mail-button-full {
            width: 100%;
        }
        .faq-support-card {
            max-width: 840px;
            margin: 42px auto 12px;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 249, 255, 0.95) 100%);
            border: 1px solid rgba(96, 165, 250, 0.14);
            border-radius: 30px;
            padding: 28px 24px 24px;
            box-shadow: 0 22px 54px rgba(59, 130, 246, 0.08);
        }
        .faq-support-title {
            font-size: 1.45rem;
            font-weight: 800;
            color: var(--text-main);
            letter-spacing: -0.4px;
            margin-bottom: 10px;
        }
        .faq-support-text {
            color: var(--text-muted);
            max-width: 560px;
            margin: 0 auto 22px;
            line-height: 1.7;
        }
        .b2b-hero-card {
            position: relative;
            overflow: hidden;
        }
        .b2b-hero-card::after {
            content: "";
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at top right, rgba(13, 110, 253, 0.16), transparent 34%),
                radial-gradient(circle at bottom left, rgba(13, 202, 240, 0.12), transparent 32%);
            pointer-events: none;
        }
        .b2b-contact-card {
            max-width: 960px;
            margin: 0 auto;
        }
        .b2b-hero-layout {
            display: grid;
            grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
            gap: 28px;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        .b2b-hero-copy {
            text-align: left;
            max-width: 100%;
            margin: 0;
        }
        .b2b-hero-copy .guide-subtitle {
            margin-left: 0;
        }
        .b2b-hero-copy .guide-hero-actions {
            justify-content: flex-start;
        }
        .b2b-hero-visual {
            position: relative;
            min-height: 520px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .b2b-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(10px);
        }
        .b2b-orb-1 {
            width: 220px;
            height: 220px;
            top: 10px;
            right: 26px;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.24) 0%, rgba(59, 130, 246, 0) 72%);
        }
        .b2b-orb-2 {
            width: 180px;
            height: 180px;
            left: 18px;
            bottom: 20px;
            background: radial-gradient(circle, rgba(16, 185, 129, 0.24) 0%, rgba(16, 185, 129, 0) 72%);
        }
        .b2b-dashboard-card,
        .b2b-floating-panel,
        .b2b-analytics-card,
        .b2b-trend-card {
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(226, 232, 240, 0.95);
            box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
            backdrop-filter: blur(18px);
        }
        .b2b-dashboard-main {
            position: relative;
            z-index: 2;
            width: min(100%, 470px);
            padding: 22px;
            border-radius: 32px;
        }
        .b2b-dashboard-top {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 14px;
            margin-bottom: 18px;
        }
        .b2b-dashboard-top h3,
        .b2b-analytics-copy h3 {
            margin: 6px 0 0;
            font-size: 1.32rem;
            font-weight: 800;
            color: var(--text-main);
        }
        .b2b-eyebrow,
        .b2b-panel-kicker {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.76rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: #2563eb;
        }
        .b2b-live-pill {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 12px;
            border-radius: 999px;
            background: #eff6ff;
            color: #2563eb;
            font-size: 0.82rem;
            font-weight: 800;
        }
        .b2b-live-pill span {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #22c55e;
            box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.12);
        }
        .b2b-chart-card {
            padding: 18px;
            border-radius: 24px;
            background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
            border: 1px solid rgba(191, 219, 254, 0.8);
        }
        .b2b-chart-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            margin-bottom: 14px;
        }
        .b2b-chart-head strong {
            color: var(--text-main);
            font-size: 0.98rem;
            font-weight: 800;
        }
        .b2b-chart-head span {
            color: #64748b;
            font-size: 0.84rem;
            font-weight: 700;
        }
        .b2b-bars {
            height: 180px;
            display: grid;
            grid-template-columns: repeat(8, minmax(0, 1fr));
            align-items: end;
            gap: 10px;
        }
        .b2b-bar {
            height: var(--bar-height);
            border-radius: 18px 18px 8px 8px;
            background: linear-gradient(180deg, #93c5fd 0%, #60a5fa 100%);
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.5);
        }
        .b2b-bar.is-accent {
            background: linear-gradient(180deg, #2563eb 0%, #0ea5e9 100%);
        }
        .b2b-metrics-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 14px;
            margin-top: 16px;
        }
        .b2b-metric-tile {
            padding: 16px;
            border-radius: 20px;
            background: #fff;
            border: 1px solid rgba(226, 232, 240, 0.95);
        }
        .b2b-metric-value {
            display: block;
            font-size: 1.55rem;
            line-height: 1;
            font-weight: 800;
            color: var(--text-main);
            margin-bottom: 8px;
        }
        .b2b-metric-label {
            display: block;
            color: #64748b;
            font-size: 0.87rem;
            line-height: 1.5;
        }
        .b2b-floating-panel {
            position: absolute;
            z-index: 3;
            padding: 16px 18px;
            border-radius: 24px;
            width: 220px;
        }
        .b2b-floating-panel strong {
            display: block;
            margin-top: 10px;
            color: var(--text-main);
            font-size: 0.95rem;
            line-height: 1.5;
        }
        .b2b-floating-panel-left {
            left: 0;
            top: 36px;
        }
        .b2b-floating-panel-right {
            right: -8px;
            bottom: 34px;
        }
        .b2b-mini-line {
            height: 56px;
            display: flex;
            align-items: end;
            gap: 8px;
            margin-top: 12px;
        }
        .b2b-mini-line span {
            flex: 1;
            border-radius: 999px;
            background: linear-gradient(180deg, #bfdbfe 0%, #3b82f6 100%);
        }
        .b2b-mini-line span:nth-child(1) { height: 34%; }
        .b2b-mini-line span:nth-child(2) { height: 52%; }
        .b2b-mini-line span:nth-child(3) { height: 46%; }
        .b2b-mini-line span:nth-child(4) { height: 78%; }
        .b2b-mini-line span:nth-child(5) { height: 100%; }
        .b2b-chip-list {
            list-style: none;
            padding: 0;
            margin: 12px 0 0;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .b2b-chip-list li {
            padding: 8px 12px;
            border-radius: 999px;
            background: #eff6ff;
            color: #1d4ed8;
            font-size: 0.82rem;
            font-weight: 800;
        }
        .b2b-analytics-showcase {
            margin-bottom: 24px;
        }
        .b2b-analytics-card {
            display: grid;
            grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
            gap: 24px;
            padding: 28px;
            border-radius: 32px;
        }
        .b2b-analytics-copy p {
            margin: 14px 0 0;
            color: var(--text-muted);
            line-height: 1.8;
            max-width: 520px;
        }
        .b2b-analytics-visual {
            display: grid;
            grid-template-columns: 180px 1fr;
            gap: 18px;
            align-items: center;
        }
        .b2b-donut-wrap {
            display: flex;
            justify-content: center;
        }
        .b2b-donut-chart {
            width: 160px;
            height: 160px;
            border-radius: 50%;
            background: conic-gradient(#2563eb 0 210deg, #0ea5e9 210deg 295deg, #dbeafe 295deg 360deg);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: inset 0 0 0 1px rgba(255,255,255,0.6);
        }
        .b2b-donut-core {
            width: 98px;
            height: 98px;
            border-radius: 50%;
            background: #fff;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            box-shadow: 0 10px 24px rgba(37, 99, 235, 0.12);
        }
        .b2b-donut-core strong {
            font-size: 1.5rem;
            line-height: 1;
            color: var(--text-main);
        }
        .b2b-donut-core span {
            margin-top: 6px;
            color: #64748b;
            font-size: 0.78rem;
            font-weight: 700;
        }
        .b2b-trend-card {
            padding: 16px;
            border-radius: 24px;
        }
        .b2b-trend-line {
            padding: 8px 8px 2px;
            border-radius: 18px;
            background: linear-gradient(180deg, #eff6ff 0%, #ffffff 100%);
            border: 1px solid rgba(191, 219, 254, 0.75);
        }
        .b2b-trend-line svg {
            width: 100%;
            height: auto;
            display: block;
        }
        .b2b-trend-stats {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 12px;
            margin-top: 14px;
        }
        .b2b-trend-stats strong {
            display: block;
            font-size: 1.2rem;
            color: var(--text-main);
            font-weight: 800;
        }
        .b2b-trend-stats span {
            display: block;
            margin-top: 4px;
            color: #64748b;
            font-size: 0.82rem;
            line-height: 1.5;
        }
        .b2b-section-visual,
        .b2b-wide-layout,
        .b2b-contact-layout {
            display: grid;
            gap: 22px;
        }
        .b2b-section-visual {
            grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.8fr);
            margin-bottom: 22px;
        }
        .b2b-visual-board,
        .b2b-stack-card,
        .b2b-demo-card {
            background: rgba(255, 255, 255, 0.92);
            border: 1px solid rgba(226, 232, 240, 0.95);
            box-shadow: 0 22px 54px rgba(15, 23, 42, 0.07);
            border-radius: 28px;
        }
        .b2b-visual-board {
            padding: 22px;
        }
        .b2b-visual-header {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 16px;
            margin-bottom: 18px;
        }
        .b2b-visual-header strong {
            color: var(--text-main);
            font-size: 1.1rem;
            font-weight: 800;
        }
        .b2b-segment-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 14px;
        }
        .b2b-segment-card {
            padding: 18px 16px;
            border-radius: 22px;
            background: linear-gradient(180deg, #f8fbff 0%, #eff6ff 100%);
            border: 1px solid rgba(191, 219, 254, 0.8);
        }
        .b2b-segment-card i {
            display: inline-flex;
            width: 42px;
            height: 42px;
            align-items: center;
            justify-content: center;
            border-radius: 14px;
            background: #fff;
            color: #2563eb;
            font-size: 1.15rem;
            box-shadow: 0 10px 18px rgba(37, 99, 235, 0.08);
            margin-bottom: 14px;
        }
        .b2b-segment-card strong,
        .b2b-process-node strong {
            display: block;
            color: var(--text-main);
            font-size: 0.98rem;
            font-weight: 800;
        }
        .b2b-segment-card span,
        .b2b-process-node span {
            display: block;
            margin-top: 6px;
            color: #64748b;
            font-size: 0.84rem;
            line-height: 1.5;
        }
        .b2b-stack-card {
            padding: 18px;
            height: 100%;
        }
        .b2b-progress-list {
            display: grid;
            gap: 14px;
            margin-top: 16px;
        }
        .b2b-progress-list div {
            display: grid;
            gap: 8px;
        }
        .b2b-progress-list label {
            color: var(--text-main);
            font-size: 0.88rem;
            font-weight: 700;
        }
        .b2b-progress-list span {
            position: relative;
            display: block;
            height: 10px;
            border-radius: 999px;
            background: #e5eefc;
            overflow: hidden;
        }
        .b2b-progress-list span::after {
            content: "";
            position: absolute;
            inset: 0 auto 0 0;
            width: var(--fill);
            border-radius: inherit;
            background: linear-gradient(90deg, #0ea5e9 0%, #2563eb 100%);
        }
        .b2b-inline-visual {
            margin-top: 18px;
            padding: 16px;
            border-radius: 20px;
            background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
            border: 1px solid rgba(191, 219, 254, 0.65);
        }
        .b2b-inline-pill {
            display: inline-flex;
            padding: 7px 12px;
            border-radius: 999px;
            background: #eff6ff;
            color: #2563eb;
            font-size: 0.78rem;
            font-weight: 800;
            margin-bottom: 12px;
        }
        .b2b-dot-flow {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
        }
        .b2b-dot-flow span {
            flex: 1;
            position: relative;
            height: 18px;
        }
        .b2b-dot-flow span::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 2px;
            background: #bfdbfe;
            transform: translateY(-50%);
        }
        .b2b-dot-flow span::after {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: linear-gradient(180deg, #0ea5e9 0%, #2563eb 100%);
            transform: translate(-50%, -50%);
            box-shadow: 0 0 0 5px rgba(37, 99, 235, 0.1);
        }
        .b2b-outcome-bars {
            height: 88px;
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            align-items: end;
            gap: 10px;
        }
        .b2b-outcome-bars span {
            height: var(--bar-height);
            border-radius: 14px 14px 6px 6px;
            background: linear-gradient(180deg, #7dd3fc 0%, #2563eb 100%);
        }
        .b2b-wide-layout {
            grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
            align-items: center;
        }
        .b2b-process-visual {
            position: relative;
            padding: 18px 18px 18px 32px;
            border-radius: 24px;
            background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
            border: 1px solid rgba(191, 219, 254, 0.75);
        }
        .b2b-process-line {
            position: absolute;
            left: 18px;
            top: 24px;
            bottom: 24px;
            width: 2px;
            background: linear-gradient(180deg, #93c5fd 0%, #2563eb 100%);
        }
        .b2b-process-node {
            position: relative;
            padding: 8px 0 8px 18px;
        }
        .b2b-process-node::before {
            content: "";
            position: absolute;
            left: -19px;
            top: 16px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #2563eb;
            box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.12);
        }
        .b2b-contact-layout {
            grid-template-columns: minmax(0, 1fr) minmax(260px, 0.9fr);
            align-items: center;
        }
        .b2b-demo-card {
            padding: 22px;
        }
        .b2b-demo-list {
            display: grid;
            gap: 12px;
            margin-top: 16px;
        }
        .b2b-demo-list div {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px 14px;
            border-radius: 18px;
            background: linear-gradient(180deg, #f8fbff 0%, #eff6ff 100%);
            border: 1px solid rgba(191, 219, 254, 0.75);
            color: var(--text-main);
            font-weight: 700;
        }
        .b2b-demo-list i {
            color: #2563eb;
            font-size: 1rem;
        }
        .b2b-simple-shell {
            background: linear-gradient(180deg, #f8fbff 0%, #ffffff 28%, #f8fafc 100%);
        }
        .b2b-simple-hero {
            padding: 18px 0 24px;
        }
        .b2b-simple-hero-grid,
        .b2b-simple-two-col {
            display: grid;
            grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
            gap: 20px;
            align-items: center;
        }
        .b2b-simple-copy,
        .b2b-simple-panel,
        .b2b-simple-card,
        .b2b-simple-cta {
            background: rgba(255, 255, 255, 0.94);
            border: 1px solid rgba(226, 232, 240, 0.92);
            box-shadow: 0 18px 44px rgba(15, 23, 42, 0.06);
        }
        .b2b-simple-copy,
        .b2b-simple-panel,
        .b2b-simple-card {
            padding: 24px;
            border-radius: 28px;
        }
        .b2b-simple-title {
            font-size: 3rem;
            line-height: 1.05;
            letter-spacing: -1.3px;
            font-weight: 800;
            color: var(--text-main);
            margin: 0 0 16px;
        }
        .b2b-simple-text,
        .b2b-simple-section-head p,
        .b2b-simple-cta p {
            color: var(--text-muted);
            line-height: 1.8;
            font-size: 1rem;
        }
        .b2b-simple-actions {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 22px;
        }
        .b2b-simple-panel-head {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 12px;
            margin-bottom: 18px;
        }
        .b2b-simple-panel-head strong {
            color: var(--text-main);
            font-size: 1.05rem;
            font-weight: 800;
        }
        .b2b-simple-metrics {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 12px;
            margin-bottom: 16px;
        }
        .b2b-simple-metrics strong {
            display: block;
            color: var(--text-main);
            font-size: 1.4rem;
            font-weight: 800;
        }
        .b2b-simple-metrics span,
        .b2b-simple-line-labels span {
            color: #64748b;
            font-size: 0.82rem;
            line-height: 1.5;
        }
        .b2b-simple-bars {
            height: 148px;
            display: grid;
            grid-template-columns: repeat(5, minmax(0, 1fr));
            align-items: end;
            gap: 10px;
        }
        .b2b-simple-bars span {
            height: var(--bar-height);
            border-radius: 16px 16px 6px 6px;
            background: linear-gradient(180deg, #93c5fd 0%, #2563eb 100%);
        }
        .b2b-simple-points,
        .b2b-simple-card-grid,
        .b2b-simple-process {
            display: grid;
            gap: 16px;
        }
        .b2b-simple-points,
        .b2b-simple-card-grid {
            grid-template-columns: repeat(3, minmax(0, 1fr));
            margin-top: 18px;
        }
        .b2b-simple-point {
            padding: 18px 16px;
            border-radius: 22px;
            background: rgba(255, 255, 255, 0.76);
            border: 1px solid rgba(226, 232, 240, 0.9);
        }
        .b2b-simple-point h2,
        .b2b-simple-card h3,
        .b2b-simple-cta h2 {
            color: var(--text-main);
            font-weight: 800;
            margin: 0 0 10px;
        }
        .b2b-simple-point h2,
        .b2b-simple-card h3 {
            font-size: 1.15rem;
        }
        .b2b-simple-point p {
            margin: 0;
            color: var(--text-muted);
            line-height: 1.7;
        }
        .b2b-simple-section {
            padding: 24px 0;
        }
        .b2b-simple-section-soft {
            background: linear-gradient(180deg, rgba(239, 246, 255, 0.52) 0%, rgba(248, 250, 252, 0) 100%);
        }
        .b2b-simple-section-head {
            max-width: 700px;
            margin: 0 auto 20px;
            text-align: center;
        }
        .b2b-simple-section-head h2 {
            color: var(--text-main);
            font-size: 2.2rem;
            line-height: 1.08;
            letter-spacing: -0.8px;
            font-weight: 800;
            margin-bottom: 12px;
        }
        .b2b-simple-chart-card {
            overflow: hidden;
        }
        .b2b-simple-line {
            position: relative;
            display: flex;
            align-items: end;
            justify-content: space-between;
            gap: 14px;
            height: 140px;
            margin-top: 12px;
        }
        .b2b-simple-line::before {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            top: 50%;
            height: 2px;
            background: #dbeafe;
            transform: translateY(-50%);
        }
        .b2b-simple-line span {
            position: relative;
            width: 18%;
            border-radius: 999px;
            background: linear-gradient(180deg, #7dd3fc 0%, #2563eb 100%);
        }
        .b2b-simple-line span:nth-child(1) { height: 36%; }
        .b2b-simple-line span:nth-child(2) { height: 48%; }
        .b2b-simple-line span:nth-child(3) { height: 62%; }
        .b2b-simple-line span:nth-child(4) { height: 78%; }
        .b2b-simple-line span:nth-child(5) { height: 92%; }
        .b2b-simple-line-labels {
            display: flex;
            justify-content: space-between;
            gap: 8px;
            margin-top: 10px;
        }
        .b2b-simple-process {
            grid-template-columns: repeat(3, minmax(0, 1fr));
            margin-top: 18px;
        }
        .b2b-simple-cta {
            padding: 28px;
            border-radius: 30px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
        }
        .b2b-simple-cta h2 {
            font-size: 2rem;
            line-height: 1.08;
            letter-spacing: -0.8px;
        }
        .b2b-stat-card,
        .b2b-copy-card,
        .b2b-image-card,
        .b2b-quote-card,
        .b2b-cta-shell {
            background: rgba(255, 255, 255, 0.92);
            border: 1px solid rgba(226, 232, 240, 0.95);
            box-shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
        }
        .b2b-premium-shell {
            background:
                radial-gradient(circle at top left, rgba(59, 130, 246, 0.16), transparent 28%),
                radial-gradient(circle at top right, rgba(250, 204, 21, 0.18), transparent 24%),
                linear-gradient(180deg, #f7fbff 0%, #ffffff 26%, #f8fafc 100%);
            padding-top: 76px;
        }
        .b2b-opening-screen {
            min-height: calc(100vh - 76px);
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
        }
        .b2b-opening-main {
            flex: 1 1 auto;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 16px;
            padding: 0 0 6px;
        }
        .b2b-opening-screen .marquee-section {
            margin-top: auto;
            flex-shrink: 0;
            padding: 12px 0;
        }
        .b2b-premium-hero,
        .b2b-premium-section {
            padding: 34px 0;
        }
        .b2b-premium-hero {
            padding-top: 0;
        }
        .b2b-premium-hero-grid,
        .b2b-premium-split {
            display: grid;
            grid-template-columns: 1fr;
            gap: 0;
            align-items: center;
        }
        .b2b-premium-copy {
            max-width: 720px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }
        .b2b-premium-topline {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 14px;
        }
        .badge-pill-soft {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 10px 16px;
            border-radius: 999px;
            background: linear-gradient(135deg, rgba(255,255,255,0.92) 0%, rgba(239,246,255,0.96) 100%);
            border: 1px solid rgba(191, 219, 254, 0.95);
            box-shadow: 0 14px 32px rgba(59, 130, 246, 0.12);
            color: #1e40af;
            font-size: 0.92rem;
            font-weight: 800;
            letter-spacing: -0.1px;
            max-width: 100%;
            flex-wrap: wrap;
            white-space: normal;
            text-align: center;
        }
        .b2b-premium-title {
            font-size: 2.75rem;
            line-height: 1.08;
            letter-spacing: -1.7px;
            font-weight: 800;
            color: #0f172a;
            max-width: none;
            margin: 0 0 12px;
            overflow-wrap: break-word;
        }
        .b2b-premium-text,
        .b2b-premium-section-head p,
        .b2b-premium-split-copy p,
        .b2b-premium-cta-copy p {
            font-size: 1rem;
            line-height: 1.72;
            color: #475569;
            overflow-wrap: break-word;
        }
        .b2b-premium-actions {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 20px;
        }
        .b2b-premium-band-card,
        .b2b-premium-feature-card,
        .b2b-premium-cta {
            position: relative;
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(226, 232, 240, 0.92);
            box-shadow: 0 24px 64px rgba(15, 23, 42, 0.08);
            backdrop-filter: blur(12px);
        }
        .b2b-premium-dashboard-top {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 12px;
        }
        .b2b-premium-eyebrow {
            padding: 8px 12px;
            background: rgba(59, 130, 246, 0.1);
            color: #2563eb;
        }
        .b2b-premium-status {
            padding: 8px 12px;
            background: rgba(34, 197, 94, 0.12);
            color: #15803d;
        }
        .b2b-premium-stat-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 12px;
        }
        .b2b-premium-stat-grid {
            margin-bottom: 16px;
        }
        .b2b-premium-stat-grid strong {
            display: block;
            font-size: 1.4rem;
            color: #0f172a;
            font-weight: 800;
        }
        .b2b-premium-stat-grid span {
            color: #64748b;
            font-size: 0.84rem;
            line-height: 1.5;
            font-style: normal;
        }
        .b2b-premium-band-grid {
            display: grid;
            gap: 18px;
        }
        .b2b-premium-band-grid {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }
        .b2b-premium-band {
            padding: 0 0 4px;
        }
        .b2b-premium-band-card,
        .b2b-premium-feature-card {
            padding: 22px 20px;
            border-radius: 26px;
            height: 100%;
        }
        .b2b-premium-band-card h2,
        .b2b-premium-section-head h2,
        .b2b-premium-split-copy h2,
        .b2b-premium-cta-copy h2,
        .b2b-premium-feature-card h3 {
            color: #0f172a;
            font-weight: 800;
            overflow-wrap: break-word;
        }
        .b2b-premium-band-card h2 {
            font-size: 1.15rem;
            margin: 12px 0 8px;
        }
        .b2b-premium-band-card p,
        .b2b-premium-feature-card p {
            margin: 0;
            color: #475569;
            line-height: 1.58;
            font-size: 0.95rem;
            overflow-wrap: break-word;
        }
        .b2b-premium-band-card {
            background: linear-gradient(180deg, rgba(255,255,255,0.94) 0%, rgba(248,250,252,0.98) 100%);
            border: 1px solid rgba(226, 232, 240, 0.9);
            box-shadow: 0 18px 44px rgba(15, 23, 42, 0.05);
            transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
        }
        .b2b-premium-band-card:hover {
            transform: translateY(-4px);
            border-color: rgba(96, 165, 250, 0.34);
            box-shadow: 0 26px 54px rgba(59, 130, 246, 0.12);
        }
        .b2b-opening-screen::before {
            content: "";
            position: absolute;
            inset: 0 0 auto 0;
            height: 440px;
            background:
                radial-gradient(circle at 50% 8%, rgba(59, 130, 246, 0.18), transparent 34%),
                radial-gradient(circle at 20% 18%, rgba(250, 204, 21, 0.14), transparent 24%),
                radial-gradient(circle at 80% 18%, rgba(16, 185, 129, 0.12), transparent 22%);
            pointer-events: none;
        }
        .b2b-premium-section-head {
            max-width: 700px;
            margin: 0 auto 28px;
            text-align: center;
        }
        .b2b-opening-screen .guide-badge {
            margin-bottom: 0;
            background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
            color: #fff;
            border: 1px solid rgba(30, 64, 175, 0.24);
            box-shadow: 0 18px 44px rgba(15, 23, 42, 0.12);
        }
        .b2b-opening-screen .container {
            position: relative;
        }
        .b2b-premium-copy::before {
            content: "";
            position: absolute;
            left: 50%;
            top: -22px;
            width: 180px;
            height: 180px;
            transform: translateX(-50%);
            background: radial-gradient(circle, rgba(96, 165, 250, 0.16) 0%, rgba(96, 165, 250, 0) 72%);
            pointer-events: none;
            z-index: -1;
        }
        .b2b-premium-section-head h2,
        .b2b-premium-split-copy h2,
        .b2b-premium-cta-copy h2 {
            font-size: 2.6rem;
            line-height: 1.02;
            letter-spacing: -1px;
            margin: 0 0 14px;
        }
        .b2b-premium-visual-center {
            display: flex;
            justify-content: center;
            margin-top: 14px;
            margin-bottom: 10px;
        }
        .b2b-premium-section-soft {
            background: linear-gradient(180deg, rgba(219, 234, 254, 0.28) 0%, rgba(255, 255, 255, 0.84) 100%);
        }
        .b2b-premium-section-vocab {
            scroll-margin-top: 30px;
            background:
                radial-gradient(circle at top left, rgba(96, 165, 250, 0.16), transparent 28%),
                radial-gradient(circle at top right, rgba(250, 204, 21, 0.16), transparent 24%),
                linear-gradient(180deg, rgba(239, 246, 255, 0.92) 0%, rgba(255, 255, 255, 0.98) 100%);
        }
        .b2b-premium-section-cta {
            background:
                radial-gradient(circle at 18% 18%, rgba(96, 165, 250, 0.18), transparent 24%),
                radial-gradient(circle at 82% 20%, rgba(250, 204, 21, 0.18), transparent 22%),
                radial-gradient(circle at 50% 100%, rgba(16, 185, 129, 0.12), transparent 30%),
                linear-gradient(180deg, rgba(248, 250, 252, 0.96) 0%, rgba(239, 246, 255, 0.94) 52%, rgba(254, 249, 195, 0.3) 100%);
        }
        .b2b-premium-section,
        .b2b-premium-section-soft {
            padding-top: 72px;
            padding-bottom: 72px;
        }
        .b2b-premium-split {
            max-width: 760px;
            margin: 0 auto;
        }
        .b2b-premium-split-copy {
            text-align: center;
        }
        .b2b-premium-split-copy .guide-section-label {
            margin-left: auto;
            margin-right: auto;
        }
        .b2b-premium-mini-list {
            max-width: 720px;
            margin: 24px auto 0;
        }
        .b2b-premium-mini-list {
            display: grid;
            gap: 14px;
        }
        .b2b-premium-mini-list div {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 16px 18px;
            border-radius: 18px;
            background: rgba(255, 255, 255, 0.84);
            border: 1px solid rgba(226, 232, 240, 0.88);
            min-width: 0;
        }
        .b2b-premium-mini-list div span {
            flex: 1 1 auto;
            min-width: 0;
            overflow-wrap: break-word;
            text-align: start;
        }
        .b2b-premium-mini-list i {
            width: 44px;
            height: 44px;
            border-radius: 14px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #dbeafe 0%, #fde68a 100%);
            color: #1d4ed8;
            font-size: 1.2rem;
            flex-shrink: 0;
        }
        .b2b-premium-cta {
            width: 100%;
            max-width: 860px;
            margin: 0 auto;
            padding: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 18px;
            text-align: center;
            background: transparent;
            border: 0;
            box-shadow: none;
            backdrop-filter: none;
        }
        .b2b-premium-cta-copy {
            max-width: 760px;
            text-align: center;
        }
        .b2b-cta-glow-button {
            position: relative;
            z-index: 1;
        }
        .b2b-cta-glow-button::before {
            content: "";
            position: absolute;
            left: 50%;
            top: 50%;
            width: 240px;
            height: 240px;
            transform: translate(-50%, -50%);
            background:
                radial-gradient(circle, rgba(34, 197, 94, 0.38) 0%, rgba(74, 222, 128, 0.24) 38%, rgba(34, 197, 94, 0.08) 58%, rgba(34, 197, 94, 0) 76%);
            pointer-events: none;
            z-index: -1;
            filter: blur(4px);
        }
        .faq-translate-anchor,
        .goog-te-banner-frame.skiptranslate,
        .goog-te-gadget-icon,
        .goog-logo-link,
        .goog-te-gadget span {
            display: none !important;
        }
        .goog-te-gadget {
            height: 0 !important;
            overflow: hidden !important;
            font-size: 0 !important;
        }
        body {
            top: 0 !important;
        }
        @media (max-width: 991px) {
            .guide-page-shell {
                padding-top: 104px;
            }
            .b2b-opening-screen {
                min-height: auto;
            }
            .b2b-opening-main {
                gap: 18px;
                padding: 0;
            }
            .b2b-premium-shell {
                padding-top: 88px;
            }
            .b2b-premium-topline {
                gap: 10px;
                margin-bottom: 12px;
            }
            .b2b-simple-hero-grid,
            .b2b-simple-two-col,
            .b2b-simple-points,
            .b2b-simple-card-grid,
            .b2b-simple-process,
            .b2b-premium-hero-grid,
            .b2b-premium-split,
            .b2b-premium-band-grid {
                grid-template-columns: 1fr;
            }
            .b2b-simple-title {
                font-size: 2.45rem;
            }
            .b2b-premium-title {
                font-size: 2.3rem;
                max-width: none;
                line-height: 1.1;
            }
            .guide-title {
                font-size: 2.4rem;
            }
            .guide-summary-grid,
            .guide-grid-two,
            .guide-feature-grid,
            .guide-settings-grid,
            .guide-tip-grid,
            .guide-pricing-wrap,
            .guide-mini-steps {
                grid-template-columns: 1fr;
            }
            .b2b-hero-layout,
            .b2b-section-visual,
            .b2b-analytics-card,
            .b2b-analytics-visual,
            .b2b-wide-layout,
            .b2b-contact-layout {
                grid-template-columns: 1fr;
            }
            .b2b-hero-copy {
                text-align: center;
            }
            .b2b-hero-copy .guide-subtitle {
                margin-right: auto;
                margin-left: auto;
            }
            .b2b-hero-copy .guide-hero-actions {
                justify-content: center;
            }
            .b2b-hero-visual {
                min-height: 480px;
            }
            .b2b-floating-panel-left {
                left: 18px;
            }
            .b2b-floating-panel-right {
                right: 18px;
            }
            .b2b-segment-grid {
                grid-template-columns: 1fr;
            }
            .guide-visual-wrap {
                min-height: 360px;
                margin-top: 10px;
            }
            .b2b-premium-hero-visual {
                min-height: 480px;
            }
            .b2b-premium-boardflow-sources-row {
                grid-template-columns: 1fr;
            }
            .gfc-1 { top: 0; left: 0; }
            .gfc-2 { right: 0; top: 92px; }
            .gfc-3 { left: 22px; bottom: 0; }
            .faq-page-heading {
                font-size: 2rem;
            }
            .faq-content-section {
                padding-top: 104px;
            }
            .faq-surface-head {
                align-items: flex-start;
                flex-direction: column;
            }
            .faq-guide-card {
                flex-direction: column;
                align-items: flex-start;
            }
            .faq-content-shell {
                padding-top: 32px;
                padding-bottom: 56px;
            }
            .faq-language-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 768px) {
            .guide-page-shell {
                padding-top: 96px;
            }
            .b2b-opening-main {
                gap: 16px;
            }
            .b2b-premium-shell {
                padding-top: 88px;
            }
            .b2b-premium-topline {
                flex-direction: column;
            }
            .badge-pill-soft {
                font-size: 0.88rem;
                padding: 9px 14px;
            }
            .b2b-simple-title {
                font-size: 2rem;
                line-height: 1.08;
            }
            .b2b-premium-title {
                font-size: 1.9rem;
                line-height: 1.12;
            }
            .b2b-simple-section-head h2,
            .b2b-simple-cta h2 {
                font-size: 1.8rem;
            }
            .b2b-premium-section-head h2,
            .b2b-premium-split-copy h2,
            .b2b-premium-cta-copy h2 {
                font-size: 1.95rem;
            }
            .b2b-simple-copy,
            .b2b-simple-panel,
            .b2b-simple-card,
            .b2b-simple-cta {
                padding: 20px 16px;
                border-radius: 24px;
            }
            .b2b-premium-band-card,
            .b2b-premium-cta,
            .b2b-premium-hero-visual {
                padding: 20px 16px;
                border-radius: 24px;
            }
            .b2b-premium-band {
                padding-bottom: 4px;
            }
            .b2b-simple-actions,
            .b2b-simple-cta {
                flex-direction: column;
                align-items: stretch;
            }
            .b2b-premium-actions,
            .b2b-premium-cta {
                flex-direction: column;
                align-items: stretch;
            }
            .b2b-simple-metrics {
                grid-template-columns: 1fr;
            }
            .b2b-premium-stat-grid {
                grid-template-columns: 1fr;
            }
            .b2b-premium-boardflow {
                min-height: auto;
            }
            .b2b-premium-boardflow-panel {
                width: 100%;
                max-width: 100%;
            }
            .b2b-premium-pill-row span {
                padding: 8px 12px;
                font-size: 0.76rem;
            }
            .guide-hero-card {
                padding: 24px 18px;
                border-radius: 30px;
            }
            .guide-title,
            .guide-section-head h2,
            .guide-contact-card h2 {
                font-size: 2rem;
                line-height: 1.14;
            }
            .guide-subtitle {
                font-size: 0.98rem;
            }
            .guide-hero-actions,
            .guide-contact-actions {
                flex-direction: column;
            }
            .guide-secondary-cta,
            .guide-contact-actions .btn-section-cta {
                width: 100%;
            }
            .guide-visual-wrap {
                min-height: 320px;
            }
            .guide-visual-main {
                width: 220px;
                height: 220px;
            }
            .guide-visual-caption {
                width: 100%;
                padding: 18px 16px;
                border-radius: 20px;
            }
            .guide-visual-caption h2 {
                font-size: 1.02rem;
            }
            .guide-floating-card {
                width: 180px;
                padding: 12px 14px;
                border-radius: 16px;
            }
            .guide-floating-card strong {
                font-size: 0.9rem;
            }
            .guide-floating-card small {
                font-size: 0.78rem;
            }
            .guide-timeline-card {
                grid-template-columns: 1fr;
            }
            .guide-timeline-num {
                width: 48px;
                height: 48px;
            }
            .guide-summary-card,
            .guide-block-card,
            .guide-wide-card,
            .guide-feature-card,
            .guide-contact-card,
            .guide-price-card,
            .guide-tip-card {
                padding: 20px 16px;
                border-radius: 24px;
            }
            .faq-content-shell {
                padding-top: 24px;
                padding-bottom: 44px;
            }
            .lang-grid {
                grid-template-columns: 1fr;
            }
            .faq-topbar {
                flex-direction: column;
                align-items: stretch;
                gap: 12px;
                margin-bottom: 22px;
            }
            .faq-language-button {
                justify-content: center;
            }
            .faq-content-section {
                padding: 96px 0 0;
            }
            .faq-hero-panel {
                padding: 26px 18px 22px;
                border-radius: 28px;
                margin-bottom: 20px;
            }
            .faq-page-heading {
                font-size: 1.8rem;
            }
            .faq-topic-row {
                gap: 10px;
            }
            .faq-topic-pill {
                width: 100%;
                justify-content: center;
                border-radius: 16px;
                padding: 11px 14px;
                font-size: 0.95rem;
            }
            .faq-guide-card {
                padding: 18px 16px;
                border-radius: 22px;
            }
            .faq-guide-copy h3 {
                font-size: 1.05rem;
            }
            .faq-guide-cta {
                width: 100%;
            }
            .faq-surface-card {
                padding: 16px;
                border-radius: 24px;
            }
            .faq-accordion-shell .accordion-button {
                padding: 20px 18px;
                font-size: 1rem;
            }
            .faq-accordion-shell .accordion-body {
                padding: 0 18px 20px;
                font-size: 0.96rem;
                line-height: 1.7;
            }
            .faq-mail-button {
                width: 100%;
                min-height: 62px;
                min-width: 0;
                font-size: 1rem;
            }
            .faq-home-cta {
                width: 100%;
                min-width: 0;
            }
            .b2b-dashboard-main {
                width: 100%;
                padding: 18px;
                border-radius: 24px;
            }
            .b2b-hero-visual {
                min-height: 420px;
            }
            .b2b-floating-panel {
                width: 170px;
                padding: 14px;
                border-radius: 18px;
            }
            .b2b-floating-panel-left {
                left: 2px;
                top: 18px;
            }
            .b2b-floating-panel-right {
                right: 2px;
                bottom: 18px;
            }
            .b2b-metrics-grid,
            .b2b-trend-stats {
                grid-template-columns: 1fr;
            }
            .b2b-analytics-card {
                padding: 18px;
                border-radius: 24px;
            }
            .b2b-analytics-visual {
                gap: 14px;
            }
            .b2b-donut-chart {
                width: 140px;
                height: 140px;
            }
            .b2b-donut-core {
                width: 88px;
                height: 88px;
            }
            .b2b-section-visual,
            .b2b-contact-layout {
                gap: 16px;
            }
            .b2b-visual-board,
            .b2b-stack-card,
            .b2b-demo-card,
            .b2b-process-visual {
                border-radius: 22px;
            }
            .faq-support-card {
                margin-top: 32px;
                margin-bottom: 0;
                padding: 22px 16px 18px;
                border-radius: 24px;
            }
            .faq-support-title {
                font-size: 1.25rem;
            }
            .faq-support-text {
                font-size: 0.95rem;
                margin-bottom: 18px;
            }
            .faq-language-grid {
                grid-template-columns: 1fr;
            }
        }
