﻿        /* --- DESIGN TOKENS --------------------------------- */
        :root {
            --tps-green:   #09cd91;
            --tps-green-d: #07b07c;
            --tps-blue:    #4fc3f7;
            --tps-indigo:  #818cf8;
            --tps-purple:  #7c6dfa;
            --tps-card-bg: rgba(255,255,255,0.035);
            --tps-card-border: rgba(255,255,255,0.07);
            --tps-muted: rgba(200,208,220,0.65);
            --tps-radius: 20px;
            --tps-t: 0.25s ease;
        }

        /* --- HERO ------------------------------------------- */
        .tps-hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 130px 20px 90px;
            position: relative;
            overflow: hidden;
        }
        .tps-orb {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
        }
        .tps-orb-1 {
            top: -10%; right: -8%;
            width: 680px; height: 680px;
            background: radial-gradient(circle, rgba(79,195,247,.1) 0%, transparent 65%);
        }
        .tps-orb-2 {
            bottom: 0%; left: -12%;
            width: 520px; height: 520px;
            background: radial-gradient(circle, rgba(124,109,250,.09) 0%, transparent 65%);
        }
        .tps-orb-3 {
            top: 38%; left: 42%;
            width: 360px; height: 360px;
            background: radial-gradient(circle, rgba(9,205,145,.06) 0%, transparent 65%);
        }
        .tps-hero-inner { position: relative; z-index: 1; }

        .tps-badge {
            display: inline-flex; align-items: center; gap: 7px;
            background: rgba(79,195,247,.08);
            border: 1px solid rgba(79,195,247,.22);
            border-radius: 50px; padding: 5px 16px;
            font-size: 11.5px; font-weight: 600; color: var(--tps-blue);
            letter-spacing: .06em; text-transform: uppercase; margin-bottom: 28px;
        }
        .tps-badge-dot {
            width: 6px; height: 6px; border-radius: 50%;
            background: var(--tps-blue);
            animation: tps-pulse 1.8s ease-in-out infinite;
        }
        @keyframes tps-pulse {
            0%,100%{ opacity:1; transform:scale(1); }
            50%    { opacity:.4; transform:scale(.7); }
        }

        .tps-hero-headline {
            font-size: clamp(2.3rem, 5.2vw, 3.7rem);
            font-weight: 800; line-height: 1.12; color: #f0f4f8;
            margin-bottom: 22px; letter-spacing: -.02em;
        }
        .tps-grad-blue {
            background: linear-gradient(135deg, var(--tps-blue) 0%, var(--tps-indigo) 100%);
            -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
        }
        .tps-grad-green {
            background: linear-gradient(135deg, var(--tps-green) 0%, var(--tps-blue) 100%);
            -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
        }
        .tps-hero-sub {
            font-size: 1.08rem; color: var(--tps-muted);
            line-height: 1.75; max-width: 560px; margin-bottom: 40px;
        }
        .tps-btn-primary {
            display: inline-flex; align-items: center; gap: 8px;
            background: linear-gradient(135deg, var(--tps-blue) 0%, var(--tps-indigo) 100%);
            color: #050e1c; font-weight: 700; font-size: .9rem;
            padding: 13px 30px; border-radius: 10px; text-decoration: none;
            transition: opacity var(--tps-t), transform var(--tps-t); letter-spacing: .02em;
        }
        .tps-btn-primary:hover { opacity:.88; transform:translateY(-2px); color:#050e1c; text-decoration:none; }
        .tps-btn-secondary {
            display: inline-flex; align-items: center; gap: 8px;
            background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
            color: #d8e0ec; font-weight: 600; font-size: .9rem;
            padding: 13px 28px; border-radius: 10px; text-decoration: none;
            transition: background var(--tps-t), border-color var(--tps-t), transform var(--tps-t);
        }
        .tps-btn-secondary:hover { background:rgba(255,255,255,.1); border-color:rgba(255,255,255,.2); transform:translateY(-2px); color:#f0f4f8; text-decoration:none; }

        .tps-hero-stats { display:flex; flex-wrap:wrap; gap:32px; margin-top:52px; }
        .tps-stat-value { font-size:1.8rem; font-weight:800; color:var(--tps-blue); line-height:1; }
        .tps-stat-label { font-size:.78rem; color:var(--tps-muted); margin-top:4px; letter-spacing:.03em; }
        .tps-stat-div   { width:1px; background:rgba(255,255,255,.1); align-self:stretch; }

        /* hero terminal card */
        .tps-terminal {
            background: rgba(8,12,22,.7);
            border: 1px solid rgba(79,195,247,.15);
            border-radius: var(--tps-radius);
            overflow: hidden; backdrop-filter: blur(16px);
            box-shadow: 0 20px 60px rgba(0,0,0,.4);
        }
        .tps-terminal-bar {
            background: rgba(255,255,255,.05);
            border-bottom: 1px solid rgba(255,255,255,.06);
            padding: 12px 16px; display:flex; align-items:center; gap:7px;
        }
        .tps-dot { width:10px; height:10px; border-radius:50%; }
        .tps-dot-r{background:#f06292;} .tps-dot-y{background:#ffb74d;} .tps-dot-g{background:#09cd91;}
        .tps-terminal-title { font-size:.72rem; color:rgba(200,208,220,.4); margin-left:8px; letter-spacing:.05em; }
        .tps-terminal-body  { padding:20px 20px 16px; }
        .tps-chart-bars { display:flex; align-items:flex-end; gap:5px; height:80px; margin-bottom:14px; }
        .tps-bar { flex:1; border-radius:4px 4px 0 0; }
        .tps-bar-g{background:rgba(9,205,145,.55);} .tps-bar-b{background:rgba(79,195,247,.45);} .tps-bar-p{background:rgba(124,109,250,.45);}
        .tps-chart-row { display:flex; align-items:center; justify-content:space-between; padding:8px 0; border-top:1px solid rgba(255,255,255,.05); }
        .tps-chart-label { font-size:.75rem; color:rgba(200,208,220,.7); display:flex; align-items:center; gap:8px; }
        .tps-chart-val { font-size:.75rem; font-weight:700; padding:2px 8px; border-radius:20px; }
        .tps-val-g{background:rgba(9,205,145,.12);color:var(--tps-green);}
        .tps-val-b{background:rgba(79,195,247,.12);color:var(--tps-blue);}
        .tps-val-p{background:rgba(124,109,250,.12);color:var(--tps-indigo);}

        .tps-floating-badge {
            z-index: 2;
            position:absolute; display:inline-flex; align-items:center; gap:6px;
            background:rgba(79,195,247,.1); border:1px solid rgba(79,195,247,.25);
            border-radius:8px; padding:7px 12px; font-size:.75rem; font-weight:600;
            color:var(--tps-blue); white-space:nowrap; backdrop-filter:blur(8px);
            animation:tps-float 3s ease-in-out infinite;
        }
        .tps-floating-badge-2 { background:rgba(9,205,145,.1); border-color:rgba(9,205,145,.25); color:var(--tps-green); animation-delay:1.5s; }
        @keyframes tps-float { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-7px);} }

        /* --- SHARED SECTION ---------------------------------- */
        .tps-section    { padding:96px 20px; }
        .tps-section-sm { padding:72px 20px; }
        .tps-alt-bg {
            background:rgba(255,255,255,.018);
            border-top:1px solid rgba(255,255,255,.06);
            border-bottom:1px solid rgba(255,255,255,.06);
        }
        .tps-label {
            display:inline-flex; align-items:center; gap:6px;
            font-size:11.5px; font-weight:700; color:var(--tps-blue);
            letter-spacing:.1em; text-transform:uppercase; margin-bottom:14px;
        }
        .tps-section-title {
            font-size:clamp(1.75rem,3.5vw,2.6rem); font-weight:800; color:#f0f4f8;
            line-height:1.2; letter-spacing:-.02em; margin-bottom:16px;
        }
        .tps-section-sub { font-size:.98rem; color:var(--tps-muted); line-height:1.75; max-width:580px; margin:0 auto; }
        .tps-divider { border:none; border-top:1px solid rgba(255,255,255,.06); margin:0; }
        .tps-breadcrumb { display:flex; align-items:center; gap:6px; margin-bottom:28px; font-size:12.5px; color:rgba(200,208,220,.45); }
        .tps-breadcrumb a { color:rgba(79,195,247,.7); text-decoration:none; transition:color .18s; }
        .tps-breadcrumb a:hover { color:var(--tps-blue); }
        .tps-breadcrumb-sep { opacity:.4; }

        /* --- OVERVIEW PILLS ----------------------------------- */
        .tps-pill-row { display:flex; flex-wrap:wrap; gap:12px; margin-top:36px; justify-content:center; }
        .tps-pill {
            display:inline-flex; align-items:center; gap:8px;
            background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.08);
            border-radius:50px; padding:10px 20px; font-size:.83rem; font-weight:600;
            color:rgba(200,208,220,.85);
            transition:border-color var(--tps-t), background var(--tps-t), color var(--tps-t);
        }
        .tps-pill:hover { border-color:rgba(79,195,247,.3); background:rgba(79,195,247,.06); color:var(--tps-blue); }
        .tps-pill-icon { width:28px; height:28px; border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
        .tps-pill-icon-b{background:rgba(79,195,247,.12);color:var(--tps-blue);}
        .tps-pill-icon-g{background:rgba(9,205,145,.12);color:var(--tps-green);}
        .tps-pill-icon-p{background:rgba(124,109,250,.12);color:var(--tps-indigo);}
        .tps-pill-icon-a{background:rgba(255,183,77,.12);color:#ffb74d;}

        /* --- PLATFORM CARDS ----------------------------------- */
        .tps-platform-card {
            background:var(--tps-card-bg); border:1px solid var(--tps-card-border);
            border-radius:var(--tps-radius); padding:34px 28px; height:100%;
            position:relative; overflow:hidden;
            transition:transform var(--tps-t), border-color var(--tps-t), background var(--tps-t);
        }
        .tps-platform-card::before {
            content:''; position:absolute; top:0; left:0; right:0; height:3px;
            border-radius:var(--tps-radius) var(--tps-radius) 0 0; opacity:0; transition:opacity var(--tps-t);
        }
        .tps-platform-card:hover { transform:translateY(-6px); }
        .tps-platform-card:hover::before { opacity:1; }
        .tps-pc-mt5:hover  { border-color:rgba(79,195,247,.25); background:rgba(79,195,247,.04); }
        .tps-pc-mt5::before{ background:linear-gradient(90deg, var(--tps-blue), var(--tps-indigo)); }
        .tps-pc-tl:hover   { border-color:rgba(9,205,145,.25); background:rgba(9,205,145,.04); }
        .tps-pc-tl::before { background:linear-gradient(90deg, var(--tps-green), var(--tps-blue)); }
        .tps-pc-ct:hover   { border-color:rgba(124,109,250,.25); background:rgba(124,109,250,.04); }
        .tps-pc-ct::before { background:linear-gradient(90deg, var(--tps-purple), var(--tps-indigo)); }

        .tps-platform-logo { width:58px; height:58px; border-radius:16px; display:flex; align-items:center; justify-content:center; margin-bottom:20px; font-size:1.6rem; line-height:1; overflow:hidden; }
        .tps-logo-b{background:linear-gradient(135deg,rgba(79,195,247,.15) 0%,rgba(129,140,248,.15) 100%);}
        .tps-logo-g{background:linear-gradient(135deg,rgba(9,205,145,.15) 0%,rgba(79,195,247,.15) 100%);}
        .tps-logo-p{background:linear-gradient(135deg,rgba(124,109,250,.15) 0%,rgba(129,140,248,.15) 100%);}

        .tps-platform-badge { display:inline-block; font-size:.68rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase; padding:3px 10px; border-radius:20px; margin-bottom:14px; }
        .tps-pbadge-live  {background:rgba(9,205,145,.1);color:var(--tps-green);border:1px solid rgba(9,205,145,.2);}
        .tps-pbadge-ready {background:rgba(79,195,247,.1);color:var(--tps-blue);border:1px solid rgba(79,195,247,.2);}
        .tps-pbadge-future{background:rgba(124,109,250,.1);color:var(--tps-indigo);border:1px solid rgba(124,109,250,.2);}

        .tps-platform-name { font-size:1.25rem; font-weight:800; color:#ecf0f8; margin-bottom:10px; }
        .tps-platform-desc { font-size:.85rem; color:var(--tps-muted); line-height:1.7; margin-bottom:20px; }
        .tps-platform-bullets { list-style:none; padding:0; margin:0 0 22px; }
        .tps-platform-bullets li { display:flex; align-items:center; gap:9px; font-size:.82rem; color:rgba(200,208,220,.8); margin-bottom:7px; }
        .tps-bullet-dot { width:5px; height:5px; border-radius:50%; flex-shrink:0; }
        .tps-bullet-b{background:var(--tps-blue);} .tps-bullet-g{background:var(--tps-green);} .tps-bullet-p{background:var(--tps-indigo);}

        .tps-learn-link { display:inline-flex; align-items:center; gap:5px; font-size:.82rem; font-weight:700; text-decoration:none; transition:gap var(--tps-t), opacity var(--tps-t); opacity:.75; }
        .tps-learn-b{color:var(--tps-blue);} .tps-learn-g{color:var(--tps-green);} .tps-learn-p{color:var(--tps-indigo);}
        .tps-platform-card:hover .tps-learn-link { opacity:1; gap:9px; }

        /* --- FEATURE GRID ------------------------------------- */
        .tps-feat-card {
            background:var(--tps-card-bg); border:1px solid var(--tps-card-border);
            border-radius:var(--tps-radius); padding:28px 24px; height:100%;
            transition:transform var(--tps-t), border-color var(--tps-t), background var(--tps-t);
        }
        .tps-feat-card:hover { transform:translateY(-5px); border-color:rgba(79,195,247,.2); background:rgba(79,195,247,.03); }
        .tps-feat-icon { width:50px; height:50px; border-radius:14px; display:flex; align-items:center; justify-content:center; margin-bottom:18px; }
        .tps-fi-b{background:rgba(79,195,247,.1);color:var(--tps-blue);}
        .tps-fi-g{background:rgba(9,205,145,.1);color:var(--tps-green);}
        .tps-fi-p{background:rgba(124,109,250,.1);color:var(--tps-purple);}
        .tps-fi-i{background:rgba(129,140,248,.1);color:var(--tps-indigo);}
        .tps-fi-a{background:rgba(255,183,77,.1);color:#ffb74d;}
        .tps-fi-r{background:rgba(240,98,146,.1);color:#f06292;}
        .tps-fi-t{background:rgba(38,198,218,.1);color:#26c6da;}
        .tps-feat-name{font-size:.98rem;font-weight:700;color:#ecf0f8;margin-bottom:8px;}
        .tps-feat-desc{font-size:.82rem;color:var(--tps-muted);line-height:1.65;}

        /* --- INTEGRATION SPLIT -------------------------------- */
        .tps-integ-list{list-style:none;padding:0;margin:0;}
        .tps-integ-item{display:flex;align-items:flex-start;gap:14px;padding:18px 0;border-bottom:1px solid rgba(255,255,255,.055);}
        .tps-integ-item:last-child{border-bottom:none;}
        .tps-integ-num{width:32px;height:32px;border-radius:50%;background:linear-gradient(135deg,rgba(79,195,247,.15) 0%,rgba(129,140,248,.15) 100%);border:1px solid rgba(79,195,247,.2);display:flex;align-items:center;justify-content:center;font-size:.72rem;font-weight:800;color:var(--tps-blue);flex-shrink:0;}
        .tps-integ-name{font-size:.93rem;font-weight:700;color:#ecf0f8;margin-bottom:4px;}
        .tps-integ-desc{font-size:.8rem;color:var(--tps-muted);line-height:1.6;}

        /* integration diagram */
        .tps-diagram{background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.07);border-radius:var(--tps-radius);padding:28px 22px;}
        .tps-diag-node{background:rgba(255,255,255,.045);border:1px solid rgba(255,255,255,.09);border-radius:12px;padding:14px 16px;text-align:center;transition:border-color var(--tps-t),background var(--tps-t);}
        .tps-diag-node:hover{border-color:rgba(79,195,247,.3);background:rgba(79,195,247,.05);}
        .tps-diag-node-icon{font-size:20px;margin-bottom:6px;}
        .tps-diag-node-label{font-size:.72rem;font-weight:700;color:#d0d8e8;line-height:1.35;}
        .tps-diag-node-sub{font-size:.64rem;color:var(--tps-muted);margin-top:2px;}
        .tps-diag-center{border-color:rgba(79,195,247,.3);background:rgba(79,195,247,.06);}
        .tps-diag-center .tps-diag-node-label{color:var(--tps-blue);}
        .tps-diag-connector{display:flex;justify-content:center;padding:5px 0;}
        .tps-diag-line{width:1px;height:22px;background:rgba(255,255,255,.1);position:relative;}
        .tps-diag-line::after{content:'▾';position:absolute;bottom:-9px;left:50%;transform:translateX(-50%);font-size:7px;color:rgba(255,255,255,.2);}
        .tps-diag-row{display:flex;flex-wrap:wrap;gap:10px;justify-content:center;}

        /* --- HOW IT WORKS ------------------------------------- */
        .tps-steps-wrap{display:grid;grid-template-columns:repeat(5,1fr);}
        @media(max-width:991px){.tps-steps-wrap{grid-template-columns:1fr;}}
        .tps-step{position:relative;padding:36px 22px;text-align:center;}
        .tps-step+.tps-step::before{content:'';position:absolute;left:0;top:50%;transform:translateY(-50%);width:1px;height:55%;background:rgba(255,255,255,.07);}
        @media(max-width:991px){.tps-step+.tps-step::before{left:50%;top:0;transform:translateX(-50%);width:55%;height:1px;}}
        .tps-step-num{width:48px;height:48px;border-radius:50%;background:linear-gradient(135deg,rgba(79,195,247,.15) 0%,rgba(129,140,248,.15) 100%);border:1.5px solid rgba(79,195,247,.3);display:flex;align-items:center;justify-content:center;font-size:.85rem;font-weight:800;color:var(--tps-blue);margin:0 auto 16px;}
        .tps-step-icon{font-size:20px;margin-bottom:12px;}
        .tps-step-name{font-size:.92rem;font-weight:700;color:#ecf0f8;margin-bottom:8px;}
        .tps-step-desc{font-size:.78rem;color:var(--tps-muted);line-height:1.6;}
        .tps-step-active .tps-step-num{background:linear-gradient(135deg,var(--tps-blue) 0%,var(--tps-indigo) 100%);border-color:var(--tps-blue);color:#050e1c;box-shadow:0 0 20px rgba(79,195,247,.35);}

        /* --- WHY CARDS --------------------------------------- */
        .tps-why-card{background:var(--tps-card-bg);border:1px solid var(--tps-card-border);border-radius:var(--tps-radius);padding:32px 26px;height:100%;transition:transform var(--tps-t),border-color var(--tps-t);}
        .tps-why-card:hover{transform:translateY(-4px);border-color:rgba(79,195,247,.2);}
        .tps-why-icon{width:54px;height:54px;border-radius:16px;background:linear-gradient(135deg,rgba(79,195,247,.1) 0%,rgba(129,140,248,.1) 100%);border:1px solid rgba(79,195,247,.18);display:flex;align-items:center;justify-content:center;margin-bottom:20px;color:var(--tps-blue);}
        .tps-why-name{font-size:1.05rem;font-weight:700;color:#ecf0f8;margin-bottom:9px;}
        .tps-why-desc{font-size:.83rem;color:var(--tps-muted);line-height:1.7;}
        .tps-why-list{list-style:none;padding:0;margin:12px 0 0;}
        .tps-why-list li{display:flex;align-items:center;gap:8px;font-size:.79rem;color:rgba(200,208,220,.75);margin-bottom:5px;}
        .tps-why-list li::before{content:'';width:5px;height:5px;border-radius:50%;background:var(--tps-blue);flex-shrink:0;}

        /* --- CTA --------------------------------------------- */
        .tps-cta-section{padding:96px 20px;position:relative;overflow:hidden;}
        .tps-cta-bg{position:absolute;inset:0;background:radial-gradient(ellipse 60% 80% at 20% 50%,rgba(79,195,247,.1) 0%,transparent 65%),radial-gradient(ellipse 50% 70% at 80% 50%,rgba(124,109,250,.09) 0%,transparent 65%),rgba(255,255,255,.022);border-top:1px solid rgba(255,255,255,.07);border-bottom:1px solid rgba(255,255,255,.07);}
        .tps-cta-inner{position:relative;z-index:1;text-align:center;}
        .tps-cta-title{font-size:clamp(2rem,4vw,3.2rem);font-weight:800;color:#f0f4f8;line-height:1.15;letter-spacing:-.02em;margin-bottom:18px;}
        .tps-cta-sub{font-size:1rem;color:var(--tps-muted);line-height:1.7;max-width:460px;margin:0 auto 40px;}
        .tps-cta-trust{display:flex;align-items:center;justify-content:center;gap:24px;flex-wrap:wrap;margin-top:40px;padding-top:36px;border-top:1px solid rgba(255,255,255,.06);}
        .tps-cta-trust-item{display:flex;align-items:center;gap:7px;font-size:.8rem;color:rgba(200,208,220,.5);}
        .tps-cta-trust-item svg{color:var(--tps-blue);flex-shrink:0;}

        /* --- CAROUSEL ---------------------------------------- */
        .tps-carousel-section{padding:80px 20px;}
        .tps-carousel-wrap{position:relative;overflow:hidden;}
        .tps-carousel-wrap::before,.tps-carousel-wrap::after{content:'';position:absolute;top:0;bottom:0;width:80px;z-index:2;pointer-events:none;}
        .tps-carousel-wrap::before{left:0;background:linear-gradient(to right,rgba(30,32,36,1) 0%,transparent 100%);}
        .tps-carousel-wrap::after{right:0;background:linear-gradient(to left,rgba(30,32,36,1) 0%,transparent 100%);}
        .tps-carousel-track{display:flex;gap:20px;overflow-x:auto;scroll-behavior:smooth;padding:8px 16px 20px;scrollbar-width:none;-ms-overflow-style:none;}
        .tps-carousel-track::-webkit-scrollbar{display:none;}
        .tps-car-card{flex:0 0 280px;background:var(--tps-card-bg);border:1px solid var(--tps-card-border);border-radius:var(--tps-radius);padding:26px 24px 22px;transition:transform var(--tps-t),border-color var(--tps-t),background var(--tps-t);text-decoration:none;cursor:pointer;user-select:none;display:block;}
        .tps-car-card:hover{transform:translateY(-4px);border-color:rgba(79,195,247,.22);background:rgba(79,195,247,.04);text-decoration:none;}
        .tps-car-icon{width:44px;height:44px;border-radius:12px;display:flex;align-items:center;justify-content:center;margin-bottom:16px;}
        .tps-car-title{font-size:.92rem;font-weight:700;color:#ecf0f8;margin-bottom:7px;}
        .tps-car-desc{font-size:.77rem;color:var(--tps-muted);line-height:1.6;margin-bottom:16px;}
        .tps-car-cta{display:inline-flex;align-items:center;gap:5px;font-size:.78rem;font-weight:600;color:var(--tps-blue);opacity:.75;transition:opacity var(--tps-t),gap var(--tps-t);}
        .tps-car-card:hover .tps-car-cta{opacity:1;gap:8px;}
        .tps-carousel-controls{display:flex;justify-content:center;align-items:center;gap:12px;margin-top:28px;}
        .tps-carousel-btn{width:40px;height:40px;border-radius:50%;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.1);color:rgba(200,208,220,.8);display:flex;align-items:center;justify-content:center;cursor:pointer;transition:background var(--tps-t),border-color var(--tps-t),color var(--tps-t);}
        .tps-carousel-btn:hover{background:rgba(79,195,247,.12);border-color:rgba(79,195,247,.3);color:var(--tps-blue);}
        .tps-carousel-dots{display:flex;gap:6px;}
        .tps-car-dot{width:6px;height:6px;border-radius:50%;background:rgba(255,255,255,.2);cursor:pointer;transition:background var(--tps-t),width var(--tps-t);}
        .tps-car-dot.active{background:var(--tps-blue);width:18px;border-radius:3px;}

        /* --- RESPONSIVE --------------------------------------- */
        @media(max-width:767px){
            .tps-hero{padding:110px 16px 60px;}
            .tps-section{padding:64px 16px;}
            .tps-car-card{flex:0 0 250px;}
            .tps-stat-div{display:none;}
        }
        /* ---- FAQ ACCORDION ---- */
        .tps-faq-accordion .accordion-item{background:var(--tps-card-bg);border:1px solid var(--tps-card-border);border-radius:12px!important;margin-bottom:10px;overflow:hidden}
        .tps-faq-accordion .accordion-button{background:transparent;color:#f0f4f8;font-weight:600;font-size:.97rem;box-shadow:none;padding:18px 22px}
        .tps-faq-accordion .accordion-button:not(.collapsed){color:var(--tps-green);background:rgba(9,205,145,.05)}
        .tps-faq-accordion .accordion-button::after{filter:invert(1) brightness(0.7)}
        .tps-faq-accordion .accordion-button:not(.collapsed)::after{filter:invert(0) sepia(1) saturate(3) hue-rotate(120deg)}
        .tps-faq-accordion .accordion-body{color:var(--tps-muted);font-size:.92rem;line-height:1.75;padding:0 22px 20px}
