*{margin:0;padding:0;box-sizing:border-box}
    :root{
        --primary-blue:#0066FF;
        --primary-purple:#6366F1;
        --uk-blue:#012169;
        --uk-red:#C8102E;
        --success-green:#10B981;
        --gray-50:#F9FAFB;
        --gray-100:#F3F4F6;
        --gray-200:#E5E7EB;
        --gray-400:#9CA3AF;
        --gray-500:#6B7280;
        --gray-700:#374151;
        --gray-900:#111827;
        --white:#FFFFFF;
        --uk-gradient:linear-gradient(135deg,#012169 0%,#0066FF 100%);
        --shadow-md:0 4px 6px -1px rgba(0,0,0,.1);
        --shadow-lg:0 10px 25px rgba(15,23,42,.25);
        --shadow-xl:0 20px 45px rgba(15,23,42,.35);
    }

    html,body{height:100%}
    body{
        line-height:1.6;
        color:#E5E7EB;
        background:#000;
        overflow-x:hidden;
        display:flex;
        flex-direction:column;
        position:relative;
    }

    /* Glassmorphism background like virtual-receptionist */
    body::before{
        content:"";position:fixed;inset:0;z-index:-1;
        pointer-events:none;
    }
    body::after{
        content:"";position:fixed;inset:0;z-index:-2;
        background:url('../assets/team-connect-main-office.webp') center top/cover no-repeat;
        transform:translateZ(0);will-change:transform;pointer-events:none;
    }
    @media(max-width:768px){
        body::after{background-position:center 20%!important}
        body::before{background:linear-gradient(to bottom,rgba(0,0,0,.45),rgba(0,0,0,.35))!important}
    }

    header,main,footer{position:relative;z-index:1;}

    /* Header + burger copied from virtual-receptionist */
    .header{
        position:fixed;top:0;left:0;right:0;
        background:#000;border-bottom:1px solid #222;
        z-index:1000;transition:all .3s ease;
    }
    .header.scrolled{background:#000!important;box-shadow:0 2px 6px rgba(0,0,0,.6);}
    .nav{
        max-width:1200px;margin:0 auto;
        display:flex;justify-content:flex-start;align-items:center;
        padding:1rem 2rem;
    }
    .logo{
        display:flex;align-items:center;gap:12px;
        font-size:24px;font-weight:800;
        color:var(--primary-blue);text-decoration:none;
    }
    .logo-img{height:40px;width:auto;border-radius:6px;display:block;}
    .nav-links{display:none;}

    .burger-menu{
        position:fixed;
        top:calc(env(safe-area-inset-top) + 20px);
        right:20px;
        z-index:1001;
        background:#fff;
        border:1px solid var(--gray-200);
        border-radius:12px;
        padding:12px;
        cursor:pointer;
        box-shadow:var(--shadow-md);
        transition:transform .2s ease;
        display:block;
    }
    .burger-menu:hover{transform:scale(1.05);}
    .burger-icon{
        width:24px;height:24px;
        display:flex;flex-direction:column;justify-content:space-between;
    }
    .burger-line{
        width:100%;height:3px;
        background:var(--gray-700);border-radius:2px;
        transition:all .3s ease;
    }
    .burger-menu.active .burger-line:nth-child(1){transform:rotate(45deg) translate(5px,5px);}
    .burger-menu.active .burger-line:nth-child(2){opacity:0;}
    .burger-menu.active .burger-line:nth-child(3){transform:rotate(-45deg) translate(7px,-6px);}

    .nav-overlay{
        position:fixed;top:0;left:0;width:100%;height:100%;
        background:rgba(0,0,0,.5);
        z-index:999;
        opacity:0;visibility:hidden;
        transition:all .3s ease;
    }
    .nav-overlay.active{opacity:1;visibility:visible;}

    .nav-sidebar{
        position:fixed;top:0;right:-300px;
        width:300px;height:100vh;
        background:#fff;
        border-left:1px solid var(--gray-200);
        z-index:1000;
        transition:right .3s ease;
        overflow-y:auto;
        -webkit-overflow-scrolling:touch;
        padding-top:calc(env(safe-area-inset-top) + 20px);
        box-shadow:0 20px 25px rgba(0,0,0,.25);
    }
    .nav-sidebar.active{right:0;}
    .nav-header{
        padding:20px;border-bottom:1px solid var(--gray-200);
        display:flex;align-items:center;gap:12px;
    }
    .nav-title{font-size:1.2em;font-weight:600;color:#111827;}
    .nav-section{padding:20px 0;border-bottom:1px solid var(--gray-200);}
    .nav-section:last-child{border-bottom:none;}
    .nav-section-title{
        padding:0 20px 12px;
        font-size:.8em;color:var(--gray-500);
        text-transform:uppercase;font-weight:600;letter-spacing:.05em;
    }
    .nav-item{
        display:flex;align-items:center;
        padding:12px 20px;
        color:#374151;
        text-decoration:none;
        transition:background-color .2s ease;
        cursor:pointer;
    }
    .nav-item:hover{background:#F3F4F6;color:var(--primary-blue);}
    .nav-item.active{
        background:rgba(37,99,235,.08);
        color:var(--primary-blue);
        border-left:3px solid var(--primary-blue);
    }
    .nav-item-text{font-weight:500;}

    /* Breadcrumb */
    .breadcrumb{
        background:rgba(0,0,0,.65);
        padding:10px 2rem;
        font-size:14px;
        color:#E5E7EB;
        margin-top:72px;
    }
    .breadcrumb a{
        color:#fff;
        text-decoration:underline;
        text-underline-offset:3px;
    }
    .breadcrumb a:hover{text-decoration-color:#FACC15;}
    @media(max-width:768px){
        .breadcrumb{padding:10px 1rem;font-size:12px;}
    }

    main{flex:1 0 auto;}
    .container{
        max-width:1200px;
        margin:0 auto;
        padding:40px 2rem;
    }
    @media(max-width:768px){
        .container{padding:30px 1rem;}
    }

    /* HERO – glass */
    .hero{
        padding:110px 2rem 60px;
        position:relative;
        z-index:1;
    }
    .hero-content{
        max-width:1000px;margin:0 auto;
        background:rgba(3,7,18,.78);
        border-radius:26px;
        border:1px solid rgba(148,163,184,.7);
        padding:52px 40px;
        backdrop-filter:blur(22px) saturate(130%);
        -webkit-backdrop-filter:blur(22px) saturate(130%);
        box-shadow:var(--shadow-xl);
        text-align:center;
    }
    .hero-badge{
        display:inline-flex;align-items:center;gap:8px;
        background:linear-gradient(135deg,#FACC15,#F97316);
        color:#111827;
        padding:8px 18px;
        border-radius:999px;
        font-size:.9rem;
        font-weight:800;
        text-transform:uppercase;
        letter-spacing:.08em;
        margin-bottom:1.2rem;
    }
    .hero-badge span.flag{font-size:1.1rem;}
    .hero-title{
        font-size:clamp(2.5rem,4.8vw,3.6rem);
        font-weight:900;
        color:#F9FAFB;
        margin-bottom:.75rem;
        text-shadow:0 3px 12px rgba(0,0,0,.8);
    }
    .hero-subtitle{
        font-size:1.05rem;
        color:#E5E7EB;
        max-width:720px;
        margin:0 auto 1.6rem;
    }
    .hero-subtitle strong{color:#FACC15;font-weight:800;}
    .hero-price-row{
        display:flex;justify-content:center;gap:16px;align-items:baseline;
        margin-bottom:1rem;
    }
    .hero-price{
        font-size:2.4rem;font-weight:900;color:#FDE68A;
    }
    .hero-price-note{
        font-size:.95rem;color:#E5E7EB;
    }
    .hero-pills{
        display:flex;flex-wrap:wrap;gap:10px;
        justify-content:center;margin:1rem 0 1.8rem;
    }
    .hero-pill{
        background:rgba(15,23,42,.9);
        border-radius:999px;
        border:1px solid rgba(148,163,184,.8);
        padding:.45rem .9rem;
        font-size:.85rem;
        color:#E5E7EB;
    }
    .hero-cta{
        display:flex;justify-content:center;gap:12px;flex-wrap:wrap;
        margin-bottom:1.3rem;
    }
    .btn{
        padding:1rem 2.2rem;
        border-radius:999px;
        font-weight:800;
        text-decoration:none;
        border:none;
        cursor:pointer;
        font-size:.98rem;
        display:inline-flex;align-items:center;gap:8px;
        text-transform:uppercase;
        letter-spacing:.08em;
        transition:all .2s ease;
    }
    .btn-primary{
        background:#FACC15;
        color:#111827;
        box-shadow:0 18px 45px rgba(0,0,0,.55);
    }
    .btn-primary:hover{transform:translateY(-2px);box-shadow:0 22px 60px rgba(0,0,0,.75);}
    .btn-outline{
        background:transparent;
        color:#F9FAFB;
        border:1px solid rgba(248,250,252,.8);
    }
    .btn-outline:hover{
        background:rgba(248,250,252,.08);
    }
    .hero-guarantee{
        margin-top:.8rem;
        background:rgba(15,23,42,.9);
        border-radius:16px;
        padding:1rem 1.2rem;
        border:1px solid rgba(55,65,81,.9);
        color:#E5E7EB;
        font-size:.9rem;
    }
    @media(max-width:768px){
        .hero{padding:110px 1rem 50px;}
        .hero-content{padding:40px 22px;}
    }

    .section-header{text-align:center;margin-bottom:2.6rem;}
    .section-title{
        font-size:clamp(2rem,4vw,2.8rem);
        font-weight:900;
        color:#F9FAFB;
        text-shadow:0 2px 8px rgba(0,0,0,.7);
        margin-bottom:.75rem;
    }
    .section-subtitle{
        font-size:1.02rem;
        color:#E5E7EB;
        max-width:760px;
        margin:0 auto;
    }

    /* Shared glass sections */
    .bl-section,
    .bl-features,
    .bl-types,
    .bl-comparison,
    .bl-faq,
    .bl-related{
        padding:40px 2rem;
    }
    .content-grid{
        display:grid;
        grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
        gap:1.6rem;
        margin-top:1.7rem;
    }
    .glass-card{
        background:rgba(15,23,42,.78);
        border-radius:20px;
        padding:1.9rem 1.9rem;
        border:1px solid rgba(55,65,81,.85);
        box-shadow:var(--shadow-lg);
        color:#E5E7EB;
    }
    .glass-card h3{
        font-size:1.2rem;
        font-weight:800;
        color:#F9FAFB;
        margin-bottom:.55rem;
    }
    .glass-card p{
        font-size:.94rem;
        line-height:1.7;
    }
    .glass-list{
        list-style:none;margin-top:.6rem;
    }
    .glass-list li{
        padding:.4rem 0;
        font-size:.94rem;
    }

    /* Comparison */
    .comparison-grid{
        display:grid;
        grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
        gap:1.6rem;
        margin-top:1.7rem;
    }
    .comparison-card{
        background:rgba(15,23,42,.8);
        border-radius:20px;
        padding:1.9rem;
        border:1px solid rgba(55,65,81,.9);
        box-shadow:var(--shadow-lg);
        color:#E5E7EB;
    }
    .comparison-card.winner{
        border-color:#22C55E;
        box-shadow:0 20px 50px rgba(22,163,74,.6);
    }
    .comparison-card h3{font-size:1.1rem;font-weight:800;margin-bottom:.5rem;}
    .comparison-list{list-style:none;margin-top:.4rem;}
    .comparison-list li{
        padding:.4rem 0;
        font-size:.92rem;
    }
    .comparison-table { overflow-x: auto; margin-top: 1.5rem; }
    .comparison-table table {
        width: 100%;
        border-collapse: collapse;
        min-width: 600px;
    }
    .comparison-table th {
        text-align: left;
        padding: 1rem;
        color: rgba(255,255,255,0.6);
        font-size: 0.85rem;
        border-bottom: 1px solid rgba(255,255,255,0.15);
    }
    .comparison-table th:nth-child(2) {
        color: #fff;
        font-weight: 700;
        background: rgba(0,102,255,0.1);
        border-bottom: 2px solid rgba(0,102,255,0.4);
    }
    .comparison-table td {
        padding: 0.9rem 1rem;
        color: rgba(255,255,255,0.7);
        border-bottom: 1px solid rgba(255,255,255,0.06);
        font-size: 0.95rem;
    }
    .comparison-table td:nth-child(2) {
        color: #fff;
        font-weight: 600;
        background: rgba(0,102,255,0.05);
    }
    .comparison-table tbody tr:hover td {
        background: rgba(255,255,255,0.03);
    }
    /* FAQ — accordion dropdowns (v4 — replaces card grid) */
    .faq-accordion{max-width:860px;margin:1.7rem auto 0;display:flex;flex-direction:column;gap:.7rem;}
    .faq-acc-item{background:rgba(15,23,42,.8);border:1px solid rgba(55,65,81,.9);border-radius:14px;box-shadow:var(--shadow-md);overflow:hidden;transition:border-color .2s,background .2s;}
    .faq-acc-item:hover{border-color:rgba(0,102,255,.45);}
    .faq-acc-item[open]{border-color:rgba(0,102,255,.6);background:rgba(15,23,42,.9);}
    .faq-acc-q{display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:1.1rem 1.3rem;cursor:pointer;font-weight:700;font-size:1rem;color:#F9FAFB;list-style:none;user-select:none;line-height:1.4;}
    .faq-acc-q::-webkit-details-marker{display:none;}
    .faq-acc-q::marker{content:"";}
    .faq-acc-q:focus-visible{outline:2px solid #FACC15;outline-offset:-2px;}
    .faq-acc-icon{display:inline-flex;align-items:center;justify-content:center;width:28px;height:28px;border-radius:50%;background:rgba(0,102,255,.15);border:1px solid rgba(0,102,255,.4);color:#93C5FD;font-size:1.15rem;font-weight:700;line-height:1;flex-shrink:0;transition:transform .25s ease,background .2s,color .2s;}
    .faq-acc-item[open] .faq-acc-icon{transform:rotate(45deg);background:rgba(250,204,21,.18);border-color:rgba(250,204,21,.5);color:#FACC15;}
    .faq-acc-a{padding:0 1.3rem 1.2rem;font-size:.94rem;color:#E5E7EB;line-height:1.75;}
    .faq-acc-a a{color:#93C5FD;text-decoration:underline;text-underline-offset:3px;}
    .faq-acc-a a:hover{color:#FACC15;}
    @media(max-width:768px){
        .faq-acc-q{font-size:.95rem;padding:1rem 1.1rem;}
        .faq-acc-a{padding:0 1.1rem 1.1rem;font-size:.92rem;}
    }

    /* Legacy FAQ card classes — kept for any other pages still referencing them */
    .faq-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:1.6rem;margin-top:1.7rem;}
    .faq-item{background:rgba(15,23,42,.8);border-radius:18px;padding:1.8rem;border:1px solid rgba(55,65,81,.9);box-shadow:var(--shadow-lg);}
    .faq-question{font-weight:800;margin-bottom:.5rem;color:#F9FAFB;}
    .faq-answer{font-size:.94rem;color:#E5E7EB;line-height:1.7;}

    /* Footer same as virtual receptionist */
    .footer{
        background:#020617;
        color:#fff;
        padding:60px 2rem 20px;
        margin-top:auto;
    }
    .footer-content{
        max-width:1200px;margin:0 auto;
        display:grid;grid-template-columns:2fr 1fr 1fr 1fr;
        gap:3rem;margin-bottom:3rem;
    }
    .footer-brand h3{
        font-size:1.5rem;font-weight:800;
        margin-bottom:1rem;color:var(--primary-blue);
    }
    .footer-brand p{
        color:#9CA3AF;
        margin-bottom:2rem;
        line-height:1.6;
    }
    .footer-section h4{
        font-weight:600;margin-bottom:1rem;color:#fff;
    }
    .footer-section a{
        color:#9CA3AF;
        text-decoration:none;
        display:block;
        margin-bottom:.5rem;
        transition:color .2s ease;
    }
    .footer-section a:hover{color:var(--primary-blue);}
    .footer-support{
        border-top:1px solid #111827;
        padding:2rem 0 1rem;
        text-align:center;
    }
    .footer-bottom{
        text-align:center;
        color:#6B7280;
        font-size:.9rem;
        padding-top:1rem;
        border-top:1px solid #020617;
    }
    .social-links{
      margin-top:1rem;display:flex;gap:12px;
      align-items:center;flex-wrap:wrap;
    }
    .social-link{
      display:inline-flex;align-items:center;justify-content:center;
      width:38px;height:38px;border-radius:50%;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.15);
      transition:all .2s ease;
    }
    .social-link:hover{
      background:rgba(255,255,255,.14);
      border-color:var(--primary-blue);
      transform:translateY(-2px);
      box-shadow:0 6px 16px rgba(0,0,0,.25);
    }
    .social-icon{width:20px;height:20px;display:block;}
    /* Business Landline – side‑scroll Reviews */
    .bl-reviews-section{
        padding:40px 2rem;
    }
    .bl-reviews-wrapper{
        background:rgba(15,23,42,.85);
        border-radius:22px;
        border:1px solid rgba(55,65,81,.9);
        box-shadow:var(--shadow-lg);
        padding:1.8rem 1.4rem 1.4rem;
    }
    .bl-reviews-badge-row{
        display:flex;
        justify-content:space-between;
        align-items:center;
        margin-bottom:1rem;
        flex-wrap:wrap;
        gap:.6rem;
    }
    .bl-reviews-badge{
        font-size:.86rem;
        color:#FACC15;
        font-weight:700;
    }
    .bl-reviews-strip{
        display:flex;
        gap:14px;
        overflow-x:auto;
        padding-bottom:8px;
        scrollbar-width:thin;
    }
    .bl-reviews-strip::-webkit-scrollbar{
        height:6px;
    }
    .bl-reviews-strip::-webkit-scrollbar-track{
        background:rgba(15,23,42,.9);
    }
    .bl-reviews-strip::-webkit-scrollbar-thumb{
        background:rgba(75,85,99,.9);
        border-radius:999px;
    }
    .bl-review-card{
        min-width:260px;
        max-width:300px;
        background:rgba(15,23,42,.9);
        border-radius:18px;
        border:1px solid rgba(55,65,81,.95);
        padding:1.2rem 1.1rem;
        flex:0 0 auto;
    }
    .bl-review-stars{
        color:#FACC15;
        font-size:.9rem;
        margin-bottom:.4rem;
    }
    .bl-review-quote{
        font-size:.9rem;
        color:#E5E7EB;
        margin-bottom:.6rem;
    }
    .bl-review-author{
        font-size:.86rem;
        color:#9CA3AF;
        font-weight:600;
    }
    .bl-review-more{
        text-align:right;
        margin-top:0.6rem;
    }
    .bl-review-more a{
        font-size:.9rem;
        color:#93C5FD;
        text-decoration:none;
    }
    .bl-review-more a:hover{
        text-decoration:underline;
    }
    /* Industry/Trade Scroller Styles */
    .trade-scroller-section {
        padding: 40px 2rem;
        overflow: hidden; /* Prevents horizontal scrollbar on body */
    }

    .trade-scroller-wrapper {
        display: flex;
        overflow-x: auto;
        gap: 20px;
        padding: 10px 5px 20px 5px; /* Bottom padding for scrollbar space */
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin; /* Firefox */
    }

    /* Scrollbar Styling */
    .trade-scroller-wrapper::-webkit-scrollbar {
        height: 8px;
    }
    .trade-scroller-wrapper::-webkit-scrollbar-track {
        background: rgba(15, 23, 42, 0.6);
        border-radius: 4px;
    }
    .trade-scroller-wrapper::-webkit-scrollbar-thumb {
        background: var(--gray-500);
        border-radius: 4px;
    }
    .trade-scroller-wrapper::-webkit-scrollbar-thumb:hover {
        background: var(--primary-blue);
    }

    /* Card Styling */
    .trade-card {
        min-width: 300px;
        max-width: 300px;
        background: rgba(15, 23, 42, 0.78);
        border: 1px solid rgba(55, 65, 81, 0.85);
        border-radius: 16px;
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        text-decoration: none; /* Removes underline from anchor */
        transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
        scroll-snap-align: start;
        flex: 0 0 auto; /* Prevents shrinking */
        box-shadow: var(--shadow-md);
    }

    .trade-card:hover {
        transform: translateY(-5px);
        border-color: var(--primary-blue);
        box-shadow: 0 10px 25px rgba(0, 102, 255, 0.15);
        background: rgba(15, 23, 42, 0.9);
    }

    .trade-card h3 {
        font-size: 1.1rem;
        font-weight: 700;
        color: #F9FAFB;
        margin-bottom: 0.8rem;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .trade-icon {
        font-size: 1.4rem;
    }

    .trade-card p {
        font-size: 0.9rem;
        color: #9CA3AF; /* Gray-400 */
        margin-bottom: 1rem;
        line-height: 1.5;
        flex-grow: 1; /* Pushes list to bottom */
    }

    /* Bullet List inside Card */
    .check-list {
        list-style: none;
        padding: 0;
        margin: 0;
        border-top: 1px solid rgba(55, 65, 81, 0.6);
        padding-top: 0.8rem;
    }

    .check-list li {
        font-size: 0.85rem;
        color: #E5E7EB; /* Gray-200 */
        margin-bottom: 0.4rem;
        padding-left: 1.2rem;
        position: relative;
    }

    .check-list li::before {
        content: "✓";
        color: var(--success-green);
        position: absolute;
        left: 0;
        font-weight: bold;
    }

    /* View More Link at end of list */
    .trade-card-link {
        font-size: 0.85rem;
        color: var(--primary-blue);
        font-weight: 600;
        margin-top: 0.8rem;
        display: block;
        text-align: right;
    }
    /* Search icon button — sits left of the burger */
    .search-btn {
        position: fixed;
        top: calc(env(safe-area-inset-top) + 20px);
        right: 72px;
        z-index: 1001;
        background: transparent;
        border: none;
        padding: 12px;
        cursor: pointer;
        transition: transform 0.2s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
    }
    /* Case Studies */
    .case-studies-home{padding:80px 2rem;background:transparent}
    .cs-stagger{display:flex;flex-direction:column;gap:48px;max-width:1100px;margin:0 auto}
    .cs-stagger-item{display:flex;align-items:center;gap:40px;text-decoration:none;background:rgba(255,255,255,.04);border:1px solid rgba(255,140,0,.35);border-radius:20px;overflow:hidden;transition:all .35s ease;cursor:pointer}
    .cs-stagger-item:hover{border-color:rgba(255,140,0,.8);transform:translateY(-4px);box-shadow:0 12px 40px rgba(255,140,0,.15)}
    .cs-stagger-item:nth-child(even){flex-direction:row-reverse}
    .cs-stagger-img{width:340px;min-height:240px;flex-shrink:0;overflow:hidden}
    .cs-stagger-img img{width:100%;height:100%;min-height:240px;object-fit:cover;display:block;transition:transform .5s ease}
    .cs-stagger-item:hover .cs-stagger-img img{transform:scale(1.05)}
    .cs-stagger-body{padding:32px 32px 32px 0;flex:1}
    .cs-stagger-item:nth-child(even) .cs-stagger-body{padding:32px 0 32px 32px}
    .cs-stagger-industry{display:inline-block;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:1px;color:#ff8c00;margin-bottom:8px;transition:color .3s ease}
    .cs-stagger-item:hover .cs-stagger-industry{color:var(--success-green)}
    .cs-stagger-title{font-size:1.35rem;font-weight:800;color:#fff;line-height:1.3;margin-bottom:12px}
    .cs-stagger-desc{font-size:.92rem;color:rgba(255,255,255,.65);line-height:1.7;margin-bottom:20px}
    .cs-stagger-stats{display:flex;gap:20px;flex-wrap:wrap}
    .cs-stat-pill{background:rgba(16,185,129,.15);border:1px solid rgba(16,185,129,.3);color:#34d399;padding:6px 14px;border-radius:50px;font-size:.82rem;font-weight:700}
    .cs-stagger-arrow{color:rgba(255,255,255,.3);font-size:1.3rem;transition:color .3s ease,transform .3s ease;flex-shrink:0;padding-right:24px}
    .cs-stagger-item:nth-child(even) .cs-stagger-arrow{padding-right:0;padding-left:24px}
    .cs-stagger-item:hover .cs-stagger-arrow{color:rgba(255,140,0,.9);transform:translateX(4px)}
    .cs-view-all{text-align:center;margin-top:48px}
    /* Blog */
    .blog-home{padding:80px 2rem;background:transparent}
    .blog-scroll-wrapper{position:relative;max-width:1200px;margin:0 auto}
    .blog-scroll{display:flex;gap:24px;overflow-x:auto;scroll-snap-type:x mandatory;-webkit-overflow-scrolling:touch;padding-bottom:16px;scrollbar-width:thin;scrollbar-color:rgba(255,255,255,.2) transparent}
    .blog-scroll::-webkit-scrollbar{height:6px}
    .blog-scroll::-webkit-scrollbar-track{background:rgba(255,255,255,.05);border-radius:3px}
    .blog-scroll::-webkit-scrollbar-thumb{background:rgba(255,255,255,.2);border-radius:3px}
    .blog-scroll-card{min-width:320px;max-width:340px;flex-shrink:0;scroll-snap-align:start;background:rgba(255,255,255,.04);border:1px solid rgba(255,140,0,.35);border-radius:16px;padding:28px;display:flex;flex-direction:column;text-decoration:none;transition:all .35s ease;cursor:pointer}
    .blog-scroll-card:hover{border-color:rgba(255,140,0,.8);transform:translateY(-4px);box-shadow:0 8px 30px rgba(255,140,0,.15)}
    .blog-scroll-tag{display:inline-block;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.8px;color:#ff8c00;margin-bottom:12px;transition:color .3s ease}
    .blog-scroll-card:hover .blog-scroll-tag{color:var(--success-green)}
    .blog-scroll-title{font-size:1.1rem;font-weight:700;color:#fff;line-height:1.35;margin-bottom:12px}
    .blog-scroll-excerpt{font-size:.88rem;color:rgba(255,255,255,.55);line-height:1.65;flex:1;margin-bottom:20px}
    .blog-scroll-meta{display:flex;align-items:center;justify-content:space-between;border-top:1px solid rgba(255,255,255,.08);padding-top:16px}
    .blog-scroll-date{font-size:.78rem;color:rgba(255,255,255,.4)}
    .blog-scroll-read{font-size:.82rem;font-weight:600;color:#ff8c00;transition:color .3s ease}
    .blog-scroll-card:hover .blog-scroll-read{color:var(--success-green)}
    .blog-scroll-nav{display:flex;justify-content:center;gap:12px;margin-top:24px}
    .blog-scroll-btn{width:44px;height:44px;border-radius:50%;border:1px solid rgba(255,255,255,.2);background:rgba(255,255,255,.06);color:rgba(255,255,255,.7);font-size:18px;cursor:pointer;transition:all .3s ease;display:flex;align-items:center;justify-content:center}
    .blog-scroll-btn:hover{background:rgba(255,140,0,.15);border-color:rgba(255,140,0,.5);color:#ff8c00}
    .blog-view-all{text-align:center;margin-top:32px}
    .btn-primary{background:var(--gradient-primary);color:#fff;box-shadow:0 4px 15px rgba(0,102,255,.3)}
    .btn-primary:hover{transform:translateY(-2px);box-shadow:0 8px 25px rgba(0,102,255,.4)}
    .section-header-cs{text-align:center;margin-bottom:3rem}
    .section-badge-cs{display:inline-block;background:var(--gradient-primary);color:#fff;padding:8px 20px;border-radius:999px;font-size:.8rem;font-weight:700;margin-bottom:20px;text-transform:uppercase}
    .section-title-cs{font-size:clamp(1.8rem,4vw,2.8rem);font-weight:800;color:#fff;margin-bottom:1rem}
    .section-subtitle-cs{font-size:1.1rem;color:rgba(255,255,255,.7);max-width:600px;margin:0 auto}
    @media(max-width:768px){
    .cs-stagger-item,.cs-stagger-item:nth-child(even){flex-direction:column}
    .cs-stagger-img{width:100%;min-height:200px;max-height:220px}
    .cs-stagger-body,.cs-stagger-item:nth-child(even) .cs-stagger-body{padding:24px}
    .cs-stagger-arrow{display:none}
    .cs-stagger-title{font-size:1.15rem}
    .blog-scroll-card{min-width:280px;max-width:300px;padding:22px}
    .blog-scroll-title{font-size:1rem}
    .blog-scroll-nav{display:none}
    }
    .search-btn:hover { transform: scale(1.1); }
    .search-btn svg { width: 24px; height: 24px; stroke: var(--gray-700); fill: none; stroke-width: 2.5; stroke-linecap: round; }
    
    @media(max-width: 768px) {
        .trade-card {
            min-width: 280px;
        }
    }
    /* Mobile tweaks */
    @media(max-width:768px){
        .bl-reviews-section{
            padding-left:1rem;
            padding-right:1rem;
        }
        .bl-reviews-badge-row{
            flex-direction:column;
            align-items:flex-start;
        }
    }
    @media(max-width:768px){
        .bl-section,
        .bl-features,
        .bl-types,
        .bl-comparison,
        .bl-faq,
        .bl-related{
            padding-left:1rem;padding-right:1rem;
        }
        .content-grid,
        .comparison-grid,
        .faq-grid{
            grid-template-columns:1fr;
        }
        .footer-content{
            grid-template-columns:1fr;
            text-align:center;
            gap:2rem;
        }
    }
