
 
  :root{
    --cs-bg:       #0b0e13;
    --cs-surface:  #111520;
    --cs-surface2: #161b28;
    --cs-border:   rgba(255,255,255,0.07);
    --cs-rose:     #e0365a;
    --cs-rose-d:   rgba(224,54,90,0.10);
    --cs-rose-g:   rgba(224,54,90,0.22);
    --cs-rose-lt:  #ff6b8a;
    --cs-teal:     #00e5c0;
    --cs-teal-d:   rgba(0,229,192,0.10);
    --cs-gold:     #f0c040;
    --cs-gold-d:   rgba(240,192,64,0.10);
    --cs-white:    #f0f2f7;
    --cs-muted:    #7a8499;
    --ff-head:     'Barlow Condensed',sans-serif;
    --ff-body:     'Barlow',sans-serif;
  }
  body{background:var(--cs-bg);font-family:var(--ff-body);}
  .cs-section   {padding:90px 0;}
  .cs-section-sm{padding:60px 0;}

  .cs-kicker{
    display:inline-flex;align-items:center;gap:8px;
    font-size:.7rem;font-weight:600;letter-spacing:.22em;text-transform:uppercase;
    color:var(--cs-rose);border:1px solid rgba(224,54,90,.25);
    padding:.3rem .9rem;border-radius:50px;margin-bottom:1.25rem;
  }
  .cs-kicker-dot{width:6px;height:6px;border-radius:50%;background:var(--cs-rose);animation:cs-kd 2s infinite;}
  @keyframes cs-kd{0%,100%{box-shadow:0 0 0 0 var(--cs-rose-g);}50%{box-shadow:0 0 0 6px transparent;}}

  .cs-h2{
    font-family:var(--ff-head);font-size:clamp(2rem,4vw,3.4rem);
    font-weight:900;text-transform:uppercase;line-height:.95;
    letter-spacing:-.01em;color:var(--cs-white);margin-bottom:1rem;
  }
  .cs-h2 .hl {color:var(--cs-rose);}
  .cs-h2 .hlt{color:var(--cs-teal);}
  .cs-h2 .hlg{color:var(--cs-gold);}
  .cs-lead{font-size:1rem;font-weight:300;line-height:1.8;color:var(--cs-muted);}

  .cs-circuit-bg{position:absolute;inset:0;pointer-events:none;overflow:hidden;}
  .cs-circuit-bg svg{width:100%;height:100%;}

  /* ═══ BREADCRUMB ═══ */
  .cs-bc-bar{background:var(--cs-surface);border-bottom:1px solid var(--cs-border);padding:.75rem 0;}
  .cs-bc{list-style:none;margin:0;padding:0;display:flex;align-items:center;gap:.5rem;flex-wrap:wrap;}
  .cs-bc li{font-size:.78rem;color:var(--cs-muted);}
  .cs-bc li a{color:var(--cs-muted);text-decoration:none;transition:color .2s;}
  .cs-bc li a:hover{color:var(--cs-rose);}
  .cs-bc li.active{color:var(--cs-white);}
  .cs-bc-sep{color:rgba(255,255,255,.18);font-size:.6rem;}

  /* ═══ HERO ═══ */
  .cs-hero{
    position:relative;padding:100px 0 80px;overflow:hidden;
    background:linear-gradient(150deg,rgba(224,54,90,.06) 0%,var(--cs-bg) 55%,rgba(240,192,64,.03) 100%);
  }
  .cs-hero-tag{
    display:inline-flex;align-items:center;gap:8px;
    font-size:.72rem;font-weight:700;letter-spacing:.18em;text-transform:uppercase;
    color:var(--cs-rose);background:var(--cs-rose-d);
    border:1px solid rgba(224,54,90,.28);padding:.4rem 1rem;border-radius:6px;
    margin-bottom:1.5rem;
  }
  .cs-hero-h1{
    font-family:var(--ff-head);
    font-size:clamp(2.4rem,5.5vw,5rem);
    font-weight:900;text-transform:uppercase;line-height:.9;letter-spacing:-.02em;
    color:var(--cs-white);margin-bottom:1.5rem;
  }
  .cs-hero-h1 .hl {color:var(--cs-rose);}
  .cs-hero-h1 .hlt{color:var(--cs-teal);}
  .cs-hero-h1 .hld{color:var(--cs-muted);font-weight:400;}
  .cs-hero-lead{font-size:1.05rem;font-weight:300;line-height:1.85;color:var(--cs-muted);max-width:570px;margin-bottom:2.25rem;}
  .cs-hero-lead strong{color:var(--cs-white);font-weight:500;}

  .btn-cs-primary{
    display:inline-flex;align-items:center;gap:9px;
    font-family:var(--ff-head);font-size:.95rem;font-weight:800;
    text-transform:uppercase;letter-spacing:.1em;
    color:#fff;background:var(--cs-rose);
    border:none;padding:.9rem 2rem;border-radius:8px;text-decoration:none;
    position:relative;overflow:hidden;transition:transform .2s,box-shadow .2s;
  }
  .btn-cs-primary::after{content:'';position:absolute;inset:0;
    background:linear-gradient(90deg,transparent,rgba(255,255,255,.18),transparent);
    transform:translateX(-100%);transition:transform .5s ease;}
  .btn-cs-primary:hover{color:#fff;transform:translateY(-2px);box-shadow:0 8px 28px var(--cs-rose-g);}
  .btn-cs-primary:hover::after{transform:translateX(100%);}
  .btn-cs-ghost{
    display:inline-flex;align-items:center;gap:8px;
    font-family:var(--ff-body);font-size:.88rem;font-weight:500;
    color:var(--cs-white);border:1px solid var(--cs-border);
    padding:.9rem 1.75rem;border-radius:8px;text-decoration:none;
    transition:border-color .2s,background .2s;
  }
  .btn-cs-ghost:hover{border-color:rgba(255,255,255,.2);background:rgba(255,255,255,.04);color:var(--cs-white);}

  .cs-hero-stats{
    display:grid;grid-template-columns:1fr 1fr;gap:1px;
    background:var(--cs-border);border:1px solid var(--cs-border);border-radius:14px;overflow:hidden;
  }
  .cs-hero-stat{background:var(--cs-surface);padding:1.75rem 1.5rem;display:flex;flex-direction:column;gap:.4rem;}
  .cs-hero-stat-num{font-family:var(--ff-head);font-size:2.6rem;font-weight:800;color:var(--cs-white);line-height:1;}
  .cs-hero-stat-num .r{color:var(--cs-rose);}
  .cs-hero-stat-num .t{color:var(--cs-teal);}
  .cs-hero-stat-num .g{color:var(--cs-gold);}
  .cs-hero-stat-label{font-size:.78rem;color:var(--cs-muted);line-height:1.4;}
  .cs-hero-stat-src{font-size:.65rem;color:rgba(122,132,153,.55);}

  /* ═══ TRUST TICKER ═══ */
  .cs-trust-bar{background:var(--cs-surface);border-top:1px solid var(--cs-border);border-bottom:1px solid var(--cs-border);padding:18px 0;overflow:hidden;}
  .cs-trust-scroll{display:flex;gap:3rem;width:max-content;animation:cs-trust 30s linear infinite;}
  .cs-trust-scroll:hover{animation-play-state:paused;}
  @keyframes cs-trust{0%{transform:translateX(0);}100%{transform:translateX(-50%);}}
  .cs-trust-item{display:flex;align-items:center;gap:8px;white-space:nowrap;font-size:.78rem;font-weight:500;color:var(--cs-muted);}
  .cs-trust-item i{color:var(--cs-rose);font-size:.85rem;}
  .cs-trust-sep{width:4px;height:4px;border-radius:50%;background:var(--cs-border);flex-shrink:0;}

  /* ═══════════════════════════════════════
     PROBLEM → SOLUTION INTERACTIVE SHOWCASE
  ═══════════════════════════════════════ */
  .cs-showcase-wrap{
    background:var(--cs-surface);border:1px solid var(--cs-border);
    border-radius:16px;overflow:hidden;position:relative;
  }
  .cs-showcase-wrap::before{content:'';position:absolute;top:0;left:0;right:0;height:2px;
    background:linear-gradient(90deg,transparent,var(--cs-rose) 50%,transparent);}

  .cs-showcase-grid{display:grid;grid-template-columns:260px 1fr;}

  /* Left: problem selector */
  .cs-problem-list{
    border-right:1px solid var(--cs-border);
    padding:1.5rem 0;
  }
  .cs-prob-label{
    font-size:.62rem;font-weight:700;letter-spacing:.2em;text-transform:uppercase;
    color:var(--cs-muted);padding:.5rem 1.5rem .75rem;
  }
  .cs-prob-btn{
    width:100%;background:none;border:none;cursor:pointer;text-align:left;
    padding:.75rem 1.5rem;
    display:flex;align-items:center;gap:10px;
    border-left:2px solid transparent;
    transition:background .2s,border-color .2s;
  }
  .cs-prob-btn:hover{background:rgba(255,255,255,.03);}
  .cs-prob-btn.active{
    background:var(--cs-rose-d);border-left-color:var(--cs-rose);
  }
  .cs-prob-icon{
    width:30px;height:30px;border-radius:7px;flex-shrink:0;
    display:flex;align-items:center;justify-content:center;font-size:.8rem;
    background:var(--cs-surface2);color:var(--cs-muted);
    transition:background .2s,color .2s;
  }
  .cs-prob-btn.active .cs-prob-icon{background:var(--cs-rose-d);color:var(--cs-rose);}
  .cs-prob-text{font-size:.82rem;font-weight:500;color:var(--cs-muted);line-height:1.3;text-align:left;}
  .cs-prob-btn.active .cs-prob-text{color:var(--cs-white);}

  /* Right: solution display */
  .cs-solution-display{padding:2rem;}
  .cs-sol-panel{display:none;}
  .cs-sol-panel.active{display:block;}
  .cs-sol-tag{
    display:inline-flex;align-items:center;gap:6px;
    font-size:.65rem;font-weight:700;letter-spacing:.15em;text-transform:uppercase;
    color:var(--cs-rose);background:var(--cs-rose-d);
    border:1px solid rgba(224,54,90,.2);padding:.22rem .65rem;border-radius:4px;margin-bottom:1rem;
  }
  .cs-sol-title{font-family:var(--ff-head);font-size:1.5rem;font-weight:800;text-transform:uppercase;letter-spacing:.01em;color:var(--cs-white);margin-bottom:.75rem;line-height:1.05;}
  .cs-sol-text{font-size:.9rem;font-weight:300;line-height:1.8;color:var(--cs-muted);margin-bottom:1.25rem;}
  .cs-sol-text strong{color:var(--cs-white);font-weight:500;}
  .cs-sol-metrics{display:flex;gap:1.5rem;flex-wrap:wrap;margin-bottom:1.25rem;}
  .cs-sol-metric{display:flex;flex-direction:column;gap:2px;}
  .cs-sol-metric-num{font-family:var(--ff-head);font-size:1.8rem;font-weight:800;color:var(--cs-white);line-height:1;}
  .cs-sol-metric-num span{color:var(--cs-rose);}
  .cs-sol-metric-label{font-size:.7rem;color:var(--cs-muted);letter-spacing:.04em;}
  .cs-sol-tech{display:flex;flex-wrap:wrap;gap:.4rem;}
  .cs-sol-tech-pill{
    font-size:.68rem;font-weight:500;color:var(--cs-teal);
    background:var(--cs-teal-d);border:1px solid rgba(0,229,192,.2);
    padding:.2rem .6rem;border-radius:4px;
  }

  /* ═══ WHAT WE BUILD CARDS ═══ */
  .cs-build-card{
    background:var(--cs-surface);border:1px solid var(--cs-border);
    border-radius:14px;padding:2rem;height:100%;position:relative;overflow:hidden;
    transition:border-color .3s,transform .3s;
  }
  .cs-build-card:hover{border-color:rgba(224,54,90,.28);transform:translateY(-3px);}
  .cs-build-card::before{
    content:'';position:absolute;top:0;left:0;right:0;height:3px;
    background:linear-gradient(90deg,var(--cs-rose),var(--cs-rose-lt));
    transform:scaleX(0);transform-origin:left;transition:transform .35s ease;
  }
  .cs-build-card:hover::before{transform:scaleX(1);}
  .cs-build-card::after{
    content:attr(data-n);font-family:var(--ff-head);font-size:5rem;font-weight:900;
    color:rgba(224,54,90,.04);line-height:1;
    position:absolute;bottom:.25rem;right:1rem;pointer-events:none;
  }
  .cs-build-icon{
    width:48px;height:48px;border-radius:12px;
    background:var(--cs-rose-d);border:1px solid rgba(224,54,90,.22);
    display:flex;align-items:center;justify-content:center;
    font-size:1.1rem;color:var(--cs-rose);margin-bottom:1.25rem;
    transition:box-shadow .3s;
  }
  .cs-build-card:hover .cs-build-icon{box-shadow:0 0 20px var(--cs-rose-g);}
  .cs-build-title{font-family:var(--ff-head);font-size:1.1rem;font-weight:700;text-transform:uppercase;letter-spacing:.03em;color:var(--cs-white);margin-bottom:.65rem;}
  .cs-build-text{font-size:.88rem;font-weight:300;line-height:1.75;color:var(--cs-muted);margin-bottom:1rem;}
  .cs-build-industries{display:flex;flex-wrap:wrap;gap:.4rem;}
  .cs-ind-pill{
    font-size:.65rem;font-weight:600;letter-spacing:.06em;text-transform:uppercase;
    color:var(--cs-rose);background:var(--cs-rose-d);
    border:1px solid rgba(224,54,90,.2);padding:.18rem .55rem;border-radius:4px;
  }

  /* ═══ GENERIC vs CUSTOM ═══ */
  .cs-vs-grid{display:grid;grid-template-columns:1fr 1fr;gap:1.5rem;}
  .cs-vs-col{background:var(--cs-surface);border:1px solid var(--cs-border);border-radius:14px;padding:2rem;position:relative;overflow:hidden;}
  .cs-vs-col.custom{border-color:rgba(224,54,90,.22);}
  .cs-vs-col.custom::before{content:'';position:absolute;top:0;left:0;right:0;height:2px;background:linear-gradient(90deg,transparent,var(--cs-rose) 50%,transparent);}
  .cs-vs-label{font-size:.68rem;font-weight:700;letter-spacing:.2em;text-transform:uppercase;margin-bottom:1.25rem;display:flex;align-items:center;gap:8px;}
  .cs-vs-label.off{color:var(--cs-muted);}
  .cs-vs-label.cus{color:var(--cs-rose);}
  .cs-vs-list{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:.85rem;}
  .cs-vs-list li{display:flex;align-items:flex-start;gap:10px;font-size:.88rem;color:var(--cs-muted);line-height:1.5;}
  .cs-vs-list li .ic{width:20px;height:20px;border-radius:50%;display:flex;align-items:center;justify-content:center;flex-shrink:0;margin-top:1px;font-size:.6rem;}
  .ic-no {background:rgba(255,77,77,.1);color:#ff4d4d;}
  .ic-ok {background:rgba(232,144,58,.1);color:#e8903a;}
  .ic-yes{background:var(--cs-rose-d);color:var(--cs-rose);}
  .cs-vs-list li strong{color:var(--cs-white);}

  /* ═══ DEVELOPMENT PHASES ═══ */
  .cs-phase-item{
    display:grid;grid-template-columns:1fr 1fr;gap:0;
    position:relative;
  }
  .cs-phase-item:not(:last-child)::after{
    content:'';position:absolute;left:50%;transform:translateX(-50%);
    bottom:-1px;width:1px;height:48px;
    background:linear-gradient(180deg,var(--cs-rose),transparent);
    z-index:1;
  }
  .cs-phase-card{
    background:var(--cs-surface);border:1px solid var(--cs-border);
    border-radius:14px;padding:2rem;
    transition:border-color .3s,transform .3s;
  }
  .cs-phase-card:hover{border-color:rgba(224,54,90,.25);transform:translateY(-2px);}
  .cs-phase-num-wrap{display:flex;align-items:center;gap:12px;margin-bottom:1rem;}
  .cs-phase-num{
    width:40px;height:40px;border-radius:10px;flex-shrink:0;
    background:var(--cs-rose-d);border:1px solid rgba(224,54,90,.25);
    display:flex;align-items:center;justify-content:center;
    font-family:var(--ff-head);font-size:1rem;font-weight:800;color:var(--cs-rose);
  }
  .cs-phase-label{font-size:.65rem;font-weight:700;letter-spacing:.15em;text-transform:uppercase;color:var(--cs-rose);}
  .cs-phase-title{font-family:var(--ff-head);font-size:1.1rem;font-weight:700;text-transform:uppercase;letter-spacing:.02em;color:var(--cs-white);margin-bottom:.65rem;}
  .cs-phase-text{font-size:.88rem;font-weight:300;line-height:1.75;color:var(--cs-muted);margin-bottom:1rem;}
  .cs-phase-output{
    display:inline-flex;align-items:center;gap:5px;
    font-size:.7rem;font-weight:500;color:var(--cs-white);
    background:var(--cs-surface2);border:1px solid var(--cs-border);
    border-radius:50px;padding:.25rem .75rem;
  }
  .cs-phase-output i{color:var(--cs-rose);font-size:.65rem;}

  /* spacer between alternating phases */
  .cs-phase-spacer{height:48px;}

  /* ═══ CAPABILITY MATRIX ═══ */
  .cs-cap-category{
    background:var(--cs-surface);border:1px solid var(--cs-border);
    border-radius:12px;padding:1.5rem;
  }
  .cs-cap-cat-title{
    font-family:var(--ff-head);font-size:.72rem;font-weight:700;letter-spacing:.18em;text-transform:uppercase;
    color:var(--cs-rose);margin-bottom:1rem;display:flex;align-items:center;gap:8px;
  }
  .cs-cap-cat-title::before{content:'';width:16px;height:2px;background:var(--cs-rose);border-radius:2px;flex-shrink:0;}
  .cs-cap-tags{display:flex;flex-wrap:wrap;gap:.4rem;}
  .cs-cap-tag{
    font-size:.72rem;font-weight:500;color:var(--cs-muted);
    background:var(--cs-surface2);border:1px solid var(--cs-border);
    padding:.3rem .75rem;border-radius:6px;
    transition:color .2s,border-color .2s,background .2s;
  }
  .cs-cap-tag:hover{color:var(--cs-white);border-color:rgba(224,54,90,.22);background:var(--cs-rose-d);}

  /* ═══ CASE STUDY SNAPSHOTS ═══ */
  .cs-case-card{
    background:var(--cs-surface);border:1px solid var(--cs-border);
    border-radius:14px;padding:2rem;position:relative;overflow:hidden;
    transition:border-color .3s,transform .3s;
  }
  .cs-case-card:hover{border-color:rgba(224,54,90,.22);transform:translateY(-3px);}
  .cs-case-industry{
    font-size:.65rem;font-weight:700;letter-spacing:.15em;text-transform:uppercase;
    color:var(--cs-rose);background:var(--cs-rose-d);
    border:1px solid rgba(224,54,90,.2);padding:.2rem .6rem;border-radius:4px;
    display:inline-block;margin-bottom:1rem;
  }
  .cs-case-problem{font-family:var(--ff-head);font-size:1rem;font-weight:700;text-transform:uppercase;letter-spacing:.02em;color:var(--cs-white);margin-bottom:.5rem;}
  .cs-case-desc{font-size:.85rem;font-weight:300;line-height:1.7;color:var(--cs-muted);margin-bottom:1.25rem;}
  .cs-case-results{display:flex;gap:1.25rem;flex-wrap:wrap;}
  .cs-case-result{display:flex;flex-direction:column;gap:2px;}
  .cs-case-result-num{font-family:var(--ff-head);font-size:1.6rem;font-weight:800;color:var(--cs-white);line-height:1;}
  .cs-case-result-num span{color:var(--cs-rose);}
  .cs-case-result-label{font-size:.68rem;color:var(--cs-muted);}
  .cs-case-divider{height:1px;background:var(--cs-border);margin:1rem 0;}
  .cs-case-tech{font-size:.72rem;color:var(--cs-muted);}
  .cs-case-tech strong{color:var(--cs-teal);}

  /* ═══ PHILOSOPHY BLOCK ═══ */
  .cs-phil-wrap{
    background:var(--cs-surface);border:1px solid var(--cs-border);
    border-radius:16px;padding:2.5rem;position:relative;overflow:hidden;
  }
  .cs-phil-wrap::before{content:'';position:absolute;top:0;left:0;right:0;height:2px;background:linear-gradient(90deg,transparent,var(--cs-rose) 50%,transparent);}
  .cs-phil-principle{
    display:flex;align-items:flex-start;gap:1rem;
    padding:1.25rem 0;border-bottom:1px solid var(--cs-border);
  }
  .cs-phil-principle:last-child{border-bottom:none;padding-bottom:0;}
  .cs-phil-icon{
    width:36px;height:36px;border-radius:8px;flex-shrink:0;
    display:flex;align-items:center;justify-content:center;font-size:.85rem;
    background:var(--cs-rose-d);color:var(--cs-rose);border:1px solid rgba(224,54,90,.18);
  }
  .cs-phil-title{font-size:.88rem;font-weight:600;color:var(--cs-white);margin-bottom:.3rem;}
  .cs-phil-text{font-size:.83rem;font-weight:300;line-height:1.65;color:var(--cs-muted);margin:0;}

  /* ═══ TEAM / EXPERTISE SIGNALS ═══ */
  .cs-expertise-card{
    background:var(--cs-surface);border:1px solid var(--cs-border);
    border-radius:12px;padding:1.5rem;
    display:flex;align-items:flex-start;gap:1rem;
    transition:border-color .3s;
  }
  .cs-expertise-card:hover{border-color:rgba(224,54,90,.2);}
  .cs-exp-icon{
    width:44px;height:44px;border-radius:10px;flex-shrink:0;
    display:flex;align-items:center;justify-content:center;font-size:1rem;
    background:var(--cs-rose-d);color:var(--cs-rose);border:1px solid rgba(224,54,90,.18);
  }
  .cs-exp-title{font-size:.88rem;font-weight:600;color:var(--cs-white);margin-bottom:.3rem;}
  .cs-exp-text{font-size:.8rem;font-weight:300;line-height:1.6;color:var(--cs-muted);margin:0;}

  /* ═══ TESTIMONIALS ═══ */
  .cs-testi-card{background:var(--cs-surface);border:1px solid var(--cs-border);border-radius:14px;padding:2rem;position:relative;overflow:hidden;}
  .cs-testi-card::before{content:'"';font-family:Georgia,serif;font-size:6rem;font-weight:900;color:rgba(224,54,90,.07);line-height:.8;position:absolute;top:.5rem;left:1.25rem;pointer-events:none;}
  .cs-testi-text{font-size:.92rem;font-weight:300;line-height:1.8;color:var(--cs-white);margin-bottom:1.5rem;position:relative;z-index:1;font-style:italic;}
  .cs-testi-author{display:flex;align-items:center;gap:.85rem;position:relative;z-index:1;}
  .cs-testi-avatar{width:40px;height:40px;border-radius:50%;flex-shrink:0;display:flex;align-items:center;justify-content:center;font-family:var(--ff-head);font-size:.9rem;font-weight:700;}
  .cs-testi-name{font-size:.85rem;font-weight:600;color:var(--cs-white);}
  .cs-testi-role{font-size:.75rem;color:var(--cs-muted);}
  .cs-testi-stars{color:#ffc107;font-size:.75rem;margin-top:.25rem;letter-spacing:2px;}
  .cs-testi-tag{position:absolute;top:1.25rem;right:1.25rem;font-size:.65rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--cs-rose);background:var(--cs-rose-d);border:1px solid rgba(224,54,90,.2);padding:.2rem .6rem;border-radius:4px;}

  /* ═══ FAQ ═══ */
  .cs-faq-item{border-bottom:1px solid var(--cs-border);}
  .cs-faq-q{width:100%;background:none;border:none;cursor:pointer;display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:1.25rem 0;text-align:left;}
  .cs-faq-q-text{font-size:.95rem;font-weight:500;color:var(--cs-white);line-height:1.4;font-family:var(--ff-body);}
  .cs-faq-icon{width:28px;height:28px;border-radius:50%;border:1px solid var(--cs-border);display:flex;align-items:center;justify-content:center;flex-shrink:0;font-size:.65rem;color:var(--cs-muted);transition:border-color .2s,color .2s,transform .3s;}
  .cs-faq-item.open .cs-faq-icon{border-color:var(--cs-rose);color:var(--cs-rose);transform:rotate(45deg);}
  .cs-faq-a{display:none;padding-bottom:1.25rem;font-size:.88rem;font-weight:300;line-height:1.8;color:var(--cs-muted);}
  .cs-faq-item.open .cs-faq-a{display:block;}

  /* ═══ RELATED ═══ */
  .cs-related-card{background:var(--cs-surface);border:1px solid var(--cs-border);border-radius:12px;padding:1.75rem;text-decoration:none;display:block;transition:border-color .3s,transform .3s;height:100%;}
  .cs-related-card:hover{border-color:rgba(224,54,90,.25);transform:translateY(-3px);}
  .cs-related-icon{width:44px;height:44px;border-radius:10px;display:flex;align-items:center;justify-content:center;font-size:1rem;margin-bottom:1.1rem;border:1px solid transparent;}
  .cs-related-title{font-family:var(--ff-head);font-size:1.05rem;font-weight:700;text-transform:uppercase;color:var(--cs-white);margin-bottom:.5rem;display:flex;align-items:center;gap:.5rem;}
  .cs-related-title i{font-size:.75rem;color:var(--cs-rose);opacity:0;transition:opacity .2s,transform .2s;transform:translateX(-4px);}
  .cs-related-card:hover .cs-related-title i{opacity:1;transform:translateX(0);}
  .cs-related-text{font-size:.82rem;font-weight:300;line-height:1.65;color:var(--cs-muted);margin:0;}

  /* ═══ CTA BAND ═══ */
  .cs-cta-band{background:var(--cs-surface);border-top:1px solid var(--cs-border);border-bottom:1px solid var(--cs-border);position:relative;overflow:hidden;padding:80px 0;}
  .cs-cta-band::before{content:'';position:absolute;top:-150px;left:50%;transform:translateX(-50%);width:700px;height:400px;background:radial-gradient(ellipse,rgba(224,54,90,.1) 0%,transparent 70%);pointer-events:none;}
  .cs-cta-headline{font-family:var(--ff-head);font-size:clamp(2rem,4.5vw,4rem);font-weight:900;text-transform:uppercase;line-height:.95;letter-spacing:-.01em;color:var(--cs-white);margin-bottom:.75rem;}
  .cs-cta-headline .hl{color:var(--cs-rose);}
  .cs-urgency{display:inline-flex;align-items:center;gap:7px;font-size:.72rem;font-weight:600;letter-spacing:.12em;text-transform:uppercase;color:var(--cs-rose);background:var(--cs-rose-d);border:1px solid rgba(224,54,90,.3);padding:.3rem .85rem;border-radius:50px;margin-bottom:1.25rem;}
  .cs-urgency-blink{width:6px;height:6px;border-radius:50%;background:var(--cs-rose);animation:cs-ublink 1.2s infinite;}
  @keyframes cs-ublink{0%,100%{opacity:1;}50%{opacity:.15;}}

  /* ═══ RESPONSIVE ═══ */
  @media(max-width:991px){
    .cs-showcase-grid{grid-template-columns:1fr;}
    .cs-problem-list{border-right:none;border-bottom:1px solid var(--cs-border);}
    .cs-prob-btn{padding:.6rem 1rem;}
    .cs-vs-grid{grid-template-columns:1fr;}
    .cs-phase-item{grid-template-columns:1fr;}
    .cs-phase-item:not(:last-child)::after{display:none;}
  }
  @media(max-width:767px){
    .cs-hero{padding:64px 0 56px;}
    .cs-section{padding:60px 0;}
    .cs-hero-stats{grid-template-columns:1fr 1fr;}
    .cs-sol-metrics{gap:1rem;}
  }
 
    /* ── OVERFLOW FIX ── */

/* 1. Contain the SVG lines — kill overflow:visible */
.ai-conn-lines-left svg,
.ai-conn-lines-right svg {
  overflow: hidden;
}

/* 2. Let tool labels wrap so they don't bust the grid */
.ai-conn-tool {
  white-space: normal;
  word-break: break-word;
}

/* 3. Hide the diagram at tablet too, not just mobile */
@media (max-width: 991px) {
  .ai-conn-diagram {
    display: none;
  }
  .ai-connector-wrap {
    display: none;
  }
}

/* 4. Nuclear option for the whole page — catches any other rogue element */
body {
  overflow-x: hidden;
}
html {
  overflow-x: hidden;
}
