/* ══════════════════════════════════
     IDENTICAL DESIGN SYSTEM TO SBK PAGE
  ══════════════════════════════════ */
  :root {
    --primary: #005D99;
    --primary-light: #1560a8;
    --accent: #00b4d8;
    --accent-warm: #f4a261;
    --bg: #f9fbfe;
    --surface: #ffffff;
    --surface-alt: #eef4fb;
    --text: #0f1c2e;
    --text-muted: #4a6280;
    --text-light: #7a90a8;
    --border: #d0dced;
    --success: #1a7f5a;
    --success-bg: #e6f7f1;
    --danger: #9b2226;
    --danger-bg: #fdf0f0;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(11,61,110,0.09);
    --shadow-hover: 0 8px 40px rgba(11,61,110,0.16);
    --font-body: 'DM Sans', sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
  }
  .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1140px!important;
    }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; font-size: 16px; }
  body { font-family: var(--font-body); color: var(--text); background: var(--bg); line-height: 1.5; -webkit-font-smoothing: antialiased;     font-size: 18px;}

  /* ── UTILITY ── */
  .section { padding: 40px 0; }
  .section-alt { background: var(--surface-alt); }
  .section-dark { background: var(--primary); color: #fff; padding:40px 0px; }
  .tag {
    display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--accent); background: rgba(0,180,216,0.1);
    padding: 4px 12px; border-radius: 100px; margin-bottom: 12px;
  }
  .section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700; color: var(--primary); line-height: 1.25; margin-bottom: 14px;
  }
  .section-title.light { color: #fff; }
  .section-sub { line-height: 1.7; margin-bottom: 48px; }
  .section-sub.light { color: rgba(255,255,255,0.78); }
 /* .grid { display: grid; gap: 24px; }
  .grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
  .grid-3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
  .grid-4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }*/
  .card {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 28px;
    box-shadow: var(--shadow); transition: box-shadow 0.25s, transform 0.25s;
  }
  .card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px; border-radius: 100px; font-size: 15px;
    font-weight: 600; font-family: var(--font-body);
    cursor: pointer; text-decoration: none; transition: all 0.2s;
    border: none; white-space: nowrap;
  }
  .btn-primary { background: var(--accent); color: #fff; }
  .btn-primary:hover { background: #0096b7; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,180,216,0.35); }
  .btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
  .btn-outline:hover { background: var(--primary); color: #fff; }
  .btn-white { background: #fff; color: var(--primary); }
  .btn-white:hover { background: var(--surface-alt); transform: translateY(-2px); }



  /* ── HERO ── */
  .hero {
    background: linear-gradient(135deg, #040f1e 0%, #0b2a52 50%, #0e3a6e 100%);
    display: flex; align-items: center;
    position: relative; overflow: hidden;
  }
  .hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 60% at 80% 40%, rgba(0,180,216,0.15) 0%, transparent 70%);
  }
.hero-grid {
    position: relative; z-index: 1; padding: 40px 0;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(0,180,216,0.15); border: 1px solid rgba(0,180,216,0.3);
    padding: 6px 16px; border-radius: 100px;
    font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--accent); margin-bottom: 24px;
  }
  .hero-badge::before { content: ''; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; animation: pulse 2s infinite; }
  @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.5)} }
  .hero h1 { font-family: var(--font-display); font-size: clamp(34px,5vw,58px); font-weight: 700; line-height: 1.15; color: #fff; margin-bottom: 20px; }
  .hero h1 em { font-style: normal; color: var(--accent); }
  .hero-sub { font-size: 18px; color: rgba(255,255,255,0.72); line-height: 1.7; margin-bottom: 36px; }
  .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
  .hero-stats { display: flex; gap: 40px; }
  .hero-stat-num { font-family: var(--font-display); font-size: 30px; font-weight: 700; color: #fff; }
  .hero-stat-label { font-size: 12px; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom:0px; }
  /*.hero-visual { display: flex; flex-direction: column; gap: 16px; align-items: flex-end; }*/
  .hero-card-main {
    background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14);
    border-radius: var(--radius-lg); padding: 32px; width: 100%;
    backdrop-filter: blur(10px);
  }
 /* .comparison-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .comparison-row:last-child { border-bottom: none; }*/
  /*.comp-label { font-size: 13px; color: rgba(255,255,255,0.6); }
  .comp-vals { display: flex; gap: 12px; }
  .comp-val { font-size: 13px; font-weight: 600; padding: 3px 10px; border-radius: 6px; }
  .comp-custom { background: rgba(0,180,216,0.2); color: var(--accent); }
  .comp-std { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.5); }*/
  /*.hero-mini-cards { display: flex; gap: 12px; width: 100%; max-width: 440px; }
  .hero-mini { flex: 1; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 16px; }
  .hero-mini-icon { font-size: 22px; margin-bottom: 8px; }
  .hero-mini-title { font-size: 12px; font-weight: 600; color: #fff; }
  .hero-mini-val { font-size: 11px; color: rgba(255,255,255,0.5); }*/

  /* ── BREADCRUMB ── */
  .breadcrumb { padding: 14px 10px; font-size: 18px; color: var(--text-muted);    margin-bottom: 0px; }
  .breadcrumb a { color: var(--text-muted); text-decoration: none; }
  .breadcrumb a:hover { color: var(--primary); }
  .breadcrumb span { margin: 0 6px; }

  /* ── WHAT IS SECTION ── */
  /*.what-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }*/
  /*.what-visual { position: relative; }*/
  /*.anatomy-card {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow);
  }
  .anatomy-header { background: var(--primary); color: #fff; padding: 16px 24px; }
  .anatomy-header h3 { font-size: 15px; font-weight: 600; }
  .anatomy-body { padding: 24px; }
  .layer-bar { margin-bottom: 12px; }
  .layer-label { font-size: 12px; color: var(--text-muted); margin-bottom: 4px; font-weight: 500; }
  .layer-track { height: 28px; border-radius: 6px; background: var(--surface-alt); position: relative; overflow: hidden; display: flex; align-items: center; padding: 0 10px; }
  .layer-fill { position: absolute; left: 0; top: 0; bottom: 0; border-radius: 6px; }
  .layer-text { position: relative; z-index: 1; font-size: 11px; font-weight: 600; }
  .custom-badge-float {
    position: absolute; top: -12px; right: -12px;
    background: var(--accent); color: #fff; padding: 8px 16px; border-radius: 100px;
    font-size: 12px; font-weight: 700; box-shadow: 0 4px 16px rgba(0,180,216,0.4);
  }*/

  /* ── WORKUP STEPS ── */
  /*.workup-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px,1fr)); gap: 22px; }*/
  .workup-step { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px 22px; box-shadow: var(--shadow); position: relative; overflow: hidden; }
  .workup-step::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--accent); border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  .ws-num { font-family: var(--font-display); font-size: 38px; font-weight: 700; color: var(--border); line-height: 1; margin-bottom: 12px; }
  .ws-icon { font-size: 28px; margin-bottom: 12px; }
  .ws-title { font-size: 16px; font-weight: 600; color: var(--primary); margin-bottom: 6px; }
  /*.ws-device { font-size: 10.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }*/
  .ws-desc { font-size: 16px; color: var(--text-muted); line-height: 1.5; }
  /*.ws-feeds { font-size: 12px; color: var(--text-light); margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--border); }*/
  /*.ws-feeds strong { color: var(--text-muted); }*/

  /* ── PROCESS ── */
  .process-steps {  position: relative; margin-bottom:30px; }
  .process-steps::before { content: ''; position: absolute; top: 36px; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg, var(--accent), var(--primary)); z-index: 0; }
  .step { text-align: center; position: relative; z-index: 1; padding: 0 12px; }
  .step-num { width: 72px; height: 72px; border-radius: 50%; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 22px; font-weight: 700; margin: 0 auto 16px; border: 4px solid var(--bg); box-shadow: 0 0 0 2px var(--accent); }
  .step-title { font-size: 18px; font-weight: 600; color: var(--primary); margin-bottom: 6px; }
  .step-desc {  font-size: 16px; color: var(--text-muted); line-height: 1.5; }
  .step-time { font-size: 11px; color: var(--accent); font-weight: 600; margin-top: 6px; }

  /* ── VISION PROBLEMS SECTION ── */
 /* .vision-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 20px; }
  .vision-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px 22px; box-shadow: var(--shadow); transition: box-shadow 0.25s, transform 0.25s; }
  .vision-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
  .vision-icon { font-size: 36px; margin-bottom: 12px; }
  .vision-name { font-size: 15px; font-weight: 600; color: var(--primary); margin-bottom: 6px; }
  .vision-desc { font-size: 13.5px; color: var(--text-muted); line-height: 1.68; }
  .vision-fix { display: inline-block; margin-top: 10px; background: var(--success-bg); color: var(--success); font-size: 11.5px; font-weight: 600; padding: 4px 12px; border-radius: 100px; }*/

  /* ── COMPARE TABLE ── */
  .compare-table { width: 100%; border-collapse: collapse; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
  .compare-table th { background: var(--primary); color: #fff; padding: 16px 20px; font-size: 18px; font-weight: 600; text-align: left; }
  .compare-table th:first-child { width: 36%; }
  .compare-table td { padding: 14px 20px; border-bottom: 1px solid var(--border); font-size: 16px; vertical-align: middle; background: var(--surface); }
  .compare-table tr:last-child td { border-bottom: none; }
  .badge-good { display: inline-flex; align-items: center; gap: 5px; background: var(--success-bg); color: var(--success); padding: 3px 10px; border-radius: 100px; font-size: 16px; font-weight: 600; }
  .badge-ok   { display: inline-flex; align-items: center; gap: 5px; background: #fff3e0; color: #9c6000; padding: 3px 10px; border-radius: 100px; font-size: 16px; font-weight: 600; }
/*  .compare-table .custom-col { color: var(--success); font-weight: 600; }
  .compare-table .std-col { color: var(--text-muted); }
  
  
  .badge-bad  { display: inline-flex; align-items: center; gap: 5px; background: var(--danger-bg); color: var(--danger); padding: 3px 10px; border-radius: 100px; font-size: 12px; font-weight: 600; }*/

  /* ── BENEFIT CARDS ── */
  .benefit-icon { font-size: 36px;}
  .benefit-title { font-size: 18px; font-weight: 600; color: var(--primary);line-height: normal; }
  .benefit-desc { font-size: 16px; color: var(--text-muted); line-height: 1.65; }

  /* ── CANDIDATE SECTION ── */
  /*.candidate-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }*/ 
  .candidate-card { border-radius: var(--radius-lg); padding: 28px; }
  .candidate-yes { background: var(--success-bg); border: 1px solid #b7e4d0; }
  .candidate-no  { background: var(--danger-bg);  border: 1px solid #f5c2c2; }
  .candidate-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 14px; }
  .candidate-yes h3 { color: var(--success); }
  .candidate-no  h3 { color: var(--danger); }
  .candidate-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
  .candidate-list li { font-size: 16px; padding-left: 22px; position: relative; }
  .candidate-list li::before { content: ''; position: absolute; left: 0; top: 8px; width: 8px; height: 8px; border-radius: 50%; }
  .candidate-yes .candidate-list li::before { background: var(--success); }
  .candidate-no  .candidate-list li::before { background: var(--danger); }

  /* ── FAQ ── */
  .faq-item { border-bottom: 1px solid var(--border); }
  .faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 20px 0; display: flex; justify-content: space-between; align-items: center; font-size: 18px; font-weight: 600; color: var(--primary); font-family: var(--font-body); }
  .faq-q .arrow { transition: transform 0.3s; font-size: 18px; color: var(--accent); }
  .faq-q.open .arrow { transform: rotate(180deg); }
  .faq-a { font-size: 16px;  line-height: 1.75; padding-bottom: 20px; display: none; }
  .faq-a.open { display: block; }

  /* ── STATS BAR ── */
  .stats-bar { display: flex; flex-wrap: wrap; justify-content: center; }
  /*.stat-item { text-align: center; padding: 40px 48px; border-right: 1px solid rgba(255,255,255,0.12); }*/
  /*.stat-item:last-child { border-right: none; }*/
  .stat-num { font-family: var(--font-display); font-size: 25px; font-weight: 700; color:#fff; line-height: 1; }
  .stat-label {color: rgba(255,255,255,0.65); margin-top: 6px; }

  /* ── RISK CARDS ── */
  /*.risk-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 20px; }*/
  .risk-card { border-radius: var(--radius); padding: 22px; border: 1px solid var(--border); background: var(--surface); }
  .risk-level { font-size: 14px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px; }
  .risk-low { color: var(--success); }
  .risk-mod { color: #9c6000; }
  .risk-title { font-size: 18px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
  .risk-desc {color: var(--text-muted); line-height: 1.5;    font-size: 16px; }

  /* ── COST ── */
  /*.cost-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 20px; }
  .cost-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; text-align: center; box-shadow: var(--shadow); }
  .cost-card.featured { border: 2px solid var(--accent); position: relative; }
  .cost-card.featured::before { content: 'Most Common'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; font-size: 11px; font-weight: 700; padding: 3px 14px; border-radius: 100px; white-space: nowrap; }
  .cost-range { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--primary); margin: 10px 0 6px; }
  .cost-label { font-size: 13px; color: var(--text-muted); }
  .cost-note { font-size: 12px; color: var(--text-light); margin-top: 8px; }*/

  /* ── RECOVERY TIMELINE ── */
  .timeline { position: relative; padding-left: 36px; }
  .timeline::before { content: ''; position: absolute; left: 10px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(180deg, var(--accent), var(--primary)); }
  .tl-item { position: relative; margin-bottom: 28px; }
  .tl-dot { position: absolute; left: -30px; top: 4px; width: 14px; height: 14px; border-radius: 50%; background: var(--accent); border: 3px solid var(--bg); box-shadow: 0 0 0 2px var(--accent); }
  .tl-time { font-size: 18px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 3px; }
  .tl-title { font-size: 18px; font-weight: 600; color: var(--primary); margin-bottom: 4px; }
  .tl-desc { font-size: 16px; color: var(--text-muted); line-height: 1.6; }

  /* ── CTA ── */
  .cta-box { background: linear-gradient(135deg, var(--primary) 0%, #1560a8 100%); border-radius: var(--radius-lg); padding: 64px; text-align: center; position: relative; overflow: hidden; }
  .cta-box::before { content: ''; position: absolute; top: -80px; right: -80px; width: 280px; height: 280px; border-radius: 50%; background: rgba(0,180,216,0.12); }
  .cta-box h2 { font-family: var(--font-display); font-size: 34px; color: #fff; margin-bottom: 14px; }
  .cta-box p { color:#fff ; font-size: 18px; margin-bottom: 32px; }
  .cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

  /* ── NOTICE ── */
  .notice { background: #fff8e1; border-left: 4px solid var(--accent-warm); border-radius: 0 8px 8px 0; padding: 14px 20px; font-size: 16px; color: #6b4c00; }

  

  /* ── KW PILLS ── */
  .kw-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
  .kw-pill { background: var(--surface-alt); border: 1px solid var(--border); border-radius: 100px; padding: 5px 14px; color: var(--text-muted); }

  /* ── RESPONSIVE ── */
  @media(max-width:900px){
    .hero-grid,.what-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-grid { padding: 60px 0; }
    /*.hero-visual { align-items: center; }*/
    /*.process-steps::before { display: none; }*/
    .candidate-grid { grid-template-columns: 1fr; }
    .stat-item { padding: 28px 0px; }
    .cta-box { padding: 40px 28px; }
    .hero-stats { gap: 24px; }
  }
  @media(max-width:600px){

.hero-stat-num {    font-size: 22px;}
    .step-num{position: absolute;        font-size: 17px; width: 50px;
        height: 50px;
    left: 0;margin: 0 0px 0px;}
    .step {
    text-align: left;
    padding: 0 12px 0px 65px;

}
.process-steps::before { content: ''; position: absolute; left: 9%; top: 0px; bottom: 0px; width: 2px;height: 83%; background: linear-gradient(180deg, var(--accent), var(--primary)); }
    .nav-links { display: none; }
    /*.hero-mini-cards { flex-direction: column; }*/
    .comp-vals { flex-direction: column; gap: 4px; }
  }
