 *,
 *::before,
 *::after {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
 }

 :root {
     /* JanBask brand colors */
     --jb-navy: #0B1E3F;
     --jb-blue: #1A4DA2;
     --jb-accent: #F5A623;
     --jb-dark: #0D1B2A;

     /* Lifebulb client palette (teal-green wellness) */
     --lb-teal: #ea1616;
     --lb-green: #0B1E3F;
     --lb-soft: #EAF8F5;

     /* Neutrals */
     --white: #FFFFFF;
     --gray-50: #F8FAFC;
     --gray-100: #F1F5F9;
     --gray-200: #E2E8F0;
     --gray-600: #000000;
     --gray-800: #1E293B;

     --font-display: 'Sora', sans-serif;
     --font-body: 'Inter', sans-serif;
 }

 html {
     scroll-behavior: smooth;
 }

 body {
     font-family: var(--font-body);
     color: var(--gray-800);
     background: var(--white);
     line-height: 1.6;
 }

 /* ── NAV ── */
 .secNav {
     background: var(--jb-navy);
     padding: 16px 48px;
     display: flex;
     align-items: center;
     justify-content: center;
     position: fixed;
     top: 72px;
     left: 0;
     right: 0;
     z-index: 996;
     box-shadow: 0 2px 20px rgba(0, 0, 0, .3);
     opacity: 0;
     visibility: hidden;
     pointer-events: none;
     transform: translateY(-10px);
     transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
 }

 .secNav.is-visible {
     opacity: 1;
     visibility: visible;
     pointer-events: auto;
     transform: translateY(0);
 }

 .secNav .logo img {
     height: 36px;
 }

 .secNav .nav-links {
     display: flex;
     justify-content: center;
     gap: 32px;
     list-style: none;
     width: 100%;
     margin: 0;
 }

 .secNav .nav-links a {
     color: rgba(255, 255, 255, .75);
     text-decoration: none;
     font-size: 14px;
     font-weight: 500;
     transition: color .2s;
 }

 .secNav .nav-links a:hover {
     color: var(--jb-accent);
 }

 /* ── HERO ── */
 .hero {
     background: linear-gradient(135deg, var(--jb-dark) 0%, var(--jb-navy) 55%, #0E3060 100%);
     padding: 80px 48px;
     min-height: 84vh;
     min-height: 84svh;
     min-height: 84dvh;
     display: flex;
     align-items: center;
     position: relative;
     overflow: hidden;
 }

 .hero::before {
     content: '';
     position: absolute;
     inset: 0;
     background: radial-gradient(ellipse at 70% 40%, rgba(58, 191, 191, .12) 0%, transparent 60%);
 }

 .hero-inner {
     max-width: 1100px;
     margin: 0 auto;
     position: relative;
     display: grid;
     grid-template-columns: 1fr 340px;
     gap: 60px;
     align-items: center;
 }

 .hero-eyebrow {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     background: rgba(58, 191, 191, .15);
     border: 1px solid rgba(58, 191, 191, .35);
     color: var(--lb-teal);
     font-size: 12px;
     font-weight: 600;
     letter-spacing: .08em;
     text-transform: uppercase;
     padding: 6px 14px;
     border-radius: 20px;
     margin-bottom: 20px;
 }

 .hero-eyebrow span {
     width: 6px;
     height: 6px;
     background: var(--lb-teal);
     border-radius: 50%;
     display: inline-block;
 }

 .hero h1 {
     font-family: var(--font-display);
     font-size: clamp(28px, 4vw, 48px);
     font-weight: 800;
     color: var(--white);
     line-height: 1.18;
     margin-bottom: 20px;
 }

 .hero h1 em {
     font-style: normal;
     color: var(--lb-teal);
 }

 .hero-desc {
     color: rgba(255, 255, 255, .72);
     font-size: 16px;
     max-width: 560px;
     margin-bottom: 32px;
 }

 .hero-tags {
     display: flex;
     flex-wrap: wrap;
     gap: 8px;
 }

 .hero-tags .tag {
     background: rgba(255, 255, 255, .08);
     border: 1px solid rgba(255, 255, 255, .15);
     color: rgba(255, 255, 255, .8);
     font-size: 12px;
     font-weight: 500;
     padding: 5px 12px;
     border-radius: 4px;
 }

 /* Hero Card */
 .hero-card {
     background: rgba(255, 255, 255, .06);
     border: 1px solid rgba(255, 255, 255, .12);
     border-radius: 16px;
     padding: 32px 28px;
     backdrop-filter: blur(8px);
 }

 .client-logo-wrap {
     background: var(--white);
     border-radius: 10px;
     padding: 16px 24px;
     margin-bottom: 24px;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .client-logo-wrap img {
     height: 40px;
     object-fit: contain;
 }

 .hero-stat-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 14px;
 }

 .hero-stat {
     background: rgba(255, 255, 255, .06);
     border-radius: 10px;
     padding: 14px;
     text-align: center;
 }

 .hero-stat .number {
     font-family: var(--font-display);
     font-size: 24px;
     font-weight: 800;
     color: var(--lb-teal);
     line-height: 1;
 }

 .hero-stat .label {
     font-size: 11px;
     color: rgba(255, 255, 255, .6);
     margin-top: 4px;
 }

 /* ── SECTIONS ── */
 .section {
     padding: 72px 48px;
 }

 .section-inner {
     max-width: 1100px;
     margin: 0 auto;
 }

 .section-alt {
     background: var(--gray-50);
 }

 .section-label {
     font-size: 12px;
     font-weight: 700;
     letter-spacing: .1em;
     text-transform: uppercase;
     color: var(--jb-blue);
     margin-bottom: 10px;
 }

 h2 {
     font-family: var(--font-display);
     font-size: clamp(22px, 3vw, 34px);
     font-weight: 800;
     color: var(--jb-navy);
     line-height: 1.2;
     margin-bottom: 16px;
 }

 h2 .accent {
     color: var(--lb-teal);
 }

 .section-lead {
     font-size: 16px;
     color: var(--gray-600);
     max-width: 640px;
     margin-bottom: 48px;
 }

 /* ── OVERVIEW STRIP ── */
 .overview-strip {
     background: var(--jb-navy);
     padding: 0 48px;
 }

 .overview-inner {
     max-width: 1100px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     border-left: 1px solid rgba(255, 255, 255, .08);
 }

 .overview-item {
     padding: 28px 24px;
     border-right: 1px solid rgba(255, 255, 255, .08);
 }

 .overview-item .ov-label {
     font-size: 11px;
     font-weight: 600;
     letter-spacing: .08em;
     text-transform: uppercase;
     color: var(--jb-accent);
     margin-bottom: 6px;
 }

 .overview-item .ov-value {
     font-size: 14px;
     font-weight: 500;
     color: var(--white);
 }

 /* ── CHALLENGE ── */
 .challenge-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 40px;
     align-items: start;
 }

 .challenge-text p {
     font-size: 15px;
     color: var(--gray-600);
     margin-bottom: 16px;
 }

 .challenge-list {
     list-style: none;
     display: flex;
     flex-direction: column;
     gap: 12px;
 }

 .challenge-list li {
     display: flex;
     align-items: flex-start;
     gap: 12px;
     font-size: 14px;
     color: var(--gray-600);
     padding: 14px 16px;
     background: var(--white);
     border-radius: 10px;
     border: 1px solid var(--gray-200);
 }

 .challenge-list li .icon {
     width: 28px;
     height: 28px;
     background: linear-gradient(135deg, var(--lb-teal), var(--lb-green));
     border-radius: 6px;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
     font-size: 13px;
 }

 /* ── SOLUTION FEATURES ── */
 .features-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 24px;
 }

 .feature-card {
     background: var(--white);
     border: 1px solid var(--gray-200);
     border-radius: 14px;
     padding: 28px 24px;
     transition: transform .2s, box-shadow .2s;
 }

 .feature-card:hover {
     transform: translateY(-4px);
     box-shadow: 0 12px 32px rgba(0, 0, 0, .09);
 }

 .feature-icon {
     width: 44px;
     height: 44px;
     border-radius: 10px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 20px;
     margin-bottom: 16px;
 }

 .feature-card h3 {
     font-family: var(--font-display);
     font-size: 16px;
     font-weight: 700;
     color: var(--jb-navy);
     margin-bottom: 8px;
 }

 .feature-card p {
     font-size: 13.5px;
     color: var(--gray-600);
     line-height: 1.55;
 }

 /* ── KEY IMPROVEMENTS ── */
 .improvements-row {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 16px;
 }

 .improvement-pill {
     background: var(--white);
     border: 1px solid var(--gray-200);
     border-radius: 10px;
     padding: 12px;
     display: flex;
     align-items: center;
     gap: 10px;
     font-size: 13px;
     font-weight: 500;
     color: var(--gray-800);
 }

 .improvement-pill .dot {
     width: 8px;
     height: 8px;
     border-radius: 50%;
     background: var(--lb-teal);
     flex-shrink: 0;
 }

 /* ── RESULTS ── */
 .results-section {
     background: linear-gradient(135deg, var(--jb-navy) 0%, #0E2A56 100%);
     position: relative;
     overflow: hidden;
 }

 .results-section::before {
     content: '';
     position: absolute;
     top: -80px;
     right: -80px;
     width: 400px;
     height: 400px;
     background: radial-gradient(circle, rgba(58, 191, 191, .12) 0%, transparent 70%);
 }

 .results-section .section-label {
     color: var(--lb-teal);
 }

 .results-section h2 {
     color: var(--white);
 }

 .results-section h2 .accent {
     color: var(--lb-teal);
 }

 .results-section .section-lead {
     color: rgba(255, 255, 255, .65);
 }

 .results-blocks {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 24px;
     margin-bottom: 40px;
 }

 .result-block {
     background: rgba(255, 255, 255, .06);
     border: 1px solid rgba(255, 255, 255, .1);
     border-radius: 16px;
     padding: 28px;
 }

 .result-block h4 {
     font-size: 12px;
     font-weight: 700;
     letter-spacing: .08em;
     text-transform: uppercase;
     color: var(--jb-accent);
     margin-bottom: 20px;
 }

 .stat-row {
     display: flex;
     align-items: center;
     gap: 14px;
     margin-bottom: 16px;
     padding-bottom: 16px;
     border-bottom: 1px solid rgba(255, 255, 255, .07);
 }

 .stat-row:last-child {
     margin-bottom: 0;
     padding-bottom: 0;
     border-bottom: none;
 }

 .stat-number {
     font-family: var(--font-display);
     font-size: 28px;
     font-weight: 800;
     color: var(--lb-teal);
     min-width: 80px;
     line-height: 1;
 }

 .stat-desc {
     font-size: 13px;
     color: rgba(255, 255, 255, .72);
     line-height: 1.4;
 }

 /* Scores bar */
 .score-item {
     margin-bottom: 18px;
 }

 .score-item:last-child {
     margin-bottom: 0;
 }

 .score-header {
     display: flex;
     justify-content: space-between;
     margin-bottom: 6px;
 }

 .score-label {
     font-size: 13px;
     color: rgba(255, 255, 255, .72);
 }

 .score-value {
     font-size: 13px;
     font-weight: 700;
     color: var(--lb-teal);
 }

 .score-bar {
     height: 6px;
     background: rgba(255, 255, 255, .1);
     border-radius: 3px;
     overflow: hidden;
 }

 .score-fill {
     height: 100%;
     background: linear-gradient(90deg, var(--lb-teal), var(--lb-green));
     border-radius: 3px;
     transition: width 1.2s ease;
 }

 /* ── TECH STACK ── */
 .tech-grid {
     display: flex;
     flex-wrap: wrap;
     gap: 14px;
 }

 .tech-pill {
     display: flex;
     align-items: center;
     gap: 8px;
     background: var(--white);
     border: 1px solid var(--gray-200);
     border-radius: 8px;
     padding: 10px 18px;
     font-size: 13px;
     font-weight: 600;
     color: var(--gray-800);
 }

 .tech-pill .tech-icon {
     width: 28px;
     height: 28px;
     border-radius: 6px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 14px;
 }

 /* ── CTA BANNER ── */
 .cta-banner {
     background: linear-gradient(135deg, var(--lb-teal) 0%, var(--jb-blue) 100%);
     border-radius: 20px;
     padding: 56px;
     text-align: center;
     margin: 72px auto;
     max-width: 1100px;
     position: relative;
     overflow: hidden;
 }

 .cta-banner::before {
     content: '';
     position: absolute;
     inset: 0;
     background: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='1' fill='white' opacity='.12'/%3E%3C/svg%3E") repeat;
 }

 .cta-banner h2 {
     color: var(--white);
     font-size: clamp(22px, 3vw, 32px);
     margin-bottom: 12px;
     position: relative;
 }

 .cta-banner p {
     color: rgba(255, 255, 255, .85);
     font-size: 16px;
     margin-bottom: 28px;
     position: relative;
 }

 .cta-btn-primary {
     background: var(--white);
     color: var(--jb-navy);
     padding: 14px 36px;
     border-radius: 8px;
     font-weight: 700;
     font-size: 15px;
     text-decoration: none;
     display: inline-block;
     position: relative;
     transition: transform .15s, box-shadow .15s;
 }

 .cta-btn-primary:hover {
     transform: translateY(-2px);
     box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
 }

 /* ── FOOTER ── */
 footer {
     background: var(--jb-dark);
     padding: 48px 48px 32px;
 }

 .footer-inner {
     max-width: 1100px;
     margin: 0 auto;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 24px;
     padding-bottom: 32px;
     border-bottom: 1px solid rgba(255, 255, 255, .08);
 }

 .footer-logo img {
     height: 30px;
 }

 .footer-links {
     display: flex;
     gap: 24px;
     list-style: none;
 }

 .footer-links a {
     color: rgba(255, 255, 255, .5);
     text-decoration: none;
     font-size: 13px;
     transition: color .2s;
 }

 .footer-links a:hover {
     color: var(--white);
 }

 .footer-copy {
     max-width: 1100px;
     margin: 20px auto 0;
     font-size: 12px;
     color: rgba(255, 255, 255, .35);
     text-align: center;
 }

 /* Divider */
 .divider {
     width: 56px;
     height: 4px;
     background: linear-gradient(90deg, var(--lb-teal), var(--lb-green));
     border-radius: 2px;
     margin-bottom: 32px;
 }

 /* Trusted Companies Showcase */
 .trusted-showcase {
     background: linear-gradient(145deg, #061f51 0%, #08245f 52%, #0b2d77 100%);
     position: relative;
     overflow: hidden;
     padding: 84px 0 72px;
 }

 .trusted-showcase::before {
     content: "";
     position: absolute;
     width: 560px;
     height: 560px;
     left: -180px;
     top: -220px;
     background: radial-gradient(circle, rgba(60, 132, 255, 0.3) 0%, transparent 66%);
     pointer-events: none;
 }

 .trusted-shell {
     max-width: 1280px;
     margin: 0 auto;
     margin-top: 50px;
     padding: 0 40px;
     position: relative;
     z-index: 1;
 }

 .trusted-top {
     display: grid;
     grid-template-columns: 1.25fr 1fr;
     gap: 28px;
     align-items: top;
     margin-bottom: 28px;
     border-top: 1px solid rgba(255, 255, 255, 0.14);
     padding-top: 26px;
 }

 .trusted-top h2 {
     color: var(--white);
     margin: 0;
     font-size: clamp(30px, 4vw, 40px);
     line-height: 1.1;
     max-width: 720px;
 }

 .trusted-top p {
     color: rgba(255, 255, 255, 0.8);
     font-size: 15px;
     max-width: 430px;
     margin: 0;
     justify-self: end;
 }

 .trusted-kpis {
     display: grid;
     grid-template-columns: repeat(4, minmax(150px, 1fr));
     border: 1px solid rgba(255, 255, 255, 0.12);
     border-left: 0;
     border-right: 0;
     margin-bottom: 20px;
 }

 .trusted-kpi {
     padding: 18px 24px;
     border-right: 1px solid rgba(255, 255, 255, 0.12);
 }

 .trusted-kpi:last-child {
     border-right: 0;
 }

 .trusted-kpi .label {
     display: block;
     color: rgba(255, 255, 255, 0.62);
     font-size: 11px;
     letter-spacing: 0.08em;
     text-transform: uppercase;
     margin-bottom: 8px;
     font-weight: 600;
 }

 .trusted-kpi .value {
     color: var(--white);
     font-size: clamp(26px, 2.4vw, 38px);
     line-height: 1;
     font-weight: 800;
     letter-spacing: -0.02em;
 }

 .trusted-cards-wrap {
     margin-top: 18px;
     overflow: hidden;
     padding-bottom: 8px;
     cursor: grab;
 }

 .trusted-cards-wrap:active {
     cursor: grabbing;
 }

 .trusted-cards-track {
     display: flex;
     align-items: stretch;
     gap: 14px;
     width: max-content;
     will-change: transform;
 }

 .trusted-cards {
     display: flex;
     align-items: stretch;
     gap: 14px;
     flex: 0 0 auto;
     padding-bottom: 4px;
 }

 .trusted-column {
     width: 220px;
     display: flex;
     flex-direction: column;
     gap: 14px;
     flex: 0 0 auto;
 }

 .trusted-column .trusted-card {
     width: 100%;
 }

 .trusted-column.odd .trusted-card:first-child {
     height: 176px;
 }

 .trusted-column.odd .trusted-card:last-child {
     height: 314px;
 }

 .trusted-column.even .trusted-card:first-child {
     height: 314px;
 }

 .trusted-column.even .trusted-card:last-child {
     height: 176px;
 }

 .trusted-card {
     /* border: 1px solid rgba(255, 255, 255, 0.12); */
     border-radius: 0;
     overflow: hidden;
     position: relative;
     display: flex;
     align-items: flex-start;
     justify-content: flex-start;
     background-size: cover;
     background-position: center;
     background-repeat: no-repeat;
     isolation: isolate;
     text-decoration: none;
     transition: transform .22s ease, border-color .22s ease;
 }

 .trusted-card:hover,
 .trusted-card:focus-visible {
     transform: translateY(-3px);
     /* border-color: rgba(255, 255, 255, 0.35); */
 }

 .trusted-card::before {
     content: "";
     position: absolute;
     inset: 0;
     /* background: linear-gradient(180deg, rgba(3, 15, 36, 0.32) 0%, rgba(3, 15, 36, 0.74) 100%); */
     z-index: 0;
 }

 .trusted-card::after {
     content: "View Case Study";
     position: absolute;
     inset: 0;
     display: flex;
     align-items: center;
     justify-content: center;
     background: rgba(4, 18, 48, 0.64);
     color: var(--white);
     font-size: 14px;
     font-weight: 700;
     letter-spacing: 0.06em;
     text-transform: uppercase;
     opacity: 0;
     transform: translateY(8px);
     transition: opacity .24s ease, transform .24s ease;
     z-index: 2;
     pointer-events: none;
 }

 .trusted-card:hover::after,
 .trusted-card:focus-visible::after {
     opacity: 1;
     transform: translateY(0);
 }

 .trusted-brand {
     color: var(--white);
     font-size: 1em;
     font-weight: 800;
     line-height: 1;
     letter-spacing: -0.03em;
     padding: 16px;
     text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
     position: relative;
     z-index: 1;
     transition: opacity .24s ease;
 }

 .trusted-card:hover .trusted-brand,
 .trusted-card:focus-visible .trusted-brand {
     opacity: 0.25;
 }

 .trusted-brand.small {
     font-size: 1em;
 }

 .trusted-brand.tiny {
     font-size: 1em;
 }

 /* Responsive */
 @media (max-width: 900px) {

     .hero-inner,
     .challenge-grid {
         grid-template-columns: 1fr;
     }

     .hero-card {
         display: none;
     }

     .overview-inner {
         grid-template-columns: 1fr 1fr;
     }

     .features-grid {
         grid-template-columns: 1fr 1fr;
     }

     .improvements-row {
         grid-template-columns: 1fr 1fr;
     }

     .results-blocks {
         grid-template-columns: 1fr;
     }

     .secNav .nav-links {
         display: none;
     }

     .section {
         padding: 56px 24px;
     }

     .secNav {
         top: 64px;
         padding: 14px 24px;
     }

     .overview-strip {
         padding: 0 24px;
     }

     .cta-banner {
         padding: 40px 24px;
         margin: 48px 24px;
     }

     footer {
         padding: 40px 24px 24px;
     }

     .trusted-shell {
         padding: 0 24px;
     }

     .trusted-top {
         grid-template-columns: 1fr;
         gap: 14px;
     }

     .trusted-top p {
         justify-self: start;
     }

     .trusted-kpis {
         grid-template-columns: 1fr 1fr;
     }

     .trusted-kpi {
         border-right: 1px solid rgba(255, 255, 255, 0.12);
         border-bottom: 1px solid rgba(255, 255, 255, 0.12);
     }

     .trusted-kpi:nth-child(2n) {
         border-right: 0;
     }

     .trusted-kpi:nth-child(n + 3) {
         border-bottom: 0;
     }

     .trusted-cards {
         gap: 12px;
     }

     .trusted-column {
         width: 180px;
         gap: 12px;
     }

     .trusted-column.odd .trusted-card:first-child,
     .trusted-column.even .trusted-card:last-child {
         height: 148px;
     }

     .trusted-column.odd .trusted-card:last-child,
     .trusted-column.even .trusted-card:first-child {
         height: 252px;
     }
 }

 @media (max-width: 600px) {
     .section {
         padding: 48px 5px !important;
     }

     .features-grid {
         grid-template-columns: 1fr;
     }

     .improvements-row {
         grid-template-columns: 1fr;
     }

     .overview-inner {
         grid-template-columns: 1fr 1fr;
     }

     .trusted-showcase {
         padding: 64px 0 56px;
     }

     .trusted-kpis {
         grid-template-columns: 1fr;
     }

     .trusted-kpi,
     .trusted-kpi:nth-child(2n) {
         border-right: 0;
     }

     .trusted-kpi {
         border-bottom: 1px solid rgba(255, 255, 255, 0.12);
     }

     .trusted-kpi:last-child {
         border-bottom: 0;
     }

     .trusted-cards {
         gap: 10px;
     }

     .trusted-column {
         width: 156px;
         gap: 10px;
     }

     .trusted-column.odd .trusted-card:first-child,
     .trusted-column.even .trusted-card:last-child {
         height: 126px;
     }

     .trusted-column.odd .trusted-card:last-child,
     .trusted-column.even .trusted-card:first-child {
         height: 214px;
     }

     .trusted-brand {
         font-size: 22px;
     }

     .trusted-brand.small {
         font-size: 18px;
     }

     .trusted-brand.tiny {
         font-size: 16px;
     }

     .trusted-shell h1 {
         letter-spacing: .5px;
     }

     .divider {
         margin-bottom: 15px !important;
     }

     .section-lead {
         margin-bottom: 0 !important;
     }

     .results-blocks {
         display: grid;
         grid-template-columns: 1fr !important;
         gap: 24px;
         margin-bottom: 40px;
     }
 }

 .trusted-shell h1 {
     color: #fff;
     text-transform: uppercase;
     font-size: 1em;
     letter-spacing: .25em;
     font-weight: bold;
 }

 *,
 *::before,
 *::after {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
 }

 :root {
     /* JanBask brand colors */
     --jb-navy: #0B1E3F;
     --jb-blue: #1A4DA2;
     --jb-accent: #F5A623;
     --jb-dark: #0D1B2A;

     /* Lifebulb client palette (teal-green wellness) */
     --lb-teal: #3ABFBF;
     --lb-green: #4CAF7C;
     --lb-soft: #EAF8F5;

     /* Neutrals */
     --white: #FFFFFF;
     --gray-50: #F8FAFC;
     --gray-100: #F1F5F9;
     --gray-200: #E2E8F0;
     --gray-600: #475569;
     --gray-800: #1E293B;

     --font-display: 'Sora', sans-serif;
     --font-body: 'Inter', sans-serif;
 }

 html {
     scroll-behavior: smooth;
 }

 body {
     font-family: var(--font-body);
     color: var(--gray-800);
     background: var(--white);
     line-height: 1.6;
 }

 /* ── NAV ── */
 .secNav {
     background: var(--jb-navy);
     padding: 16px 48px;
     display: flex;
     align-items: center;
     justify-content: center;
     position: fixed;
     top: 72px;
     left: 0;
     right: 0;
     z-index: 996;
     box-shadow: 0 2px 20px rgba(0, 0, 0, .3);
     opacity: 0;
     visibility: hidden;
     pointer-events: none;
     transform: translateY(-10px);
     transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
 }

 .secNav.is-visible {
     opacity: 1;
     visibility: visible;
     pointer-events: auto;
     transform: translateY(0);
 }

 .secNav .logo img {
     height: 36px;
 }

 .secNav .nav-links {
     display: flex;
     justify-content: center;
     gap: 32px;
     list-style: none;
     width: 100%;
     margin: 0;
 }

 .secNav .nav-links a {
     color: rgba(255, 255, 255, .75);
     text-decoration: none;
     font-size: 14px;
     font-weight: 500;
     transition: color .2s;
 }

 .secNav .nav-links a:hover {
     color: var(--jb-accent);
 }

 /* ── HERO ── */
 .hero {
     background: linear-gradient(135deg, var(--jb-dark) 0%, var(--jb-navy) 55%, #0E3060 100%);
     padding: 80px 48px;
     min-height: 84vh;
     min-height: 84svh;
     min-height: 84dvh;
     display: flex;
     align-items: center;
     position: relative;
     overflow: hidden;
 }

 .hero::before {
     content: '';
     position: absolute;
     inset: 0;
     background: radial-gradient(ellipse at 70% 40%, rgba(58, 191, 191, .12) 0%, transparent 60%);
 }

 .hero-inner {
     max-width: 1100px;
     margin: 0 auto;
     position: relative;
     display: grid;
     grid-template-columns: 1fr 340px;
     gap: 60px;
     align-items: center;
 }

 .hero-eyebrow {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     background: rgba(58, 191, 191, .15);
     border: 1px solid rgba(58, 191, 191, .35);
     color: var(--lb-teal);
     font-size: 12px;
     font-weight: 600;
     letter-spacing: .08em;
     text-transform: uppercase;
     padding: 6px 14px;
     border-radius: 20px;
     margin-bottom: 20px;
 }

 .hero-eyebrow span {
     width: 6px;
     height: 6px;
     background: var(--lb-teal);
     border-radius: 50%;
     display: inline-block;
 }

 .hero h1 {
     font-family: var(--font-display);
     font-size: clamp(28px, 4vw, 48px);
     font-weight: 800;
     color: var(--white);
     line-height: 1.18;
     margin-bottom: 20px;
 }

 .hero h1 em {
     font-style: normal;
     color: var(--lb-teal);
 }

 .hero-desc {
     color: rgba(255, 255, 255, .72);
     font-size: 16px;
     max-width: 560px;
     margin-bottom: 32px;
 }

 .hero-tags {
     display: flex;
     flex-wrap: wrap;
     gap: 8px;
 }

 .hero-tags .tag {
     background: rgba(255, 255, 255, .08);
     border: 1px solid rgba(255, 255, 255, .15);
     color: rgba(255, 255, 255, .8);
     font-size: 12px;
     font-weight: 500;
     padding: 5px 12px;
     border-radius: 4px;
 }

 /* Hero Card */
 .hero-card {
     background: rgba(255, 255, 255, .06);
     border: 1px solid rgba(255, 255, 255, .12);
     border-radius: 16px;
     padding: 32px 28px;
     backdrop-filter: blur(8px);
 }

 .client-logo-wrap {
     background: var(--white);
     border-radius: 10px;
     padding: 16px 24px;
     margin-bottom: 24px;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .client-logo-wrap img {
     height: 40px;
     object-fit: contain;
 }

 .hero-stat-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 14px;
 }

 .hero-stat {
     background: rgba(255, 255, 255, .06);
     border-radius: 10px;
     padding: 14px;
     text-align: center;
 }

 .hero-stat .number {
     font-family: var(--font-display);
     font-size: 24px;
     font-weight: 800;
     color: var(--lb-teal);
     line-height: 1;
 }

 .hero-stat .label {
     font-size: 11px;
     color: rgba(255, 255, 255, .6);
     margin-top: 4px;
 }

 /* ── SECTIONS ── */
 .section {
     padding: 72px 48px;
 }

 .section-inner {
     max-width: 1100px;
     margin: 0 auto;
 }

 .section-alt {
     background: var(--gray-50);
 }

 .section-label {
     font-size: 12px;
     font-weight: 700;
     letter-spacing: .1em;
     text-transform: uppercase;
     color: var(--jb-blue);
     margin-bottom: 10px;
 }

 h2 {
     font-family: var(--font-display);
     font-size: clamp(22px, 3vw, 34px);
     font-weight: 800;
     color: var(--jb-navy);
     line-height: 1.2;
     margin-bottom: 16px;
 }

 h2 .accent {
     /* color: var(--lb-teal); */
     background: -webkit-gradient(linear, left top, right top, from(#ea1616), to(#4b4a5c));
     background: linear-gradient(90deg, #ea1616 0%, #4b4a5c 100%);
     background-clip: text;
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 .section-lead {
     font-size: 16px;
     color: var(--gray-600);
     max-width: 640px;
     margin-bottom: 48px;
 }

 /* ── OVERVIEW STRIP ── */
 .overview-strip {
     background: var(--jb-navy);
     padding: 0 48px;
 }

 .overview-inner {
     max-width: 1100px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     border-left: 1px solid rgba(255, 255, 255, .08);
 }

 .overview-item {
     padding: 28px 24px;
     border-right: 1px solid rgba(255, 255, 255, .08);
 }

 .overview-item .ov-label {
     font-size: 11px;
     font-weight: 600;
     letter-spacing: .08em;
     text-transform: uppercase;
     color: var(--jb-accent);
     margin-bottom: 6px;
 }

 .overview-item .ov-value {
     font-size: 14px;
     font-weight: 500;
     color: var(--white);
 }

 /* ── CHALLENGE ── */
 .challenge-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 40px;
     align-items: start;
 }

 .challenge-text p {
     font-size: 15px;
     color: var(--gray-600);
     margin-bottom: 16px;
 }

 .challenge-list {
     list-style: none;
     display: flex;
     flex-direction: column;
     gap: 12px;
 }

 .challenge-list li {
     display: flex;
     align-items: flex-start;
     gap: 12px;
     font-size: 14px;
     color: var(--gray-600);
     padding: 14px 16px;
     background: var(--white);
     border-radius: 10px;
     border: 1px solid var(--gray-200);
 }

 .challenge-list li .icon {
     width: 28px;
     height: 28px;
     background: linear-gradient(135deg, var(--lb-teal), var(--lb-green));
     border-radius: 6px;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
     font-size: 13px;
 }

 /* ── SOLUTION FEATURES ── */
 .features-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 24px;
 }

 .feature-card {
     background: var(--white);
     border: 1px solid var(--gray-200);
     border-radius: 14px;
     padding: 28px 24px;
     transition: transform .2s, box-shadow .2s;
 }

 .feature-card:hover {
     transform: translateY(-4px);
     box-shadow: 0 12px 32px rgba(0, 0, 0, .09);
 }

 .feature-icon {
     width: 44px;
     height: 44px;
     border-radius: 10px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 20px;
     margin-bottom: 16px;
 }

 .feature-card h3,
 .challenge-narrative h3,
 .challenge-frictions h3 {
     font-family: var(--font-display);
     font-size: 16px;
     font-weight: 700;
     color: var(--jb-navy);
     margin-bottom: 8px;
 }

 .feature-card p {
     font-size: 13.5px;
     color: var(--gray-600);
     line-height: 1.55;
 }

 /* ── KEY IMPROVEMENTS ── */
 .improvements-row {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 16px;
 }

 /* .improvement-pill {
     background: var(--white);
     border: 1px solid var(--gray-200);
     border-radius: 10px;
     padding: 16px;
     display: flex;
     align-items: center;
     gap: 10px;
     font-size: 13px;
     font-weight: 500;
     color: var(--gray-800);
 } */

 .improvement-pill .dot {
     width: 8px;
     height: 8px;
     border-radius: 50%;
     background: var(--lb-teal);
     flex-shrink: 0;
 }

 /* ── RESULTS ── */
 .results-section {
     background: linear-gradient(135deg, var(--jb-navy) 0%, #0E2A56 100%);
     position: relative;
     overflow: hidden;
 }

 .results-section::before {
     content: '';
     position: absolute;
     top: -80px;
     right: -80px;
     width: 400px;
     height: 400px;
     background: radial-gradient(circle, rgba(58, 191, 191, .12) 0%, transparent 70%);
 }

 .results-section .section-label {
     color: var(--lb-teal);
 }

 .results-section h2 {
     color: var(--white);
 }

 .results-section h2 .accent {
     color: var(--lb-teal);
 }

 .results-section .section-lead {
     color: rgba(255, 255, 255, .65);
 }

 .results-blocks {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 24px;
     margin-bottom: 40px;
 }

 .result-block {
     background: rgba(255, 255, 255, .06);
     border: 1px solid rgba(255, 255, 255, .1);
     border-radius: 16px;
     padding: 28px;
 }

 .result-block h4 {
     font-size: 12px;
     font-weight: 700;
     letter-spacing: .08em;
     text-transform: uppercase;
     color: var(--jb-accent);
     margin-bottom: 20px;
 }

 .stat-row {
     display: flex;
     align-items: center;
     gap: 14px;
     margin-bottom: 16px;
     padding-bottom: 16px;
     border-bottom: 1px solid rgba(255, 255, 255, .07);
 }

 .stat-row:last-child {
     margin-bottom: 0;
     padding-bottom: 0;
     border-bottom: none;
 }

 .stat-number {
     font-family: var(--font-display);
     font-size: 28px;
     font-weight: 800;
     color: var(--lb-teal);
     min-width: 80px;
     line-height: 1;
 }

 .stat-desc {
     font-size: 13px;
     color: rgba(255, 255, 255, .72);
     line-height: 1.4;
 }

 /* Scores bar */
 .score-item {
     margin-bottom: 18px;
 }

 .score-item:last-child {
     margin-bottom: 0;
 }

 .score-header {
     display: flex;
     justify-content: space-between;
     margin-bottom: 6px;
 }

 .score-label {
     font-size: 13px;
     color: rgba(255, 255, 255, .72);
 }

 .score-value {
     font-size: 13px;
     font-weight: 700;
     color: var(--lb-teal);
 }

 .score-bar {
     height: 6px;
     background: rgba(255, 255, 255, .1);
     border-radius: 3px;
     overflow: hidden;
 }

 .score-fill {
     height: 100%;
     background: linear-gradient(90deg, var(--lb-teal), var(--lb-green));
     border-radius: 3px;
     transition: width 1.2s ease;
 }

 /* ── TECH STACK ── */
 .tech-grid {
     display: flex;
     flex-wrap: wrap;
     gap: 14px;
 }

 .tech-pill {
     display: flex;
     align-items: center;
     gap: 8px;
     background: var(--white);
     border: 1px solid var(--gray-200);
     border-radius: 8px;
     padding: 10px 18px;
     font-size: 13px;
     font-weight: 600;
     color: var(--gray-800);
 }

 .tech-pill .tech-icon {
     width: 28px;
     height: 28px;
     border-radius: 6px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 14px;
 }

 /* ── CTA BANNER ── */
 .cta-banner {
     background: linear-gradient(135deg, var(--lb-teal) 0%, var(--jb-blue) 100%);
     border-radius: 20px;
     padding: 56px;
     text-align: center;
     margin: 72px auto;
     max-width: 1100px;
     position: relative;
     overflow: hidden;
 }

 .cta-banner::before {
     content: '';
     position: absolute;
     inset: 0;
     background: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='1' fill='white' opacity='.12'/%3E%3C/svg%3E") repeat;
 }

 .cta-banner h2 {
     color: var(--white);
     font-size: clamp(22px, 3vw, 32px);
     margin-bottom: 12px;
     position: relative;
 }

 .cta-banner p {
     color: rgba(255, 255, 255, .85);
     font-size: 16px;
     margin-bottom: 28px;
     position: relative;
 }

 .cta-btn-primary {
     background: var(--white);
     color: var(--jb-navy);
     padding: 14px 36px;
     border-radius: 8px;
     font-weight: 700;
     font-size: 15px;
     text-decoration: none;
     display: inline-block;
     position: relative;
     transition: transform .15s, box-shadow .15s;
 }

 .cta-btn-primary:hover {
     transform: translateY(-2px);
     box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
 }

 /* ── FOOTER ── */
 footer {
     background: var(--jb-dark);
     padding: 48px 48px 32px;
 }

 .footer-inner {
     max-width: 1100px;
     margin: 0 auto;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 24px;
     padding-bottom: 32px;
     border-bottom: 1px solid rgba(255, 255, 255, .08);
 }

 .footer-logo img {
     height: 30px;
 }

 .footer-links {
     display: flex;
     gap: 24px;
     list-style: none;
 }

 .footer-links a {
     color: rgba(255, 255, 255, .5);
     text-decoration: none;
     font-size: 13px;
     transition: color .2s;
 }

 .footer-links a:hover {
     color: var(--white);
 }

 .footer-copy {
     max-width: 1100px;
     margin: 20px auto 0;
     font-size: 12px;
     color: rgba(255, 255, 255, .35);
     text-align: center;
 }

 /* Divider */
 .divider {
     width: 56px;
     height: 4px;
     background: linear-gradient(90deg, var(--lb-teal), var(--lb-green));
     border-radius: 2px;
     margin-bottom: 32px;
 }