  /* ============================================
   RESOLVE BEYOND — DESIGN SYSTEM
   Dark navy + lime/mint accent + cream sections
   ============================================ */
   @import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&display=swap');
   
   :root {
    --navy: #0a0a23;
    --navy-deep: #06061a;
    --navy-panel: #11112e;
    --lime: #00FB9A;
    --limenew: #26b37a;
    --lime-dim: #ECEAFC;
    --cream: #F6F5F1;
    --cream-card: #ffffff;
    --ink: #14142b;
    --ink-soft: #A39FD0;
    --line: rgba(255,255,255,0.08);
    --line-light: #e8e6e0;
    --linelt: #e8e6e0;
    --font-Hanken: "Hanken Grotesk", sans-serif;
  }
  
  * { margin: 0; padding: 0; box-sizing: border-box; }
  
  html { scroll-behavior: smooth; font-weight: 400;}
    
  body {
    font-family: var(--font-Hanken);
    color: var(--ink);
    background: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow: unset;
  }
  
  a { color: inherit; text-decoration: none; }
  ul { list-style: none; }
  img { max-width: 100%; display: block; }
  
  .wrap {
    max-width: 1270px;
    margin: 0 auto;
    padding: 0 30px;
  }
  /* ============ TYPOGRAPHY ============ */
  h1, h2, h3, h4 {
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
  }
  
  .eyebrow {
    margin-bottom: 16px;
    display: block;
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  
  .eyebrow.on-dark { color: var(--lime); }
  .eyebrow.on-light { color: #14122B; }
  
  .section-head {
    max-width: 780px;
    margin-bottom: 56px;
  }
  
  .section-head h2 {
    font-weight: 800;
    font-size: clamp(35px, 4vw, 58px);
    line-height: clamp(42px, 4vw, 60px);
    letter-spacing: -1.45px;
    color: #14122B;
    margin: 30px 0 20px;
  }
  
  .page-template-latest-about-page .section-head h2 {
    font-size: clamp(30px, 4vw, 42px);
    line-height: clamp(40px, 4vw, 50px);
  }
  
  .section-head p {
    font-weight: 400;
    font-size: clamp(15px, 4vw, 20px);
    line-height: clamp(25px, 4vw, 30px);
    color: #45415F;
  }
  
  .on-dark .section-head p { color: rgba(255,255,255,0.8); }
  
  /* ============ TOP NAVIGATION ============ */
  
  .topnav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #0C0932;
    background: linear-gradient(90deg, rgba(12, 9, 50, 1) 15%, rgba(15, 11, 52, 1) 62%);
    border-bottom: 1px solid var(--line);
  }
  
  .topnav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 17px;
    letter-spacing: -0.01em;
  }
  
  .logo-mark {
    width: 32px; height: 32px;
    border: 1.5px solid var(--lime);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 15px;
    color: var(--lime);
    font-weight: 800;
  }
  .topnav-inner a.logo {
    color: #fff;
  }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    padding: 0;
  }
  
  .nav-links > li { position: relative; }
  
  .nav-links a.navlink {
    color: #A39FD0;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 0;
    transition: color 0.15s;
  }
  .nav-links a.navlink:hover { color: #fff; }
  
  .caret { font-size: 12px; opacity: 0.6; transition: transform 0.15s; }
  .has-dropdown:hover .caret { transform: rotate(180deg); }
  
  .dropdown {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--navy-panel);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 10px;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(8px);
    transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
    box-shadow: 0 24px 48px rgba(0,0,0,0.4);
  }
  
  .has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
  
  .dropdown a {
    display: block;
    padding: 11px 14px;
    border-radius: 8px;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    transition: background 0.12s, color 0.12s;
  }
  .dropdown a:hover { background: rgba(61,255,176,0.08); color: var(--lime); }
  
  .dropdown .dd-divider {
    border-top: 1px solid var(--line);
    margin: 8px 6px;
  }
  
  .dropdown .dd-foot {
    font-size: 12.5px;
    color: rgba(255,255,255,0.8);
    font-style: normal;
  }
  .dropdown .dd-foot:hover { color: var(--lime); background: transparent; }
  
  .btn-primary {
    background: var(--lime);
    padding: 12px 32px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease-in-out 0s;
    white-space: nowrap;
    font-weight: 700;
    font-size: 17px;
    line-height: 26px;
    color: #04241A;
  }
  .btn-primary:visited { color: #04241A; }
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(61,255,176,0.35);
  }
  .btn-primary span {
    transition: all 0.3s ease-in-out 0s;
  }
  .btn-primary:hover span {
    transform: translateX(5px);
  }
  .btn-secondary {
    background: transparent;
    padding: 12px 32px;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-weight: 700;
    font-size: 17px;
    line-height: 26px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease-in-out 0s;
  }
  .btn-secondary:hover {
    border-color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.04);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,255,255,0.04);
  }
  .btn-secondary:visited {
    color: #fff;
  }
  .btn-secondary span {
    transition: all 0.3s ease-in-out 0s;
  }
  .btn-secondary:hover span {
    transform: translateX(5px);
  }
  .btn-navy { 
    background: #04241A;
    border: 1px solid #04241A;
    padding: 12px 32px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease-in-out 0s;
    white-space: nowrap;
    font-weight: 700;
    font-size: 17px;
    line-height: 26px;
    color: #3dffb0 !important;
  }
  .btn-navy:hover {
    background: #3dffb0;
    border: 1px solid #04241A;
    color: #04241A !important;
  }
  .btn-navy:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(61,255,176,0.35);
  }
  .btn-navy span {
    transition: all 0.3s ease-in-out 0s;
  }
  .btn-navy:hover span {
    transform: translateX(5px);
  }
  /* ============ MOBILE NAV ============ */
  .nav-toggle { display: none; }

  /* ============ DARK SECTION (HERO) ============ */
  .section-dark {
    /* background: var(--navy); */
    color: #fff;
    position: relative;
    overflow: hidden;
    background: radial-gradient(46.87% 62.05% at 78% -5%, rgba(103, 87, 230, 0.34) 0%, rgba(103, 87, 230, 0) 60%), radial-gradient(36.46% 51.71% at 5% 110%, rgba(0, 251, 154, 0.1) 0%, rgba(0, 251, 154, 0) 55%), linear-gradient(180deg, #0A0572 0%, #060238 100%);
  }
  
  .section-dark::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(61,255,176,0.08) 0%, transparent 70%);
    pointer-events: none;
  }
  
  /* ============ HERO ============ */
  
  .section-space {
    padding: 100px 0;
  }
  .section-space-top {
    padding: 100px 0 0;
  }
  .section-space-bottom {
    padding: 0 0 100px;
  }
  
  .hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
  }
  

  .hero h1 {
    font-size: clamp(40px, 4vw, 72px);
    margin-bottom: 25px;
    letter-spacing: -2.94px;
    color: #ECEAFC;
  }
  
  .hero h1 .accent { color: var(--lime); }
  
  .hero-sub {
    font-size: 18px;
    line-height: 25px;
    color: #A39FD0;
    margin-bottom: 36px;
    font-weight: 400;
    max-width: 510px;
  }
  
  .hero-ctas {
    display: flex;
    gap: 14px;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }
  
  .trust-strip {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    color: rgba(255,255,255,0.8);
  }
  .trust-strip strong { color: rgba(255,255,255,0.8); font-weight: 600; }
  
  /* ============ STATUS DASHBOARD PANEL ============ */
  
  .status-panel {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(180, 174, 255, 0.14);
    box-shadow: 0px 40px 80px -40px rgba(0, 0, 0, 0.7), inset 0px 1px 0px 1px rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(3px);
    border-radius: 26px;
    padding: 24px;
    font-size: 13px;
  }
  
  .status-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 16px;
    color: var(--ink-soft);
    font-size: 14px;
    font-weight: 400;
  }
  
  .status-badge {
    background: rgba(0, 251, 154, 0.14);
    font-weight: 700;
    font-size: 12px;
    line-height: 17px;
    letter-spacing: 0.69px;
    color: #00FB9A;
    padding: 5px 12px;
    border-radius: 999px;
  }
  
  .status-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dashed var(--line);
  }
  .status-row:last-of-type { border-bottom: none; }
  
  .status-row .label {
    display: flex; align-items: center; gap: 10px;
    font-weight: 600;
    font-size: 15px;
    line-height: 22px;
    color: #ECEAFC;
  }
  
  .status-icon {
    width: 28px; height: 28px;
    border-radius: 7px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 600;
    font-size: 15px;
    line-height: 22px;
    color: #00FB9A;
    background: rgba(61,255,176,0.1);
  }
  
  .status-row .value { color: rgba(255,255,255,0.8); }
  .status-row .value .ok { 
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 0.575px;
    color: #00FB9A; }
  .status-row .value .ok span {
    font-size: 12px;
    color: #A39FD0;
}
  .status-log {
    margin-top: 14px;
    background: rgba(0,0,0,0.25);
    border-radius: 10px;
    padding: 14px 16px;
    font-weight: 400;
    font-size: 14px;
    line-height: 25px;
    color: #A39FD0;
  }
  .status-log .t { color: #897BFF; }
  .status-log .ok { color: var(--lime); }
  .status-log .v { color: #8ab4ff; }
  .status-log div {
    display: flex;
    gap: 10px;
  }

  .status-log div span.ok, 
  .status-log div span.v {
      display: flex;
  }
  .status-log div span.ok:before,
  .status-log div span.v::before {
      content: "-";
      color: #A39FD0;
      font-size: 30px;
      padding: 0 3px 0 0;
      font-weight: 200;
  }
  /* ============ STAT BAR ============ */
  
  .statbar {
    background: #060238;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  
  .statbar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  
  .statbar-item {
    padding: 32px;
    border-right: 1px solid var(--line);
  }
  .statbar-item:last-child { border-right: none; }
  .statbar-item .stat-label-top {
    margin-bottom: 10px;
    font-style: normal;
    font-weight: 500;
    display: flex;
    align-items: center;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    font-size: 15px;
  }
  
  .statbar-item .stat-num {
    font-weight: 800;
    font-size: clamp(30px, 4vw, 38px);
    line-height: clamp(38px, 4vw, 57px);
    display: flex;
    align-items: center;
    letter-spacing: -1.14px;
    color: #00FB9A;
    margin-bottom: 6px;
  }
  
  .statbar-item .stat-label-bottom {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: rgba(255,255,255,0.8);
  }
  
  /* ============ LIGHT SECTION ============ */
  
  .section-light {
    background: var(--cream);
  }

  .section-white {
    background: #fff;
}
  /* ============ SUPPORT MODEL CARDS ============ */
  
  .cards-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
 
  .model-card {
    background: #FFFFFF;
    border: 1px solid rgba(20, 18, 43, 0.1);
    border-radius: 26px;
    
    gap: 10px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
    justify-content: space-between;
  }
  
  .model-card:hover {
    transform: translateY(-4px);
    /* box-shadow: 0 20px 48px rgba(20,20,43,0.08); */
    box-shadow: 0px 0px 46px -3px rgba(52, 215, 95, 0.4);
  }
  
  .model-card.featured {
    background: linear-gradient(160deg, #eafff6 0%, #ffffff 60%);
    border-color: #c8f5e3;
  }
  
  .model-badge {
    position: absolute;
    top: -12px; right: 24px;
    background: #BEFEE6;
    color: #2B9259;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 999px;
    font-weight: 700;
  }
  
  .model-card h3 {
    font-weight: 800;
    font-size: clamp(22px, 4vw, 27px);
    line-height: clamp(25px, 4vw, 28px);
    letter-spacing: -0.675px;
    color: #14122B;
  }
  
  .model-card > p {
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;

    color: #45415F;
  }
  .modal-card-header {padding: 24px 28px 0;}
  .model-meta {
    border-top: 1px solid var(--line-light);
    padding: 16px 28px;
  }
  
  .model-meta .row {
    
    padding: 15px 0 12px;
    border-bottom: 1px dashed var(--line-light);
  }
  .model-meta .row:last-of-type { border-bottom: none; }
  
  .model-meta .meta-label {
    margin-bottom: 4px;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 1.05px;
    text-transform: uppercase;

    color: #A39FD0;
  }
  
  .model-meta .meta-value {
    font-weight: 700;
    font-size: 15px;
    line-height: 22px;

    color: #14122B;
  }
  .model-meta .meta-value.lime { color: #009259; }
  
  .model-card .cta-line {
    font-size: 14px;
    font-weight: 600;
    gap: 6px;
    padding: 16px 28px 30px;
    display: flex;
  }
  .cta-line > span {color: #14122B;}
  .model-card .cta-line span.muted {
    font-weight: 400;
    color: #45415F;
  }
  .model-card a.card-link {
    position: absolute; inset: 0; border-radius: 18px;
  }
  
  /* ============ PLATFORM COVERAGE ============ */
  
  .platform-rows {
    border-top: 1px solid var(--line);
  }
  
  .platform-row {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
    align-items: center;
  }
  
  .platform-row .ph-name {
    font-weight: 700;
    font-size: 21px;
    line-height: 32px;
    letter-spacing: -0.42px;
    color: #ECEAFC;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
  }
  
  .ph-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 17px;
    color: var(--lime);
  }
  
  .pill-row { display: flex; gap: 10px; flex-wrap: wrap; }
  
  .pill {
    transition: border-color 0.15s, color 0.15s;
    font-weight: 400;
    font-size: 13px;
    color: #A39FD0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(180, 174, 255, 0.14);
    border-radius: 999px;
  }
  
  .pill:hover { border-color: var(--lime); color: var(--lime); }
  
  .pill.priority {
    border-color: var(--lime);
    color: var(--lime);
    font-weight: 700;
  }
  
  /* ============ TIMELINE (How it works) ============ */
  .timeline-rightside {width: 52%;}
  .timeline {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 0;
    position: relative;
    z-index: 1;
  }
  .timeline:before {
    content: "";
    position: absolute;
    border: beige;
    left: 40px;
    top: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, #00FB9A 0%, #6757E6 60%, rgba(103, 87, 230, 0) 100%);
    z-index: -1;
  }
  .tl-step {
    display: contents;
  }
  
  .tl-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .tl-num {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: #0A0572;
    border: 1px solid var(--line);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    color: #3DFFB3;
    font-size: 15px;
    flex-shrink: 0;
  }
  .tl-content {
    padding-bottom: 56px;
    padding-left: 30px;
  }
  .tl-step:last-child .tl-content { padding-bottom: 0; }
  .tl-step:last-child .tl-line { display: none; }
  
  .tl-head {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 12px;
  }
  
  .tl-head h3 {
    font-weight: 700;
    font-size: clamp(18px, 4vw, 21px);
    line-height: clamp(25px, 4vw, 32px);
    align-items: center;
    letter-spacing: -0.42px;
    color: #ECEAFC; 
  }
  
  .tl-outcome {
    
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 6px 12px;
    background: rgba(0, 251, 154, 0.14);
    border-radius: 999px;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.55px;
    color: #00FB9A;
  }
  
  .tl-content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    color: #A39FD0;
  }
  
  .tl-loop-note {
    margin-top: 32px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(180, 174, 255, 0.14);
    border-radius: 14px;
    font-weight: 400;
    color: #A39FD0;
  }
  
  .tl-loop-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(61, 255, 176, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lime);
    font-size: 15px;
    flex-shrink: 0;
  }
  
  /* ============ COMPARISON TABLE ============ */
  
  .compare-table {
    border: 1px solid rgba(180, 174, 255, 0.14);
    border-radius: 16px;
    overflow: hidden;
  }
  
  .ct-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid rgba(180, 174, 255, 0.14);
  }
  .ct-row:last-child { border-bottom: none; }
  
  .ct-row.ct-head {
    
    font-size: 12px;
    letter-spacing: 0.1em;
  }
  .ct-row > div:first-child { background-color: transparent;}
  .ct-row > div {
    padding: 20px 24px;
    font-weight: 700;
    font-size: 17px;
    line-height: 26px;
    letter-spacing: -0.255px;
    color: #ECEAFC;
    background: rgba(255,255,255,0.02);
  }
  .ct-row > div.col-adhoc-heading {
    color: #A39FD0;
  }
  .ct-row .ct-label {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.18);
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.72px;
    text-transform: uppercase;
    color: #A39FD0;
  }
  
  .ct-row .ct-bad { 
    display: flex;
    flex-direction: row;
    align-items: center;
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    color: #A39FD0;
   }
  
  .ct-row .ct-good {
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: flex-start;
    padding: 20px 26px;
    gap: 22px;
    background: rgba(0, 251, 154, 0.14);
    font-size: 16px;
    line-height: 23px;
    color: #ECEAFC;
  }
  
  .ct-row.ct-head .ct-good {
    display: flex; align-items: center; gap: 10px;
    font-weight: 700; color: #fff;
  }
  
  .owned-badge {
    padding: 4px 9px;
    background: #060238;
    border-radius: 999px;
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    display: flex;
    align-items: center;
    letter-spacing: 0.63px;
    text-transform: uppercase;
    color: #00FB9A;
  }
  
  .check { color: var(--lime); flex-shrink: 0; }

  /* ===== Case Studies Section ===== */
  .cs-section__desc {
    font-size: 17px;
    color: var(--ink-soft);
    max-width: 560px;
    line-height: 1.7;
    margin-top: 12px;
  }

  .cs-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 48px;
  }

  /* Row */
  .cs-row {
    display: grid;
    grid-template-columns: 250px 1fr 300px;
    overflow: hidden;
    position: relative;
    background: #FFFFFF;
    border: 1px solid rgba(20, 18, 43, 0.1);
    border-radius: 24px;
  }

  /* Col 1 — Meta */
  .cs-row__meta {
    padding: 30px 28px;
    border-right: 1px solid rgba(20, 18, 43, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 6px;
  }

  .cs-tag {
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.88px;
    text-transform: uppercase;
    color: #009259;
    margin-bottom: 10px;
  }

  .cs-case-num {
    margin-top: 2px;
    font-weight: 700;
    font-size: 12px;
    line-height: 18px;
    color: rgba(20, 18, 43, 0.5);
  }

  .cs-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--ink, #0f172a);
    line-height: 1.35;
    margin: 8px 0 0;
  }

  .cs-read-more {
    font-size: 13px;
    font-weight: 600;
    color: var(--lime, #00c97a);
    text-decoration: none;
    margin-top: auto;
    padding-top: 16px;
  }

  .cs-read-more:hover {
    text-decoration: underline;
  }

  /* Col 2 — Body */
  .cs-row__body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    border-right: 1px solid var(--line, #e5e7eb);
  }

  .cs-block__label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 8px;
  }

  .cs-block__label--challenge {
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.88px;
    text-transform: uppercase;
    color: #C200B8; 
    }
  .cs-block__label--support   { 
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.88px;
    text-transform: uppercase;
    color: #C200B8; 
    color: #4838CB;
  }

/* .cs-dot {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  flex-shrink: 0;
} */

/* .cs-dot--challenge { background: #c0357a; }
.cs-dot--support   { background: #3b5bdb; } */

  .cs-block {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    padding-bottom: 15px;
  } 
  .cs-block + .cs-block {
    padding-bottom: 10px;
  }
  .cs-block:before {
    content: "";
    background: linear-gradient(180deg, #C200B8 0%, #4838CB 100%);
    opacity: 0.3;
    border-radius: 2px;
    height: 100%;
    width: 1px;
    display: block;
    position: absolute;
    top: 0;
    left: 7px;
  }
  .cs-block__label--challenge,
  .cs-block__label--support {
    padding-left: 20px;
  }

  .cs-dot.cs-dot--challenge,
  .cs-dot.cs-dot--support {
    width: 15px;
    height: 15px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5.5px;
  }
  .cs-dot.cs-dot--challenge {
    background: rgba(255, 255, 255, 0.002);
    box-shadow: 0px 0px 0px 3px rgba(194, 0, 184, 0.14);
  }
  .cs-dot.cs-dot--support {
    background: rgba(255, 255, 255, 0.002);
    box-shadow: 0px 0px 0px 3px rgba(72, 56, 203, 0.14);
  }
  .cs-dot.cs-dot--challenge:before,
  .cs-dot.cs-dot--support:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 5.5px;
  }
  .cs-dot.cs-dot--challenge:before  {
    background: #C200B8;
  }
  .cs-dot.cs-dot--support:before {
    background: #4838CB;
  }
  .cs-block__label-wrap {
    display: flex;
    flex-wrap: wrap;
    width: 190px;
    position: relative;
      top: 3px;
  }

  .cs-block__label--challenge,
  .cs-block__label--support {
    padding-left: 20px;
  }

  p.cs-block__text {
    width: calc(100% - 190px);
  }
  .cs-block p {
    margin: 0;
    font-weight: 400;
    font-size: 15.5px;
    line-height: 23px;
    color: #14122B;
  }
  /* Col 3 — Outcome */
  .cs-row__outcome {
    background: var(--navy, #0f172a);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    border-radius: 0 14px 14px 0;
  }
  .oc-badge {
    padding: 6px 12px;
    background: rgba(0, 251, 154, 0.14);
    border-radius: 999px;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    display: inline-flex;
    align-items: center;
    letter-spacing: 0.88px;
    text-transform: uppercase;
    color: #00FB9A;
    align-self: flex-start;
  }
  .oc-label {
    display: inline-block;
    background: rgba(0, 201, 122, 0.15);
    color: var(--lime, #00c97a);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 999px;
    width: fit-content;
  }

  .oc-value {
    font-style: normal;
    font-weight: 800;
    font-size: 32px;
    line-height: 33px;
    letter-spacing: -0.96px;
    color: #ECEAFC;
  }

  .oc-sub {
    font-weight: 400;
    font-size: 13px;
    line-height: 18px;
    color: #A39FD0;
  }

  /* View all */
  .cs-view-all {
    text-align: center;
    margin-top: 48px;
  }
  /* ============ FAQ ============ */
  .faq-section .wrap {
    max-width: 860px;
  }
  .faq-list { border-top: 1px solid var(--line-light); }
  
  .faq-item {
    border-bottom: 1px solid var(--line-light);
  }
  
  .faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    cursor: pointer;
    gap: 20px;
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: -0.345px;
    color: #14122B;
  }
  
  .faq-toggle {
    width: 34px;
    min-width: 34px;
    height: 34px;
    border: 1px solid rgba(20, 18, 43, 0.16);
    border-radius: 50%;
    transition: transform 0.2s, background 0.2s;
    font-weight: 700;
    font-size: 23px;
    line-height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    letter-spacing: -0.345px;
    color: #14122B;
  }
  .faq-toggle span.icon {
    position: relative;
    top: -2px;
  }
    .faq-item.open .faq-toggle {
      transform: rotate(45deg);
      background: var(--ink);
      color: var(--lime);
      border-color: var(--ink);
    }
  
    .faq-section .wrap {
      max-width: 860px;
    }
    .faq-list { border-top: 1px solid var(--line-light); }
    
    .faq-item {
      border-bottom: 1px solid var(--line-light);
    }
    
    .faq-q {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 0;
      cursor: pointer;
      gap: 20px;
      font-weight: 700;
      font-size: 20px;
      line-height: 30px;
      letter-spacing: -0.345px;
      color: #14122B;
    }
    
    .faq-toggle {
      width: 34px;
      min-width: 34px;
      height: 34px;
      border: 1px solid rgba(20, 18, 43, 0.16);
      border-radius: 50%;
      transition: transform 0.2s, background 0.2s;
      font-weight: 700;
      font-size: 23px;
      line-height: 34px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      letter-spacing: -0.345px;
      color: #14122B;
    }
    .faq-toggle span.icon {
      position: relative;
      top: -2px;
    }
    .faq-item.open .faq-toggle {
      transform: rotate(45deg);
      background: var(--ink);
      color: var(--lime);
      border-color: var(--ink);
    }
    
    /* Animated answer panel */
    .faq-a {
      display: grid;
      grid-template-rows: 0fr;
      transition: grid-template-rows 0.35s ease;
    }
    
    .faq-a-inner {
      overflow: hidden;
    }
    
    .faq-item.open .faq-a {
      grid-template-rows: 1fr;
    }
    
    .faq-a p {
      padding-bottom: 24px;
      color: #14142b;
      font-size: 16px;
      max-width: 90%;
      opacity: 0;
      transform: translateY(-6px);
      transition: opacity 0.25s ease 0.05s, transform 0.25s ease 0.05s;
    }
    
    .faq-item.open .faq-a p {
      opacity: 1;
      transform: translateY(0);
    }
  
  /* ============ CTA BAND ============ */
  
  .cta-band {
    background: radial-gradient(36.46% 52.06% at 80% 0%, rgba(103, 87, 230, 0.38) 0%, rgba(103, 87, 230, 0) 60%), #060238;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .cta-band .wrap {
    max-width: 960px;
  }
  .cta-band::before {
    content: '';
    position: absolute;
    bottom: -300px; left: 50%;
    transform: translateX(-50%);
    width: 800px; height: 400px;
    background: radial-gradient(ellipse, rgba(61,255,176,0.12) 0%, transparent 70%);
  }
  
  .cta-band .eyebrow {
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ECEAFC;
  }
  .cta-band h2 {
    margin: 0;
    position: relative;
    font-weight: 800;
    font-size: clamp(40px, 4vw, 72px);
    line-height: clamp(46px, 4vw, 72px);
    letter-spacing: -1.16px;
    color: #ECEAFC;
  }
  .cta-band h2 span {
    color: #3DFFB3;
  }
  .cta-band p {
    /* max-width: 540px; */
    margin: 40px auto;
    position: relative;
    font-style: normal;
    font-weight: 400;
    font-size: clamp(16px, 4vw, 21px);
    line-height: clamp(22px, 4vw, 32px);
    color: #A39FD0;
  }
  .cta-band p.eyebrow {
    margin: 0 auto 30px;
  }
    .cta-band .btn-primary {
      position: relative;
      font-size: 15px;
      padding: 14px 32px;
    }
  
  /* ============ FOOTER ============ */
  
  footer {
    background: var(--navy-deep);
    color: rgba(255,255,255,0.8);
    padding: 64px 0 32px;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
  }

  .footer-grid h4 {
    margin-bottom: 18px;
    
    font-weight: 700;
    font-size: 12px;
    line-height: 17px;
    letter-spacing: 1.15px;
    text-transform: uppercase;
    color: #A39FD0;
  }
  
  .footer-grid li { margin-bottom: 12px; font-size: 14.5px; }
  .footer-grid li a {
    margin-bottom: 12px;
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    color: #A39FD0; 
  }
  .footer-grid a:hover { color: var(--lime); }
  
  .footer-brand .logo { color: #fff; margin-bottom: 14px; }
  .footer-brand p {
    font-weight: 400;
    font-size: 14.5px;
    line-height: 22px;
    color: #A39FD0;
  }
  .footer-bottom {
    border-top: 1px solid var(--line);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: rgba(255,255,255,0.8);
  }
  .footer-bottom a:hover { color: var(--lime); }
  
  /* ============ SHARED UTILITY ============ */
  
  .two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
  
  .checklist li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 14px;
    font-size: 16px;
  }
  .checklist.on-light li { color: var(--ink-soft); }
  .checklist.on-dark li { color: rgba(255,255,255,0.8); }
  
  .checklist li::before {
    content: '';
    position: absolute;
    left: 0; top: 7px;
    width: 8px; height: 8px;
    background: var(--lime);
    transform: rotate(45deg);
  }
  
  .callout {
    background: var(--cream-card);
    border-left: 4px solid var(--ink);
    border-radius: 0 14px 14px 0;
    padding: 28px 32px;
  }
  .callout h4 { font-size: 17px; margin-bottom: 10px; }
  .callout p { color: var(--ink-soft); font-size: 15px; margin-bottom: 8px; }
  .callout p:last-child { margin-bottom: 0; }
  
  .callout-dark {
    background: var(--navy-panel);
    border: 1px solid var(--line);
    border-left: 4px solid var(--lime);
    border-radius: 0 14px 14px 0;
    padding: 28px 32px;
  }
  .callout-dark h4 { font-size: 17px; margin-bottom: 10px; color: var(--lime); }
  .callout-dark p { color: rgba(255,255,255,0.8); font-size: 15px; margin-bottom: 8px; }
  .callout-dark p:last-child { margin-bottom: 0; }
  
  .pricing-band {
    background: var(--navy);
    color: #fff;
    border-radius: 20px;
    padding: 48px;
    text-align: center;
  }
  .pricing-band .price-line {
    
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    margin-bottom: 12px;
  }
  .pricing-band .price-line .lime { color: var(--lime); }
  .pricing-band p { color: rgba(255,255,255,0.8); font-size: 16px; max-width: 520px; margin: 0 auto; }
  
  .breadcrumb {
    
    font-size: 12.5px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 28px;
  }
  .breadcrumb a {
    color: rgba(255,255,255,0.8);
}
  .breadcrumb a:hover { color: var(--lime); }
  .breadcrumb.on-light { color: var(--ink-soft); }
  .breadcrumb.on-light a:hover { color: var(--ink); text-decoration: underline; }
  
  .pagetag-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(61,255,176,0.1);
    border: 1px solid rgba(61,255,176,0.25);
    color: var(--lime);
    
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 999px;
    margin-bottom: 24px;
    font-weight: 700;
  }
  
  /* response time evidence */
  .evidence-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  
  .evidence-card {
    background: var(--navy-panel);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 22px;
  }
  .evidence-card .ev-time {
    
    font-size: 26px;
    font-weight: 800;
    color: var(--lime);
    margin-bottom: 8px;
  }
  .evidence-card .ev-client {
    font-size: 13.5px;
    color: rgba(255,255,255,0.8);
  }
  
  /* nav active state */
  .nav-links a.active { color: var(--lime); }
  
  /* ============ ADDITIONAL COMPONENTS ============ */
  
  /* Generic page hero (lighter, for sub-pages) */
  .page-hero {
    padding: 56px 0 70px;
  }
  .page-hero h1 { font-size: clamp(36px, 5vw, 56px); max-width: 820px; }
  .page-hero .hero-sub { max-width: 640px; }
  
  /* Stat band (light reuse) */
  .stat-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 32px;
  }
  
  .stat-mini {
    background: var(--navy-panel);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 22px;
  }
  .stat-mini .sm-num {  font-size: 30px; font-weight: 800; color: var(--lime); margin-bottom: 6px; }
  .stat-mini .sm-lab { font-size: 13.5px; color: rgba(255,255,255,0.8); }
  
  /* Index grid for case studies */
  .case-index-row {
    display: grid;
    grid-template-columns: 220px 1fr 280px;
    border: 1px solid var(--line-light);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    background: var(--cream-card);
  }
  .cir-meta { padding: 28px; border-right: 1px solid var(--line-light); }
  .cir-meta .case-tag { color: var(--ink-soft); }
  .cir-meta .case-num {  font-size: 12px; color: #c4c1b8; margin-bottom: 14px; }
  .cir-meta h3 { font-size: 20px; }
  
  .cir-body { padding: 28px; }
  .cir-body .cir-block { margin-bottom: 16px; }
  .cir-body .cir-block:last-child { margin-bottom: 0; }
  .cir-body .cir-label {
     font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
    font-weight: 700; margin-bottom: 6px;
  }
  .cir-body .cir-label.challenge { color: #d8669a; }
  .cir-body .cir-label.support { color: #6b7fd7; }
  .cir-body p { font-size: 14.5px; color: var(--ink-soft); }
  
  .cir-outcome { background: var(--navy); color: #fff; padding: 28px; display: flex; flex-direction: column; justify-content: center; }
  .cir-outcome .oc-label {  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--lime); margin-bottom: 8px; }
  .cir-outcome h4 { font-size: 21px; margin-bottom: 6px; }
  .cir-outcome p { font-size: 13.5px; color: rgba(255,255,255,0.8); }
  .cir-outcome a.cir-link { margin-top: 14px; font-size: 13px; font-weight: 700; color: var(--lime); }
  
  /* filter tags */
  .filter-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
  .filter-tag {
    border: 1px solid var(--line-light);
    border-radius: 999px;
    padding: 9px 18px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink-soft);
    cursor: pointer;
    transition: all 0.15s;
  }
  .filter-tag.active, .filter-tag:hover { background: var(--ink); color: var(--lime); border-color: var(--ink); }
  
  /* Single case study page */
  .cs-header {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--line);
  }
  .cs-header .cs-meta-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 24px 40px; width: 100%; }
  .cs-header .cs-meta-item .ml {  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.8); margin-bottom: 6px; }
  .cs-header .cs-meta-item .mv { font-weight: 700; font-size: 15px; }
  
  .tldr-box {
    background: rgba(61,255,176,0.06);
    border: 1px solid rgba(61,255,176,0.2);
    border-radius: 14px;
    padding: 22px 26px;
    margin-bottom: 48px;
    font-size: 16px;
    color: rgba(255,255,255,0.8);
  }
  .tldr-box strong { color: var(--lime); }
  
  .cs-section { margin-bottom: 48px; }
  .cs-section h3 { margin-bottom: 0;
    font-weight: 800;
    font-size: 21px;
    line-height: 24px;
    letter-spacing: -0.525px;
    color: #14122B; }
  /* .cs-section p { color: rgba(255,255,255,0.8); font-size: 16px; max-width: 760px; margin-bottom: 12px; } */
  .cs-section ul.checklist li { color: rgba(255,255,255,0.8); }
  
  .metric-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    margin: 24px 0 48px;
  }
  .metric-card {
    background: var(--navy-panel);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 22px;
    text-align: center;
  }
  .metric-card .mc-val {  font-size: 24px; font-weight: 800; color: var(--lime); margin-bottom: 6px; }
  .metric-card .mc-lab { font-size: 12.5px; color: rgba(255,255,255,0.8); }
  
  .testimonial-block {
    background: var(--navy-panel);
    border-left: 4px solid var(--lime);
    border-radius: 0 16px 16px 0;
    padding: 36px 40px;
    margin-bottom: 48px;
  }
  .testimonial-block blockquote {
    font-size: 18px;
    font-style: italic;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 16px;
  }
  .testimonial-block cite {
    font-style: normal;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    font-weight: 600;
  }
  
  .related-cases {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .related-card {
    background: var(--navy-panel);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 24px;
    transition: border-color 0.15s;
  }
  .related-card:hover { border-color: var(--lime); }
  .related-card .case-tag { margin-bottom: 10px; }
  .related-card h4 { font-size: 17px; margin-bottom: 8px; }
  .related-card p { font-size: 14px; color: rgba(255,255,255,0.8); margin: 0; }
  
  /* About page */
  .about-hero-figure {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 40px;
  }
  
  .coverage-tag-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
  .coverage-tag-cloud .pill { color: var(--ink-soft); border-color: var(--line-light); }
  .coverage-tag-cloud .pill:hover { color: var(--ink); border-color: var(--ink); }
  
  .location-card {
    background: var(--navy-panel);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
  }
  .location-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: rgba(61,255,176,0.1);
    display:flex; align-items:center; justify-content:center;
    font-size: 20px; color: var(--lime);
    flex-shrink: 0;
  }
  .location-card p { color: rgba(255,255,255,0.8); margin-bottom: 6px; font-size: 15px; }
  .location-card p:last-child { margin-bottom: 0; }
  .location-card strong { color: #fff; }
  
  /* Contact page form */
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }  
  .form-field { margin-bottom: 20px; }
  .form-field label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--ink);
  }
  .form-field input, .form-field select, .form-field textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid var(--line-light);
    border-radius: 10px;
    font-size: 15px;
    background: var(--cream-card);
    color: var(--ink);
  }
  .form-field textarea { resize: vertical; min-height: 110px; }
  .form-field input:focus, .form-field select:focus, .form-field textarea:focus {
    outline: none; border-color: var(--ink);
  }
  
  .urgent-toggle {
    display: flex;
    gap: 12px;
  }
  .urgent-option {
    flex: 1;
    border: 1px solid var(--line-light);
    border-radius: 10px;
    padding: 14px 16px;
    cursor: pointer;
    font-size: 14.5px;
    font-weight: 600;
    text-align: center;
    transition: all 0.15s;
  }
  .urgent-option.selected { border-color: var(--ink); background: var(--ink); color: var(--lime); }
  
  .urgent-warning {
    background: #fff4e8;
    border: 1px solid #ffd9ad;
    border-radius: 12px;
    padding: 18px 20px;
    margin-top: 16px;
    font-size: 14.5px;
    color: #8a4a00;
    display: none;
  }
  .urgent-warning.show { display: block; }
  .urgent-warning strong { display: block; margin-bottom: 4px; }
  
  .contact-direct {
    background: var(--navy);
    color: #fff;
    border-radius: 18px;
    padding: 36px;
  }
  .contact-direct h3 { font-size: 20px; margin-bottom: 18px; color: var(--lime); }
  .contact-direct .cd-row { display: flex; align-items: center; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 16px; }
  .contact-direct .cd-row:last-child { border-bottom: none; }
  .contact-direct .cd-icon { width: 36px; height: 36px; border-radius: 9px; background: rgba(61,255,176,0.1); display:flex; align-items:center; justify-content:center; font-size: 15px; color: var(--lime); flex-shrink: 0; }
  
  /* generic content sub-section spacing helper */
  
  /* simple icon list for "what we cover" */
  .cover-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 32px;
  }

  /* highlight number badge for response evidence */
  .response-evidence-section { padding: 80px 0; }
  /* =========================================================
   Topnav Responsive Mobile Menu
   Append this to your theme's stylesheet (e.g. styles.css)
   ========================================================= */

/* Hide mobile nav + toggle on desktop by default */
.mobile-nav { display: none; }
.nav-toggle { display: none; }
.mobile-nav-links {
  margin: 0;
}

a.btn-primary:hover {
  color: #06061a;
}

.footer-grid ul {
  margin: 0;
  padding: 0;
}
a.btn-line {
  font-style: normal;
  font-weight: 700;
  font-size: 17px;
  line-height: 26px;
  display: flex;
  align-items: center;
  text-align: center;
  letter-spacing: -0.17px;
  color: #ECEAFC;
}

/* .model-card.featured a.card-link {
  box-shadow: 0px 0px 46px -3px rgba(52, 215, 95, 0.4);
} */
.howit-works--section {
  background: #060238;
}
.howit-works--section .wrap.content-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.howit-works--section .section-head.on-dark {
  width: 39%;
}
.section-dark .section-head.on-dark  h2 {
  color: #ECEAFC;
}
.section-dark .section-head p {
  color: #A39FD0;
}

.timeline-rightside {width: 52%;}

.timeline .tl-step:last-child .tl-num {
    background: #00FB9A;
    color: #060238;
}
.timeline .tl-step:last-child .tl-head h3 {
  color: #00FB9A;
}


.what-cover--section .section-head.on-light {
  max-width: 670px;
}

.what-cover--section  .cards-3.cover-card .model-card {
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
    justify-content: space-between;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 26px 30px;
    gap: 8px;
    background: #FFFFFF;
    border: 1px solid rgba(20, 18, 43, 0.1);
    border-radius: 18px; 
}
.what-cover--section .model-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.what-cover--section .modal-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 0 20px 0;
  border-bottom: 1px solid var(--line-light);
  width: 100%;
}

.what-cover--section .modal-card-header h3 {
  margin: 0;
  font-weight: 700;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: -0.27px;
  color: #14122B;
}

.what-cover--section .model-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

.what-cover--section .model-card-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px dashed var(--line-light);
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
  color: #14122B;
}
.what-cover--section .model-card-check {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0px;
  width: 18px;
  height: 18px;
  background: rgba(0, 251, 154, 0.14);
  border-radius: 5px;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #009259;
}

.what-cover--section .model-card-outcome {
  margin-top: 20px;
}
.what-cover--section .model-card-outcome span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 6px 12px;
  background: linear-gradient(0deg, #BEFEE6, #BEFEE6), rgba(0, 251, 154, 0.14);
  border-radius: 999px;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.55px;
  color: #009259;
}


.onwership-section,
.section-plateform {
  background: #060238;
}
.section-plateform .eyebrow.on-dark,
.onwership-section .eyebrow.on-dark {
  color: #ECEAFC;
} 
.cta-links {
  display: flex;
  justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-brand img {
  max-width: 56px;
  height: auto;
}
footer.site-footer {
  padding: 132px 80px 40px;
  background: radial-gradient(71.06% 99.97% at 50% 99.97%, rgba(103, 87, 230, 0.38) 0%, rgba(103, 87, 230, 0) 56.4%), radial-gradient(31.25% 49.58% at 0% 100%, rgba(0, 251, 154, 0.12) 0%, rgba(0, 251, 154, 0) 55%), #060238;
  border-top: 1px solid rgba(180, 174, 255, 0.14);
}

.footer-copy {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-top: 1px solid rgb(180 174 255 / 14%);
  padding-top: 40px;
}
.footer-copy section.widget, .footer-copy section.widget p {
  margin: 0;
}
.footer-copy section.widget p {
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
  color: #A39FD0;
}


/* ============================================== 
About US Page 
============================================== */

/* HERO */
/* .top-block{background:linear-gradient(180deg,#1414c8 0%,#0a0a50 50%,#06061a 100%);} */
/* .hero{padding:90px 48px 80px;} */
/* .hero-inner{max-width:1160px;margin:0 auto;} */
.breadcrumb{font-size:11px;color:rgba(255,255,255,0.5);letter-spacing:.04em;margin-bottom:32px;}
/* .hero h1{color:#fff;margin-bottom:24px;max-width:780px;} */
/* .hero h1 span{color:#3dffb0;} */
/* .hero-sub{font-size:18px;color:rgba(255,255,255,0.6);line-height:1.7;max-width:600px;margin-bottom:40px;} */
/* .hero-ctas{display:flex;gap:16px;flex-wrap:wrap;margin-bottom:48px;} */

/* STAT BAR */
/* .stat-bar{background:rgba(255,255,255,0.05);border-top:1px solid rgba(255,255,255,0.07);border-bottom:1px solid rgba(255,255,255,0.07);}
.stat-bar-inner{max-width:1160px;margin:0 auto;padding:0 48px;display:grid;grid-template-columns:repeat(4,1fr);}
@media(max-width:700px){.stat-bar-inner{grid-template-columns:1fr 1fr;}}
.stat-item{padding:28px 0;text-align:center;border-right:1px solid rgba(255,255,255,0.07);}
.stat-item:last-child{border-right:none;}
.stat-num{font-size:40px;font-weight:800;color:#3dffb0;letter-spacing:-0.04em;line-height:1;}
.stat-label{font-size:10px;color:rgba(255,255,255,0.4);letter-spacing:0.1em;text-transform:uppercase;margin-top:6px;} */

/* STORY */
.story-grid{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center;}
@media(max-width:768px){.story-grid{grid-template-columns:1fr;gap:40px;}}
.story-body p{font-size:17px;color:#5a5a72;line-height:1.75;margin-bottom:20px;}
.story-body p:last-child{margin-bottom:0;}
.story-body strong{color:#14142b;}
.founding-card{background:#06061a;border-radius:20px;padding:40px;position:relative;overflow:hidden;}
.founding-card::before{content:'';position:absolute;top:0;left:0;right:0;height:3px;background:linear-gradient(90deg,#1414c8,#3dffb0);}
.founding-label{font-size:10px;letter-spacing:0.12em;text-transform:uppercase;color:rgba(255,255,255,0.5);margin-bottom:24px;}
.founder-name{font-size:24px;font-weight:800;color:#fff;letter-spacing:-0.02em;margin-bottom:4px;}
.founder-title{font-size:14px;color:rgba(255,255,255,0.5);margin-bottom:24px;}
.founder-quote{font-size:16px;color:rgba(255,255,255,0.75);line-height:1.7;font-style:italic;border-left:2px solid #3dffb0;padding-left:18px;margin-bottom:28px;}
.founder-meta{display:flex;flex-direction:column;gap:10px;}
.founder-meta-item{display:flex;align-items:center;gap:10px;font-size:13px;color:rgba(255,255,255,0.5);}
.founder-meta-item strong{color:rgba(255,255,255,0.85);}
.founder-dot{width:6px;height:6px;border-radius:50%;background:#3dffb0;flex-shrink:0;}

/* WHAT WE ARE NOT */
.contrast-grid{display:grid;grid-template-columns:1fr 1fr;gap:2px;border-radius:16px;overflow:hidden;}
@media(max-width:600px){.contrast-grid{grid-template-columns:1fr;}}
.contrast-col{padding:36px 32px;}
.contrast-col.bad{background:#11112e;}
.contrast-col.good{background:rgba(61,255,176,0.08);border:1px solid rgba(61,255,176,0.2);}
.contrast-col h4{font-size:13px;letter-spacing:0.1em;text-transform:uppercase;margin-bottom:20px;}
.contrast-col.bad h4{color:rgba(255,255,255,0.5);}
.contrast-col.good h4{color:#26b37a;}
.contrast-item{display:flex;gap:12px;align-items:flex-start;padding:10px 0;border-bottom:1px solid rgba(255,255,255,0.05);font-size:14px;}
.contrast-col.good .contrast-item{border-bottom-color:rgba(61,255,176,0.1);}
.contrast-item:last-child{border-bottom:none;}
.contrast-item span{font-size:16px;flex-shrink:0;line-height:1.4;}
.contrast-item p{color:rgba(255,255,255,0.6);line-height:1.5;}
.contrast-col.good .contrast-item p{color:#5a5a72;}

/* WHY WE WIN */
.win-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:2px;}
@media(max-width:600px){.win-grid{grid-template-columns:1fr;}}
.win-card{background:#11112e;padding:36px 32px;transition:background .2s;}
.win-card:hover{background:#1a1a40;}
.win-num{font-size:36px;font-weight:800;color:rgba(61,255,176,0.2);line-height:1;margin-bottom:16px;}
.win-card h3{color:#fff;font-size:17px;margin-bottom:10px;}
.win-card p{color:rgba(255,255,255,0.5);font-size:14px;line-height:1.65;}

/* TEAM */
.team-intro{display:grid;grid-template-columns:1fr 420px;gap:60px;align-items:center;margin-bottom:56px;}
@media(max-width:768px){.team-intro{grid-template-columns:1fr;}}
.team-constellation{display:flex;justify-content:center;}
.team-values{display:grid;grid-template-columns:1fr 1fr;gap:16px;}
@media(max-width:500px){.team-values{grid-template-columns:1fr;}}
.team-value{background:#fff;border:1px solid #e8e6e0;border-radius:14px;padding:22px 20px;}
.team-value-icon{font-size:22px;margin-bottom:10px;}
.team-value h4{font-size:14px;font-weight:700;color:#14142b;margin-bottom:6px;}
.team-value p{font-size:13px;color:#5a5a72;line-height:1.6; margin: 0;}

/* UK INDIA */
.locations{display:grid;grid-template-columns:1fr 1fr;gap:24px;margin-bottom:0;}
@media(max-width:600px){.locations{grid-template-columns:1fr;}}
.location-card{background:#fff;border:1px solid #e8e6e0;border-radius:16px;padding:28px 28px;}
.location-flag{font-size:28px;margin-bottom:12px;}
.location-name{font-size:18px;font-weight:800;color:#14142b;letter-spacing:-0.01em;margin-bottom:4px;}
.location-role{font-size:13px;color:#5a5a72;margin-bottom:16px;}
.location-detail{font-size:14px;color:#5a5a72;line-height:1.65;}

/* RESOLVE GROUP */
.group-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;}
@media(max-width:600px){.group-grid{grid-template-columns:1fr;}}
.group-card{background:#fff;border:1px solid #e8e6e0;border-radius:14px;padding:24px 22px;}
.group-card.active{background:#06061a;border-color:#06061a;}
.group-tag{font-size:10px;letter-spacing:0.1em;text-transform:uppercase;padding:3px 8px;border-radius:4px;display:inline-block;margin-bottom:14px;}
.group-tag.active-tag{background:rgba(61,255,176,0.12);color:#3dffb0;}
.group-tag.inactive-tag{background:#f0eeea;color:#5a5a72;}
.group-card h3{font-size:15px;margin-bottom:8px;}
.group-card.active h3{color:#fff;}
.group-card:not(.active) h3{color:#14142b;}
.group-card p{font-size:13px;line-height:1.6;}
.group-card.active p{color:rgba(255,255,255,0.5);}
.group-card:not(.active) p{color:#5a5a72;}

/* CALLOUT */
.callout{border-left:3px solid #3dffb0;background:rgba(61,255,176,0.05);padding:20px 24px;border-radius:0 12px 12px 0;}
.callout h4{color:#14142b;margin-bottom:8px;}
.callout p{color:#5a5a72;font-size:15px;}
.callout-dark{border-left:3px solid #3dffb0;background:rgba(61,255,176,0.07);padding:24px 28px;border-radius:0 12px 12px 0;}
.callout-dark h4{color:#3dffb0;margin-bottom:10px;}
.callout-dark p{color:rgba(255,255,255,0.65);font-size:15px;line-height:1.65;}

/* TESTIMONIAL */
.tband{background:#11112e;padding:72px 48px;text-align:center;}
.tband blockquote, .tband blockquote p {font-size:22px;font-weight:700;color:#fff;line-height:1.5;letter-spacing:-0.015em;max-width:680px;margin:0 auto 28px;}
.tband blockquote span{color:#3dffb0;}
.tband-meta{display:flex;align-items:center;justify-content:center;gap:14px;}
.tband-avatar{width:44px;height:44px;border-radius:50%;background:#3dffb0;display:flex;align-items:center;justify-content:center;font-weight:800;font-size:14px;color:#06061a;}
.tband-name{font-size:14px;font-weight:700;color:#fff;text-align:left;}
.tband-role{font-size:12px;color:rgba(255,255,255,0.4);text-align:left;}

/* CTA BAND */
.about-us.cta-band{background:#3dffb0;padding:80px 48px;text-align:center;}
.about-us.cta-band.cta-band h2{color:#06061a;font-size:clamp(26px,3.5vw,38px);margin-bottom:14px; line-height: clamp(30px, 4vw, 46px);}
.about-us.cta-band p{color:rgba(6,6,26,0.65);font-size:17px;margin-bottom:32px;max-width:520px;margin-left:auto;margin-right:auto;}

.hero-grid.about-hero {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-start;
  gap: initial;
}
.about-us.cta-band .wrap {
    max-width: 900px;
}
.about-us.cta-band p {
  margin: 20px auto;
}
.location-section .location-card {
  flex-direction: column;
  gap: 0;
}


@media (max-width:1200px) {
  .story-grid {
    gap: 40px;
  }
}
@media (max-width: 991px) {
  .founding-card {
    padding: 30px;
  }
  .contrast-col {
    padding: 20px;
  }
  .win-card {
    padding: 20px;
  }
}


/* =============================================== 
How it works
==================================================* /
/* =============================================================
   How It Works Latest — Page Stylesheet
   File: how-it-works-latest.css
   Enqueue in functions.php:
     wp_enqueue_style( 'hiw-latest', get_template_directory_uri() . '/css/how-it-works-latest.css', [], '1.0' );
   ============================================================= */


/* ── HERO ──────────────────────────────────────────────── */
.hiw-hero-inner {
  max-width: 820px;
}

.hiw-trust-strip {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.hiw-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hiw-trust-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3dffb0;
  flex-shrink: 0;
}

.hiw-trust-item span:last-child {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}


/* ── TIMELINE SECTION ──────────────────────────────────── */
.hiw-timeline-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}

/* Sticky sidebar */
.hiw-tl-sidebar {
  position: sticky;
  top: 80px;
}

.hiw-tl-sidebar__heading {
  color: #fff;
  margin-bottom: 20px;
}

.hiw-tl-sidebar__desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
  margin-bottom: 24px;
}

/* Loop note box */
.hiw-loop-note {
  background: rgba(61, 255, 176, 0.07);
  border: 1px solid rgba(61, 255, 176, 0.2);
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.hiw-loop-icon {
  color: #3dffb0;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  line-height: 1;
}

.hiw-loop-note p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
}

/* Easy box */
.hiw-easy-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 18px 20px;
}

.hiw-easy-box__label {
  
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
}

.hiw-easy-box__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hiw-easy-box__item {
  display: flex;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.8);
}

.hiw-easy-check {
  color: #3dffb0;
  flex-shrink: 0;
}

/* Final step styles */
.tl-num--final {
  background: #3dffb0;
  color: #06061a;
  border-color: #3dffb0;
}

.tl-title--final {
  color: #3dffb0;
}


/* ── AD-HOC VS RETAINER ────────────────────────────────── */
.hiw-ar-desc {
  color: #374151;
}

.hiw-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 48px;
}

@media (max-width: 768px) {
  .hiw-options-grid {
    grid-template-columns: 1fr;
  }
}

/* Option card base */
.hiw-option-card {
  border-radius: 18px;
  padding: 36px 32px;
}

/* Option A */
.hiw-option-card--a {
  border: 1.5px solid #e8e6e0;
}

/* Option B */
.hiw-option-card--b {
  border: 2px solid #3dffb0;
  background: rgba(61, 255, 176, 0.03);
  position: relative;
}

.hiw-option-badge {
  position: absolute;
  top: -13px;
  left: 24px;
  background: #3dffb0;
  color: #06061a;
  
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
}

.hiw-option-label {
  
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 16px;
}

.hiw-option-label--b {
  color: #374151;
}

.hiw-option-title {
  font-size: 20px;
  color: #111827;
  margin-bottom: 12px;
}

.hiw-option-desc {
  font-size: 15px;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Shared checklist */
.hiw-checklist {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  margin-left: 0;
}

.hiw-checklist li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: #374151;
}

.hiw-check {
  color: #3dffb0;
  font-weight: 700;
  flex-shrink: 0;
}

/* Option link */
.hiw-option-link {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  text-decoration: none;
  border-bottom: 1.5px solid #e8e6e0;
}

.hiw-option-link:hover {
  border-bottom-color: #374151;
}

/* Pricing row inside option B */
.hiw-option-pricing {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(61, 255, 176, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.hiw-option-price-line {
  font-size: 15px;
  color: #374151;
}

.hiw-option-price-line strong {
  color: #111827;
  font-size: 20px;
}

.hiw-price-suffix {
  font-size: 13px;
  color: #6b7280;
}

.hiw-btn-sm {
  padding: 10px 22px;
  font-size: 13.5px;
}

/* Compare table wrapper */
.hiw-compare-wrap {
  background: #06061a;
  border-radius: 16px;
  overflow: hidden;
}

.hiw-compare-head {
  padding: 24px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.hiw-compare-head h3 {
  color: #fff;
  font-size: 18px;
}

.hiw-compare-table {
  border: none;
  border-radius: 0;
}


/* ── WHAT WE COVER ─────────────────────────────────────── */
.hiw-cover-card {
  display: flex;
  flex-direction: column;
}

.hiw-cover-icon {
  width: 48px;
  height: 48px;
  background: #06061a;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.hiw-cover-title {
  font-size: 17px;
  margin-bottom: 16px;
}

.hiw-cover-list {
  flex: 1;
}

.hiw-cover-outcome {
  margin-top: 20px;
}

.hiw-cover-outcome span {
  background: rgba(61, 255, 176, 0.12);
  color: #26b37a;
  
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 20px;
  display: inline-block;
}


/* ── PEACE OF MIND ─────────────────────────────────────── */
/* 
.hiw-pom-wrap {
  padding-top: 0;
}

.hiw-pom-head {
  border-top: 1px solid #e8e6e0;
  padding-top: 64px;
  margin-bottom: 52px;
}

.hiw-pom-head h2 {
  color: #111827;
  margin-bottom: 14px;
}

.hiw-pom-desc {
  font-size: 17px;
  color: #374151;
  line-height: 1.7;
  max-width: 640px;
} */

.hiw-pom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .hiw-pom-grid {
    grid-template-columns: 1fr;
  }
}

/* Card variants */
.hiw-pom-card {
  border-radius: 16px;
  padding: 36px 32px;
}

.hiw-pom-card--light {
  background: #f9fafb;
  border: 1px solid #e8e6e0;
}

.hiw-pom-card--dark {
  background: #06061a;
}

/* Icon */
.hiw-pom-icon {
  width: 48px;
  height: 48px;
  background: #06061a;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.hiw-pom-icon--dark {
  background: rgba(61, 255, 176, 0.1);
  border: 1px solid rgba(61, 255, 176, 0.25);
}

/* Card title */
.hiw-pom-card--light .hiw-pom-card__title {
  font-size: 18px;
  color: #111827;
  margin-bottom: 12px;
}

.hiw-pom-card--dark .hiw-pom-card__title {
  font-size: 18px;
  color: #fff;
  margin-bottom: 12px;
}

/* Card text */
.hiw-pom-card--light .hiw-pom-card__text {
  font-size: 15px;
  color: #374151;
  line-height: 1.7;
}

.hiw-pom-card--dark .hiw-pom-card__text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}


/* ── EXPERIENCE BANNER ─────────────────────────────────── */
.hiw-exp-banner {
  background: linear-gradient(135deg, #06061a 0%, #0a0a50 100%);
  border-radius: 16px;
  padding: 48px 52px;
  position: relative;
  overflow: hidden;
}

.hiw-exp-banner__bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1414c8, #3dffb0);
}

.hiw-exp-banner__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

@media (max-width: 600px) {
  .hiw-exp-banner__grid {
    grid-template-columns: 1fr;
  }

  .hiw-exp-banner__num-wrap {
    display: none;
  }
}

.hiw-exp-banner__eyebrow {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
}

.hiw-exp-banner__heading {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 14px;
}

.hiw-exp-banner__text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.hiw-exp-banner__num-wrap {
  text-align: center;
  flex-shrink: 0;
}

.hiw-exp-banner__number {
  font-size: 80px;
  font-weight: 800;
  color: rgba(61, 255, 176, 0.15);
  letter-spacing: -0.05em;
  line-height: 1;
}

.hiw-exp-banner__num-label {
  
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-top: -8px;
}


/* ── CTA BAND ──────────────────────────────────────────── */
.hiw-cta-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.hero-grid.about-hero .hero-sub {
  max-width: fit-content;
}
/* .hiw-adhoc .wrap {
  max-width: 1130px;
} */


.hiw-timeline.howit-works--section {
  overflow: visible;
}

.hiw-timeline.howit-works--section .wrap,
.hiw-timeline.howit-works--section .hiw-timeline-grid,
.hiw-timeline.howit-works--section .timeline {
  overflow: visible;
}


/* ── HERO: "What we take off your plate" box ──────────────── */
.ap-plate-box {
  background: var(--panel, #11112e);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 32px;
}
 
.ap-plate-box__label {
  
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}
 
.ap-plate-box__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
 
.ap-plate-box__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
 
.ap-plate-box__item:last-child {
  border-bottom: none;
}
 
.ap-plate-check {
  color: #3dffb0;
  font-size: 16px;
  flex-shrink: 0;
  line-height: 1.4;
}
 
.ap-plate-item-title {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 3px;
}
 
.ap-plate-item-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
}
 
.ap-plate-box__footer {
  background: rgba(61, 255, 176, 0.08);
  border-top: 1px solid rgba(61, 255, 176, 0.15);
  margin: 20px -32px -32px;
  padding: 16px 32px;
  
  font-size: 12px;
  color: #3dffb0;
  border-radius: 0 0 18px 18px;
}
 
 
/* ── THE PROBLEM WE SOLVE: compare boxes ──────────────────── */
.ap-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 48px;
}
 
@media (max-width: 768px) {
  .ap-compare-grid {
    grid-template-columns: 1fr;
  }
}
 
.ap-compare-box {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
}
 
.ap-compare-box--bad {
  border: 1px solid var(--line-lt, #e8e6e0);
}
 
.ap-compare-box--good {
  border: 1px solid #3dffb0;
}
 
.ap-compare-box__header {
  padding: 16px 24px;
}
 
.ap-compare-box__header--bad {
  background: #fef2f2;
  border-bottom: 1px solid #fde8e8;
}
 
.ap-compare-box__header--good {
  background: rgba(61, 255, 176, 0.08);
  border-bottom: 1px solid rgba(61, 255, 176, 0.2);
}
 
.ap-compare-box__label {
  
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
 
.ap-compare-box__label--bad {
  color: #9d1010;
}
 
.ap-compare-box__label--good {
  color: #1b8a5e;
}
 
.ap-compare-box__body {
  padding: 24px;
}
 
.ap-compare-box__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
 
.ap-compare-item {
  display: flex;
  gap: 12px;
  font-size: 14.5px;
  color: var(--soft, #374151);
}
 
.ap-compare-cross {
  color: #dc2626;
  flex-shrink: 0;
  font-weight: 700;
}
 
.ap-compare-check {
  color: #3dffb0;
  flex-shrink: 0;
  font-weight: 700;
}
 
.ap-compare-footer-note {
  margin-top: 14px;
  font-size: 14px;
  color: var(--soft, #374151);
  text-align: center;
  font-style: italic;
}
 
/* Bottom dark callout */
.ap-callout-dark {
  background: #06061a;
  border-radius: 16px;
  padding: 32px 40px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
 
.ap-callout-dark__icon {
  font-size: 32px;
  flex-shrink: 0;
  line-height: 1;
}
 
.ap-callout-dark__title {
  font-size: 18px;
  color: #fff;
  margin-bottom: 10px;
}
 
.ap-callout-dark__text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}
 
 
/* ── HOW WE WORK TOGETHER ──────────────────────────────────── */
.ap-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
 
@media (max-width: 768px) {
  .ap-options-grid {
    grid-template-columns: 1fr;
  }
}
 
.ap-option-card {
  border-radius: 18px;
  padding: 36px 32px;
}
 
.ap-option-card--a {
  background: #fff;
  border: 1px solid var(--line-lt, #e8e6e0);
}
 
.ap-option-card--b {
  background: #f9fafb;
  border: 1px solid var(--line-lt, #e8e6e0);
}
 
.ap-option-label {
  
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted, #6b7280);
  margin-bottom: 16px;
}
 
.ap-option-title {
  font-size: 20px;
  color: var(--ink, #111827);
  margin-bottom: 12px;
}
 
.ap-option-desc {
  font-size: 15px;
  color: var(--soft, #374151);
  line-height: 1.7;
  margin-bottom: 20px;
}
 
/* Non-negotiable rule box */
.ap-rule-box {
  background: #fff;
  border: 1px solid var(--line-lt, #e8e6e0);
  border-radius: 14px;
  padding: 24px 32px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
 
.ap-rule-box__icon {
  font-size: 24px;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}
 
.ap-rule-box__title {
  color: var(--ink, #111827);
  margin-bottom: 6px;
}
 
.ap-rule-box__text {
  font-size: 15px;
  color: var(--soft, #374151);
}
 
 
/* ── FOR MARKETING AGENCIES ────────────────────────────────── */
.ap-marketing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
 
@media (max-width: 900px) {
  .ap-marketing-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.ap-marketing-grid .section-head {
  margin-bottom: 0;
}

.ap-marketing-grid .checklist.ap-marketing-checklist {
  margin: 10px 0 30px 0;
}
 
.ap-marketing-checklist {
  margin-bottom: 28px;
}
 
/* Right panel */
.ap-marketing-panel {
  background: #06061a;
  border-radius: 20px;
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}
 
.ap-marketing-panel__bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1414c8, #3dffb0);
}
 
.ap-marketing-panel__label {
  
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}
 
.ap-marketing-panel__steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
 
.ap-marketing-step {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 18px 20px;
}
 
.ap-marketing-step--highlight {
  background: rgba(61, 255, 176, 0.08);
  border: 1px solid rgba(61, 255, 176, 0.2);
}
 
.ap-marketing-step__title {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
 
.ap-marketing-step--highlight .ap-marketing-step__title {
  color: #3dffb0;
}
 
.ap-marketing-step__text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}
 
.ap-marketing-step--highlight .ap-marketing-step__text {
  color: rgba(255, 255, 255, 0.8);
}
 
 
/* ── WE FIX WHAT OTHERS CAN'T ──────────────────────────────── */
.ap-capability-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 56px;
}
 
.ap-capability-heading {
  color: #fff;
  font-size: clamp(28px, 4vw, 46px);
  margin-bottom: 18px;
}
 
.ap-capability-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}
 
.ap-capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
 
@media (max-width: 900px) {
  .ap-capability-grid {
    grid-template-columns: 1fr 1fr;
  }
}
 
@media (max-width: 600px) {
  .ap-capability-grid {
    grid-template-columns: 1fr;
  }
}
 
.ap-capability-card {
  background: var(--panel, #11112e);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 28px 24px;
}
 
.ap-capability-card__icon {
  width: 44px;
  height: 44px;
  background: rgba(61, 255, 176, 0.1);
  border: 1px solid rgba(61, 255, 176, 0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
 
.ap-capability-card__title {
  color: #fff;
  font-size: 17px;
  margin-bottom: 10px;
}
 
.ap-capability-card__text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
}
 
 
/* ── REAL EXAMPLES (row layout) ────────────────────────────── */
.ap-examples-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}
 
.ap-example-row {
  background: #fff;
  border: 1px solid var(--line-lt, #e8e6e0);
  border-radius: 18px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 220px 1fr 200px;
}
 
@media (max-width: 860px) {
  .ap-example-row {
    grid-template-columns: 1fr;
  }
}
 
.ap-example-row__meta {
  padding: 28px 24px;
  border-right: 1px solid #f0eeea;
  background: #f9fafb;
}
 
@media (max-width: 860px) {
  .ap-example-row__meta {
    border-right: none;
    border-bottom: 1px solid #f0eeea;
  }
}
 
.ap-example-tag {
  margin-bottom: 10px;
}
 
.ap-example-platform {
  
  font-size: 12px;
  color: #bbb;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
 
.ap-example-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--ink, #111827);
  line-height: 1.3;
}
 
.ap-example-row__body {
  padding: 28px 28px;
}
 
.ap-example-block {
  margin-bottom: 14px;
}
 
.ap-example-block:last-child {
  margin-bottom: 0;
}
 
.ap-example-block__label {
  
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted, #6b7280);
  margin-bottom: 7px;
}
 
.ap-example-block p {
  font-size: 14px;
  color: var(--soft, #374151);
  line-height: 1.65;
}
 
.ap-example-row__outcome {
  background: #06061a;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
 
@media (max-width: 860px) {
  .ap-example-row__outcome {
    border-radius: 0 0 18px 18px;
  }
}
 
.ap-example-outcome-label {
  font-size: 9.5px;
  color: #3dffb0;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
 
.ap-example-outcome-value {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 6px;
}
 
.ap-example-outcome-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}
 
.ap-examples-view-all {
  text-align: center;
}
 



.page-template-latest-how-it-works {
  overflow: clip;
}

/* CALLOUTS */
.callout-lime{border-left:3px solid #3dffb0;background:rgba(61,255,176,.1);padding:20px 24px;border-radius:0 12px 12px 0;}
.callout-lime h4{color:#111827;margin-bottom:8px;}
.callout-lime p{color:var(--soft);}
.callout-lime-dark{border-left:3px solid #3dffb0;background:rgba(61,255,176,.08);padding:24px 28px;border-radius:0 12px 12px 0;}
.callout-lime-dark h4{color:#3dffb0;margin-bottom:10px;}
.callout-lime-dark p{color:rgba(255,255,255,.65);font-size:15px;line-height:1.65;}


ul.checklist.ap-marketing-checklist {
  margin: auto;
  padding: 0;
}

ul.checklist.ap-marketing-checklist li {
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
  border-bottom: 1px solid #e8e6e0;
  color: var(--soft);
  margin-bottom: 0;
}
ul.checklist.ap-marketing-checklist.on-dark li {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
ul.checklist.ap-marketing-checklist li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: #3dffb0;
  font-weight: 700;
  background: transparent;
  width: auto;
    height: auto;
    transform: unset;
}
ul.checklist.checklist-dark {
  margin-left: 0;
  padding: 0;
}
ul.checklist.checklist-dark li {
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 0;
}
ul.checklist.checklist-dark li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #3dffb0;
  font-weight: 700;
  background: transparent;
  width: auto;
    height: auto;
    transform: unset;
}


.qa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.qa-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.qa-card {
  background: #fff;
  border: 1px solid #e8e6e0;
  border-radius: 14px;
  padding: 24px 22px;
  text-align: center;
}

.qa-card__icon {
  font-size: 32px;
  margin-bottom: 10px;
}

.qa-card__title {
  font-size: 13.5px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 4px;
}

.qa-card__desc {
  font-size: 12.5px;
  color: var(--soft);
}


.dtd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* LEFT */
.dtd-heading {
  color: #111827;
  margin-bottom: 18px;
}

.dtd-intro {
  font-size: 17px;
  color: var(--soft);
  line-height: 1.75;
  margin-bottom: 20px;
}

.dtd-checklist {
  margin-bottom: 24px;
}

/* RIGHT PANEL */
.dtd-visual {
  background: #06061a;
  border-radius: 20px;
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}

.dtd-visual-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1414c8, #3dffb0);
}

.dtd-panel-label {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 24px;
}

/* STEPS */
.dtd-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dtd-step {
  background: #11112e;
  border-radius: 10px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.dtd-step__num {
  width: 32px;
  height: 32px;
  background: rgba(61,255,176,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;

  
  font-size: 12px;
  font-weight: 700;
  color: #3dffb0;
}

.dtd-step__title {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}

.dtd-step__desc {
  font-size: 12px;
  color: rgba(255,255,255,.4);
}

/* HIGHLIGHT STEP */
.dtd-step--highlight {
  background: rgba(61,255,176,.08);
  border: 1px solid rgba(61,255,176,.2);
}

.dtd-step__num--highlight {
  background: #3dffb0;
  color: #06061a;
}

.dtd-step__title--highlight {
  color: #3dffb0;
}

/* CTA */
.dtd-cta {
  display: inline-block;
}

.dtd-panel {
  background: #06061a;
  border-radius: 20px;
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}

.dtd-panel__label {
  
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
}

.dtd-panel:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1414c8, #3dffb0);
}
.tech_stack_block {
  background: #11112e;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 16px;
  padding: 32px 36px;
}

h3.tech_stack_block_title {
  
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

p.tech_stack-items {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, 0.8);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 18px;
  font-weight: 500;
  margin: 0;
}

.tech_stack_block-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

p.tech_stack-items:last-child {
  background: rgba(61, 255, 176, .1);
  border: 1px solid rgba(61, 255, 176, .25);
  color: #3dffb0;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
}

.btn-outline-light {
  background: transparent;
  border: 1px solid #04241A;
  padding: 12px 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease-in-out 0s;
  white-space: nowrap;
  font-weight: 700;
  font-size: 17px;
  line-height: 26px;
  color: #04241A !important;
}

.btn-outline-light:hover {
  background: #04241A;
  color: #fff !important;
  transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(4, 36, 26, 0.35);
}

ul.dtd-checklist.checklist.ap-marketing-checklist {
  margin-bottom: 30px;
}
.qa-highlight {
  background: #06061a;
  border-radius: 12px;
  padding: 22px 26px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

span.qa-highlight__icon {
  color: #3dffb0;
  font-size: 20px;
  flex-shrink: 0;
  line-height: 1.3;
}

.qa-highlight__title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.qa-highlight__desc {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}


.case-tag.ap-example-tag {
  display: inline-block;
  
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #26b37a;
  background: rgba(61, 255, 176, .09);
  padding: 4px 10px;
  border-radius: 4px;
}

.ap-example-platform {
  
  font-size: 12px;
  color: #bbb;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* ============================================================
   MAGENTO PAGE — page-magento.css

/* ── COST OF DOWNTIME ──────────────────────────────────────── */
.cost-illustration {
  background: linear-gradient(135deg, #06061a 0%, #0a0a50 100%);
  border-radius: 20px;
  padding: 48px 52px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}
.cost-illustration__stripe {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1414c8, #3dffb0);
}
.cost-revenue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 36px;
}
@media (max-width: 700px) {
  .cost-revenue-grid { grid-template-columns: 1fr; }
}
.cost-revenue-col {
  text-align: center;
}
.cost-revenue-col--bordered {
  border-left: 1px solid rgba(255, 255, 255, .08);
  border-right: 1px solid rgba(255, 255, 255, .08);
  padding: 0 24px;
}
.cost-revenue-col__label {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
}
.cost-revenue-col__desc {
  font-size: 13px;
  color: #fff;
  margin-bottom: 8px;
}
.cost-revenue-col__amount {
  font-size: 36px;
  font-weight: 800;
  color: #ff6b6b;
  letter-spacing: -0.04em;
}
.cost-revenue-col__note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 4px;
}
.cost-summary {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
@media (max-width: 700px) {
  .cost-summary { grid-template-columns: 1fr; }
}
.cost-summary__left {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}
.cost-summary__right {
  background: rgba(61, 255, 176, .08);
  border: 1px solid rgba(61, 255, 176, .2);
  border-radius: 14px;
  padding: 20px 24px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}
.cost-question-box {
  background: #f9fafb;
  border: 1px solid #e8e6e0;
  border-radius: 16px;
  padding: 36px 40px;
}
.cost-question-box h3 {
  font-size: 20px;
  color: #111827;
  margin-bottom: 16px;
}
.cost-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 700px) {
  .cost-compare-grid { grid-template-columns: 1fr; }
}
.cost-compare__heading {
  
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.cost-compare__heading--red  { color: #555; }
.cost-compare__heading--lime { color: #26b37a; }
.cost-compare-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
}
.cost-compare-list li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: #374151;
}
.cost-compare-list__icon--red  { color: #ff6b6b; flex-shrink: 0; }
.cost-compare-list__icon--lime { color: #3dffb0; font-weight: 700; flex-shrink: 0; }

/* ── TRACK RECORD ──────────────────────────────────────────── */
.track-record-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 768px) {
  .track-record-grid { grid-template-columns: 1fr 1fr; }
}
.track-record-card {
  background: #11112e;
  border: 1px solid rgba(61, 255, 176, .2);
  border-radius: 16px;
  padding: 28px 22px;
  text-align: center;
}
.track-record-card__label {
  
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
}
.track-record-card__time {
  font-size: 40px;
  font-weight: 800;
  color: #3dffb0;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}
.track-record-card__result {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}

/* ── PAIN POINTS ───────────────────────────────────────────── */
.pain-intro {
  background: #06061a;
  border-radius: 20px;
  padding: 48px 52px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}
.pain-intro__stripe {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1414c8, #3dffb0);
}
.pain-intro__eyebrow {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  display: block;
  margin-bottom: 20px;
}
.pain-intro h2 {
  color: #fff;
  font-size: clamp(24px, 3vw, 38px);
  margin-bottom: 16px;
}
.pain-intro h2 .accent { color: #3dffb0; }
.accent { color: #3dffb0; }
.pain-intro p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
  max-width: 740px;
}
.pain-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .pain-cards-grid { grid-template-columns: 1fr 1fr; }
}
.pain-card {
  background: #14142b;
  padding: 30px 26px;
}
.pain-card:nth-child(1) { border-radius: 12px 0 0 0; }
.pain-card:nth-child(3) { border-radius: 0 12px 0 0; }
.pain-card:nth-child(4) { border-radius: 0 0 0 12px; }
.pain-card:nth-child(6) { border-radius: 0 0 12px 0; }
.pain-card__icon {
  font-size: 26px;
  margin-bottom: 14px;
}
.pain-card h3 {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}
.pain-card p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
}
.pain-questions-box {
  background: #f9fafb;
  border: 1px solid #e8e6e0;
  border-radius: 16px;
  padding: 36px 40px;
}
.pain-questions-box__label {
  
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 20px;
}
.pain-questions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
}
@media (max-width: 700px) {
  .pain-questions-grid { grid-template-columns: 1fr; }
}
.pain-question-item {
  padding: 12px 0;
  border-bottom: 1px solid #e8e6e0;
  display: flex;
  gap: 14px;
}
.pain-question-item:nth-last-child(-n+2) { border-bottom: none; }
.pain-question-item__num {
  
  font-size: 13px;
  color: #26b37a;
  font-weight: 700;
  flex-shrink: 0;
}
.pain-question-item__text {
  font-size: 14px;
  color: #374151;
  line-height: 1.55;
}
.pain-question-closer {
  padding: 12px 0;
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #374151;
  font-style: italic;
  font-weight: 600;
}

/* ── TEAM SETUP SECTION ────────────────────────────────────── */
.team-panel {
  background: #11112e;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 18px;
  overflow: hidden;
}
.team-panel__header {
  padding: 28px 28px 20px;
}
.team-panel__header--default { background: rgba(255, 255, 255, .04); }
.team-panel__header--lime {
  background: rgba(61, 255, 176, .06);
  border-bottom: 1px solid rgba(61, 255, 176, .1);
}
.team-panel__label {
  
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.team-panel__label--default { color: rgba(255, 255, 255, 0.8); }
.team-panel__label--lime    { color: #26b37a; }
.team-panel__heading {
  color: #fff;
  font-size: 18px;
  margin-bottom: 12px;
}
.team-panel__subtext {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}
.team-panel__body {
  padding: 20px 28px 28px;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

/* ── TECH STACK ────────────────────────────────────────────── */
.tech-cols-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .tech-cols-grid { grid-template-columns: 1fr; }
}
.tech-col {
  background: #f9fafb;
  border: 1px solid #e8e6e0;
  border-radius: 16px;
  padding: 28px 24px;
}
.tech-col__label {
  
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 16px;
}
.tech-item-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.tech-item {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: #374151;
}
.tech-item__icon {
  color: #3dffb0;
  font-weight: 700;
  flex-shrink: 0;
}
.tech-banner {
  background: #06061a;
  border-radius: 14px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.tech-banner__icon { font-size: 28px; flex-shrink: 0; }
.tech-banner__text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
  margin: 0;
}

/* ── HOW WORKING WITH US ───────────────────────────────────── */
.working-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .working-cards-grid { grid-template-columns: 1fr; }
}
.working-card {
  background: #fff;
  border: 1px solid #e8e6e0;
  border-radius: 16px;
  padding: 32px 28px;
}
.working-card__icon-wrap {
  width: 44px;
  height: 44px;
  background: #06061a;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.working-card h3 {
  font-size: 17px;
  color: #111827;
  margin-bottom: 10px;
}
.working-card p {
  font-size: 14.5px;
  color: #374151;
  line-height: 1.7;
}
.working-safety-banner {
  background: #06061a;
  border-radius: 14px;
  padding: 28px 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.working-safety-banner__icon-wrap {
  width: 44px;
  height: 44px;
  background: rgba(61, 255, 176, .1);
  border: 1px solid rgba(61, 255, 176, .25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.working-safety-banner h4 {
  color: #3dffb0;
  font-size: 15px;
  margin-bottom: 8px;
}
.working-safety-banner p {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

/* ── TESTIMONIALS ──────────────────────────────────────────── */
.testimonial-card {
  background: #fff;
  border: 1px solid #e8e6e0;
  border-radius: 18px;
  padding: 32px;
}
.testimonial-card__quote {
  color: #374151;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}
.testimonial-card__author {
  color: #555;
  font-size: 13px;
  margin-bottom: 18px;
}
.testimonial-card__outcome {
  border-top: 1px solid #f0eeea;
  padding-top: 16px;
}
.testimonial-card__outcome-text {
  font-size: 16px;
  color: #111827;
  font-weight: 600;
}

/* ── MIGRATION ─────────────────────────────────────────────── */
.migration-miss-panel {
  background: #14142b;
  border-radius: 18px;
  padding: 36px;
}
.migration-miss-panel__label {
  
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}
.migration-miss-list { display: flex; flex-direction: column; }
.migration-miss-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.migration-miss-item:last-child { border-bottom: none; }
.migration-miss-item__icon {
  color: #ff6b6b;
  font-size: 18px;
  flex-shrink: 0;
  line-height: 1.4;
}
.migration-miss-item__title {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 4px;
}
.migration-miss-item__desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
}
.migration-our-panel {
  background: rgba(61, 255, 176, .06);
  border: 1px solid rgba(61, 255, 176, .2);
  border-radius: 18px;
  padding: 36px;
  margin-bottom: 20px;
}
.migration-our-panel__label {
  
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #26b37a;
  margin-bottom: 20px;
}
.migration-our-list { display: flex; flex-direction: column; gap: 10px; }
.migration-our-item {
  display: flex;
  gap: 12px;
  font-size: 14px;
  color: #374151;
}
.migration-our-item__icon {
  color: #3dffb0;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── PRICING ───────────────────────────────────────────────── */
.pricing-table-label {
  
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
}
.pricing-table-wrap {
  background: #11112e;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  overflow: hidden;
}
.pricing-includes-bar {
  background: rgba(61, 255, 176, .07);
  border-bottom: 1px solid rgba(61, 255, 176, .15);
  padding: 16px 28px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.pricing-includes-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.8);
}
.pricing-includes-item__icon { color: #3dffb0; }
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.pricing-table th {
  padding: 13px 28px;
  background: rgba(255, 255, 255, .04);
  
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.pricing-table th:last-child { text-align: right; }
.pricing-table th.center    { text-align: center; }
.pricing-table td {
  padding: 16px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  color: #fff;
  font-weight: 600;
}
.pricing-table td:last-child { text-align: right; }
.pricing-table td.center    { text-align: center; }
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr.alt       { background: rgba(255, 255, 255, .02); }
.pricing-table__plan-note {
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 400;
  margin-left: 8px;
}
.pricing-table__price {
  color: #3dffb0;
  font-size: 20px;
  font-weight: 800;
  
}
.pricing-table__price--sm {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  
  font-weight: 400;
}
.pricing-table__badge {
  background: rgba(61, 255, 176, .12);
  color: #3dffb0;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  
  margin-left: 12px;
}
.pricing-table-note {
  padding: 14px 28px;
  border-top: 1px solid rgba(255, 255, 255, .06);
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.8);
  
}
.pricing-blockhours-desc {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;
  padding: 14px 20px;
  margin-bottom: 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}
.pricing-cta {
  text-align: center;
}




.top-block {
  background: linear-gradient(180deg, #1414c8 0%, #0a0a50 50%, #06061a 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
}

/* SLA boxes */
.hero-sla-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 8px;
}
.hero-sla-box {
  border-radius: 14px;
  padding: 18px 20px;
}
.hero-sla-box--lime {
  background: rgba(61, 255, 176, 0.12);
  border: 1.5px solid rgba(61, 255, 176, 0.35);
}
.hero-sla-box--default {
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
}
.hero-sla-box__label {
  
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
}
.hero-sla-box__value {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}
.hero-sla-box--lime .hero-sla-box__value { color: #3dffb0; }
.hero-sla-box--default .hero-sla-box__value { color: #fff; }
.hero-sla-box__desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}
.hero-sla-note {
  margin-top: 10px;
  
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: .04em;
}

/* Terminal */
.hero-terminal {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 32px 72px rgba(0, 0, 0, .4), 0 0 0 1px rgba(0, 0, 0, 0.1);
}
.hero-terminal__bar {
  background: #f0f0f0;
  border-bottom: 1px solid #d8d8d8;
  padding: 11px 16px;
  display: flex;
  align-items: center;
}
.hero-terminal__dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  display: inline-block;
  border: 1px solid rgba(0, 0, 0, .1);
  margin-right: 8px;
}
.hero-terminal__dot--red    { background: #ff5f57; }
.hero-terminal__dot--yellow { background: #febc2e; }
.hero-terminal__dot--green  { background: #28c840; margin-right: 0; }
.hero-terminal__title {
  
  font-size: 12px;
  color: #666;
  margin: 0 auto;
}
.hero-terminal__body {
  background: #1e1e2e;
  padding: 20px 22px;
  
  font-size: 12.5px;
  line-height: 2.1;
}
.hero-terminal__line--normal  { color: rgba(255, 255, 255, 0.8); }
.hero-terminal__line--warning { color: #ff6b6b; }
.hero-terminal__line--action  { color: #febc2e; }
.hero-terminal__line--success { color: #3dffb0; font-weight: 700; }
.hero-terminal__footer {
  background: #f8fffe;
  border-top: 1px solid #c8f5e8;
  padding: 12px 22px;
  
  font-size: 12px;
  color: #0d7a52;
  display: flex;
  justify-content: space-between;
}
.hero-terminal__badge {
  font-weight: 700;
  background: #0d7a52;
  color: #fff;
  padding: 3px 10px;
  border-radius: 5px;
}

/* ── STAT BAR ──────────────────────────────────────────────── */
/* .statbar {
  background: rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.statbar-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 700px) {
  .statbar-inner { grid-template-columns: 1fr 1fr; }
}
.statbar-item {
  padding: 28px 0;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}
.statbar-item:last-child { border-right: none; }
.stat-label-top {
  
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.stat-num {
  font-size: 36px;
  font-weight: 800;
  color: #3dffb0;
  letter-spacing: -0.04em;
  line-height: 1;
}
.stat-num--small {
  font-size: 20px;
  padding-top: 10px;
  letter-spacing: -0.01em;
}
.stat-label-bottom {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 6px;
} */

@media (max-width: 1440px) {
  .section-head p {
    font-size: 16px;
    line-height: 25px;
  }
  .section-space {
    padding: 80px 0;
  }
  .section-space-top {
    padding: 80px 0 0;
  }
  .section-space-bottom {
    padding: 0 0 80px;
  }
  .wrap {
    max-width: calc(100% - 60px);
    padding-left: 0;
    padding-right: 0;
    width: 100%;
  }
  footer.site-footer {
    padding: 80px 40px 40px;
  }
  .btn-primary,
  .btn-secondary,
  .btn-navy,
  .btn-outline-light {
    padding: 10px 25px;
    font-size: 15px;
    line-height: 22px;
  }
  .model-card .cta-line {
    flex-wrap: wrap;
  }
  .hero-sub {
    font-size: 18px;
  }
  .hiw-timeline-grid {
    gap: 40px;
  }
}
@media (max-width:1200px) {
  .modal-card-header {
    padding: 30px 20px 0;
  }
  .model-card p {
    margin: 0;
  }
  .model-meta {
    padding: 10px 20px;
  }
  .model-card .cta-line {
    padding: 10px 20px 20px;
  }
  .cta-band p {
    margin: 30px auto;
  }
  .cta-band p.eyebrow {
    margin: 0 auto 20px;
  }
  .cs-row {
    grid-template-columns: 160px 1fr 200px;
  }
  .cs-row__meta {
    padding: 20px 15px;
    gap: 5px;
  }
  .cs-row__body {
    padding: 20px 15px;
  }
  .cs-row__outcome {
    padding: 20px 15px;
  }
  .cs-section h3 {
    font-size: 18px;
    line-height: 22px;
  }
  .oc-value {
    font-size: 24px;
    line-height: 28px;
  }
  .tl-content {
    padding-bottom: 40px;
    padding-left: 20px;
  }
  .about-us.cta-band {
    padding: 40px;
  }
  .btn-navy {
      padding: 10px 24px;
      font-size: 16px;
      line-height: 22px;
  }
  .cta-links svg {
    width: 18px;
  }
}
@media (max-width: 1024px) {
  .topnav-inner{
    padding: 15px 30px;
  }
  .site-branding img.custom-logo {
    width: 60px;
  }
  .nav-cta .btn-primary {
    padding: 8px 10px;
    font-size: 12px;
    line-height: 15px;
  }
  .nav-links {
    gap: 14px;
  }
  .site-branding {
    margin-left: 0;
  }
  .hero-sub {
    font-size: 16px;
  }
  .ct-row .ct-good {
    padding: 10px 15px;
  }
}
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle {
    display: block;
    background: none; border: none; color: #fff;
    font-size: 22px; cursor: pointer;
  }
  .cards-3 { grid-template-columns: 1fr; }
  .cs-row {
    grid-template-columns: 1fr;
  }
  .cs-row__meta,
  .cs-row__body {
    border-right: none;
    border-bottom: 1px solid rgba(20, 18, 43, 0.10);
  }
  .cs-row__outcome {
    border-radius: 0 0 14px 14px;
  }
  .statbar-grid { grid-template-columns: repeat(2, 1fr); }
  .statbar-item:nth-child(2) { border-right: none; }
  .statbar-item { border-bottom: 1px solid var(--line); }
  .evidence-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; gap: 36px; } 
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .case-index-row { grid-template-columns: 1fr; }
  .cir-meta { border-right: none; border-bottom: 1px solid var(--line-light); } 
  .contact-grid { grid-template-columns: 1fr; gap: 40px; } 
  /* Hide desktop nav + CTA, show toggle button */
  body.mobile-nav-active {
    overflow: hidden !important;
    height: 100vh;
}

.topnav.nav-open {
    height: 100vh;
    overflow-y: scroll;
}
  .topnav-inner .main-nav,
  .topnav-inner .nav-cta {
      display: none;
  }
  .nav-toggle {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: none;
      border: none;
      font-size: 35px;
      line-height: 1;
      cursor: pointer;
      padding: 6px 10px;
      color: inherit;
  }
  .mobile-nav-links {
    margin: 0;
    padding: 0 2rem;
}
  /* Mobile nav drawer */
  .mobile-nav {
      display: none;
      flex-direction: column;
      width: 100%;
      background: linear-gradient(90deg, rgba(12, 9, 50, 1) 15%, rgba(15, 11, 52, 1) 62%);
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding: 12px 20px 24px;
  }

  .topnav.nav-open .mobile-nav {
      display: flex;
  }

  /* Prevent body scroll when mobile nav open (optional) */
  body.mobile-nav-active {
      overflow: hidden;
  }

  /* Mobile nav item rows */
  .mobile-nav-item {
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .mobile-navlink,
  .mobile-nav-toggle {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      background: none;
      border: none;
      text-align: left;
      padding: 14px 4px;
      font-size: 16px;
      color: #fff !important;
      text-decoration: none;
      cursor: pointer;
  }

  .mobile-caret {
      font-size: 18px;
      transition: transform 0.25s ease;
  }

  .mobile-nav-item.open > .mobile-nav-toggle .mobile-caret {
      transform: rotate(180deg);
  }

  /* Collapsible submenu */
  .mobile-submenu {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      padding-left: 0;
  }

  .mobile-sublink {
      display: block;
      padding: 10px 4px;
      font-size: 15px;
      color: rgba(255, 255, 255, 0.8) !important;
      text-decoration: none;
  }

  .mobile-dd-foot {
      color: var(--accent, #8be38f);
      font-weight: 600;
  }

  /* CTA at bottom of mobile drawer */
  .mobile-nav-cta {
      margin-top: 16px;
      align-self: flex-start;
  }

  .mobile-nav-cta .btn-primary {
      display: block;
      width: 100%;
      text-align: center;
  }
  /* .mobile-nav,
  .mobile-nav-cta,
  .nav-toggle {
      display: none !important;
  } */
  .model-card {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
  }
  .section-head {
    margin-bottom: 30px;
    width: 100%;
  }
  .howit-works--section .section-head.on-dark {
    width: 100%;
    margin-bottom: 30px;
  }
  .timeline-rightside {
    width: 100%;
  }
  footer.site-footer {
    padding: 60px 20px 20px;
  }
  .cta-band .wrap,
  .faq-section .wrap {
    max-width: calc(100% - 60px);
  }
  .cta-band p {
    margin: 20px auto;
  }
  .faq-q {
    padding: 20px 0;
    gap: 20px;
    font-size: 20px;
    line-height: 30px;
  }
  .faq-a {
    font-size: 20px;
    line-height: 30px;
  }
  .platform-row {
    gap: 20px;
    padding: 20px 0;
  }
  .platform-row .ph-name {
    font-size: 18px;
    line-height: 24px;
  }
  .hiw-timeline-grid {
    grid-template-columns: 1fr;
  }
  .hiw-tl-sidebar {
    position: unset;
  }
  .hiw-option-price-line strong {
    font-size: 18px;
  }
  .about-us.cta-band p {
    margin: 0 auto 20px auto;
  }
  .ap-marketing-panel {
    padding: 30px;
  }
  .dtd-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .qa-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .section-head p {
    font-size: 15px;
    line-height: 22px;
  }
  .platform-row { grid-template-columns: 1fr; gap: 10px; }
  .ct-row { grid-template-columns: 1fr; }
  .ct-row > div { padding: 12px 10px; }
  .ct-row .ct-label { padding-bottom: 4px; font-weight: 700; color: var(--lime); }
  .stat-mini-grid { grid-template-columns: 1fr; } 
  .faq-q {
    padding: 15px 0;
    gap: 15px;
    font-size: 18px;
    line-height: 24px;
  }
  .faq-toggle {
    min-width: 30px;
    min-height: 30px;
    font-size: 20px;
    line-height: 21px;
    height: 30px;
    width: 30px;
  }
}
@media (max-width: 767px) {
  .hiw-loop-note {
    padding: 12px 15px;
  }
  .footer-grid {
      gap: 10px;
      margin: 0;
  }

  .section-space {
    padding: 50px 0;
  }
  .section-space-top {
    padding: 50px 0 0;
  }
  .section-space-bottom {
    padding: 0 0 50px;
  }
  .section-head h2 br {
    display: none;
  }
  .section-head h2 {
    margin: 20px 0 15px;
  }
  .status-panel {
    padding: 20px;
  }
  .hero-sub {
    margin-bottom: 20px;
  }
  .trust-strip {
    gap: 10px;
}
  .related-cases { grid-template-columns: 1fr; }
  .about-hero-figure { grid-template-columns: 1fr; } 
  .cover-list { grid-template-columns: 1fr; } 
  .footer-grid { grid-template-columns: 1fr; }
  .statbar-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .statbar-item {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
  }
  .tl-num {
    width: 40px;
    height: 40px;
    font-size: 12px;
  }
  .tl-content {
    padding-bottom: 30px;
    padding-left: 10px;
  }
  .what-cover--section .cards-3.cover-card .model-card {
    padding: 20px;
  }
  .what-cover--section .model-card-list li {
    padding: 10px 0;
    font-size: 14px;
    line-height: 20px;
  }
  .what-cover--section .model-card-outcome {
    margin-top: 10px;
  }
  .what-cover--section .modal-card-header {
    gap: 10px;
    padding: 0 0 15px 0;
  }
  footer.site-footer {
    padding: 50px 0 30px;
  }
  .pill-row {
    padding-left: 40px;
  }
  .pill {
    font-size: 12px;
    padding: 6px 12px;
  }
  .ct-row .ct-good,
  .ct-row .ct-bad {
    padding: 10px 10px;
    gap: 10px;
    font-size: 14px;
    line-height: 20px;
  }
  .cs-dot.cs-dot--challenge, .cs-dot.cs-dot--support {
    width: 10px;
    height: 10px;
  }
  .cs-block:before {
    left: 4px;
  }
  .cs-block__label--challenge,
  .cs-block__label--support {
    font-size: 9px;
    line-height: 10px;
    padding-left: 10px;
  }
  .cs-block__label-wrap {
    width: 130px;
  }
  p.cs-block__text {
    width: calc(100% - 140px);
  }
  .cs-block p {
    font-size: 14px;
    line-height: 20px;
  }
  .tl-outcome {
    font-size: 12px;
  }
  .timeline {
    grid-template-columns: 40px 1fr;
  }
  .timeline:before {
    left: 20px;
    top: 2px;
  }
  .tl-head {
    gap: 10px;
  }
  .hiw-option-card {
    padding: 25px;
  }
  .hiw-pom-card {
    padding: 20px;
  }
  .hiw-pom-icon {
    width: 35px;
    height: 35px;
  }
  .hiw-pom-icon svg {
    width: 16px;
  }
  .hiw-exp-banner {
    padding: 25px;
  }
  .btn-primary span svg,
  .btn-secondary span svg,
  .btn-navy span svg {
    width: 18px;
  }
  .hiw-trust-strip {
    gap: 15px;
  }
  .ap-callout-dark {
    padding: 25px;
    gap: 15px;
  }
  .ap-callout-dark__icon {
    font-size: 26px;
  }
  .ap-rule-box {
    padding: 20px;
    gap: 15px;
  }
  .ap-capability-head {
    margin: 0 auto 30px;
  }
  .ap-capability-card {
    padding: 20px;
  }
  .ap-capability-card__icon {
    width: 35px;
    height: 35px;
  }
  .tech_stack_block {
    padding: 20px;
  }
  .dtd-panel {
    padding: 25px;
  }
  .qa-card {
    padding: 20px;
  }
  .qa-card__icon {
    font-size: 25px;
    margin-bottom: 0px;
  }
  .ap-example-row__meta,
  .ap-example-row__body,
  .ap-example-row__outcome {
    padding: 15px 20px;
  }
  .btn-outline-light span svg {
    width: 18px;
    height: auto;
  }
  .faq-q {
    font-size: 16px;
    line-height: 22px;
  }
  .ap-capability-grid {
    margin-bottom: 20px;
  }
}

.testimonial-section .two-col {
  margin-bottom: 40px;
}

.testimonial-section .testimonial-card {
  background: #fff;
  border: 1px solid #e8e6e0;
  border-radius: 18px;
  padding: 32px;
}

.testimonial-section .case-tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #26b37a;
  background: rgba(61, 255, 176, 0.09);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
}

.testimonial-section p.testimonial-card__quote {
  color: #374151;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-section p.testimonial-card__author {
  color: #555;
  font-size: 13px;
  margin-bottom: 18px;
}

.testimonial-section .testimonial-card {
  background: #fff;
  border: 1px solid #e8e6e0;
  border-radius: 18px;
  padding: 32px;
}
.word-section ul.checklist.ap-marketing-checklist li {
  border-bottom-color: rgba(255,255,255,0.08);
}
@media (max-width:991px) {
  .section-head h2 {
    margin: 15px 0 10px;
  }
  .section-space {
    padding: 60px 0;
  }
  .section-space-top {
    padding: 60px 0 0;
  }
  .section-space-bottom {
    padding: 0 0 60px;
  }
  .about-cta-band {
    padding: 60px 35px;
  }
}
@media (max-width: 767px) {
  .about-cta-band {
      padding: 40px 20px;
  }
  .btn-primary, .btn-secondary, .btn-navy, .btn-outline-light {
      padding: 10px 15px;
      font-size: 14px;
      line-height: 20px;
      justify-content: center;
  }
  .statbar-item {
    padding: 20px;
  }
}

.card-white {
  background: #fff;
  border: 1px solid var(--linelt);
  border-radius: 16px;
  padding: 32px 28px;
  transition: box-shadow .2s;
}
.card-white:hover {
  box-shadow: 0 8px 32px rgba(20, 20, 43, 0.08);
}
ul.checklist.ap-marketing-checklist li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.icon-badge {
  width: 48px;
  height: 48px;
  background: #06061a;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 18px;
}
a:visited {
  color: unset;
}






.legal-breadcrumb {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.legal-breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}
 
.legal-hero-content {
  max-width: 680px;
}
 
.legal-hero-content .hero-h1 {
  margin-bottom: 16px;
}
.legal-hero-content .hero-h1 .accent {
  color: #3dffb0;
}
 
.legal-hero-sub {
  margin-bottom: 0;
}
 
/* ─────────────────────────────────────────────────────────
   2. CONTENT WRAPPER
   ───────────────────────────────────────────────────────── */


/* Inner column — narrower reading width */
.legal-inner {
  max-width: 820px;
  margin: 0 auto;
}
 
/* ─────────────────────────────────────────────────────────
   3. META BAR
   ───────────────────────────────────────────────────────── */
.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border: 1px solid #e8e6e0;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 40px;
  background: #fff;
}
 
.legal-meta-item {
  min-width: 140px;
  padding: 16px 20px;
}
.legal-meta-item:last-child {
  border-right: none;
}
@media (max-width: 640px) {
  .legal-meta-item {
    flex: 1 1 50%;
    border-bottom: 1px solid #e8e6e0;
  }
  .legal-meta-item:nth-last-child(-n+2) {
    border-bottom: none;
  }
}
 
.legal-meta-item .label {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 5px;
}
 
.legal-meta-item .value {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
 
/* ─────────────────────────────────────────────────────────
   4. TABLE OF CONTENTS
   ───────────────────────────────────────────────────────── */
.legal-toc {
  background: var(--cream);
  border: 1px solid #e8e6e0;
  border-radius: 14px;
  padding: 28px 32px;
  margin-bottom: 48px;
}
@media (max-width: 480px) {
  .legal-toc {
    padding: 20px;
  }
}
 
.legal-toc h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
 
.legal-toc ol {
  margin: 0;
  padding-left: 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px 32px;
  list-style: decimal;
}
 
.legal-toc ol li {
  font-size: 14px;
  color: var(--soft);
  padding: 3px 0;
}
 
.legal-toc ol li a {
  color: #1414c8;
  text-decoration: none;
  font-weight: 500;
}
.legal-toc ol li a:hover {
  text-decoration: underline;
}
 
/* ─────────────────────────────────────────────────────────
   5. LEGAL BODY (WYSIWYG content)
   ───────────────────────────────────────────────────────── */
.legal-body {
  color: var(--soft);
  font-size: 16px;
  line-height: 1.8;
}
 
/* H2 section headings */
.legal-body h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin: 40px 0 18px;
  padding-top: 40px;
  border-top: 1px solid #e8e6e0;
  scroll-margin-top: 80px;
}
.legal-body h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
 
/* H3 sub-section headings */
.legal-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin: 28px 0 10px;
}
 
/* H4 minor headings */
.legal-body h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 24px 0 8px;
}
 
/* Paragraphs */
.legal-body p {
  margin-bottom: 16px;
  color: var(--soft);
}
.legal-body p:last-child {
  margin-bottom: 0;
}
 
/* Bold inline */
.legal-body strong {
  color: var(--ink);
  font-weight: 700;
}
 
/* Links */
.legal-body a {
  color: #1414c8;
  text-decoration: underline;
  text-decoration-color: rgba(20, 20, 200, 0.3);
  text-underline-offset: 3px;
}
.legal-body a:hover {
  text-decoration-color: #1414c8;
}
 
/* Unordered lists */
.legal-body ul {
  margin: 12px 0 20px 0;
  padding-left: 18px;
  list-style: disc;
}
.legal-body ul li {
  position: relative;
  padding: 5px 0;
  color: var(--soft);
  border-bottom: 0px solid #f5f4f0;
}
.legal-body ul li:last-child {
  border-bottom: none;
}
/* .legal-body ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 7px;
  color: #1414c8;
  font-size: 13px;
  font-weight: 700;
} */
 
/* Ordered lists */
.legal-body ol {
  margin: 12px 0 20px 0;
  padding-left: 22px;
}
.legal-body ol li {
  padding: 6px 0;
  font-size: 15px;
  color: var(--soft);
  line-height: 1.65;
}
 
/* Nested lists */
.legal-body ul ul,
.legal-body ol ol,
.legal-body ul ol,
.legal-body ol ul {
  margin: 8px 0 4px 0;
}
 
/* Cookie table */
.legal-body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin: 20px 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e8e6e0;
}
.legal-body table thead tr {
  background: var(--cream);
}
.legal-body table th {
  padding: 12px 14px;
  text-align: left;
  font-weight: 700;
  color: var(--ink);
  border-bottom: 2px solid #e8e6e0;
  font-size: 13px;
}
.legal-body table td {
  padding: 10px 14px;
  color: var(--soft);
  border-bottom: 1px solid #e8e6e0;
  vertical-align: top;
}
.legal-body table tr:last-child td {
  border-bottom: none;
}
.legal-body table tr:nth-child(even) {
  background: #faf9f7;
}
 
/* Cookie type badges inside table */
.legal-body table .badge-essential {
  background: #f0eff0;
  color: var(--muted);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
}
.legal-body table .badge-analytics {
  background: rgba(20, 20, 200, 0.08);
  color: #1414c8;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
}
.legal-body table td:first-child {
  font-size: 12px;
  color: var(--ink);
}
 
/* Responsive table */
@media (max-width: 640px) {
  .legal-body table,
  .legal-body thead,
  .legal-body tbody,
  .legal-body th,
  .legal-body td,
  .legal-body tr {
    display: block;
  }
  .legal-body thead {
    display: none;
  }
  .legal-body td {
    border-bottom: none;
    padding: 4px 12px;
  }
  .legal-body tr {
    border-bottom: 1px solid #e8e6e0;
    padding: 12px 0;
  }
  .legal-body tr:last-child {
    border-bottom: none;
  }
}
 
/* Manage cookies button (inside WYSIWYG) */
.legal-body button.cookie-pref-btn {
  background: #06061a;
  color: #3dffb0;
  padding: 12px 24px;
  border-radius: 50px;
  border: none;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  margin: 20px 0;
  display: inline-block;
}
 
/* ─────────────────────────────────────────────────────────
   6. BOTTOM CONTACT BOX — DARK STYLE (Terms)
   ───────────────────────────────────────────────────────── */
.legal-bottom-box {
  border-radius: 16px;
  margin-top: 56px;
}
 
.legal-bottom-box-dark {
  background: #06061a;
  padding: 32px 36px;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}
@media (max-width: 480px) {
  .legal-bottom-box-dark {
    padding: 24px 20px;
  }
}
 
.legal-bottom-box-accent-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1414c8, #3dffb0);
}
 
.legal-bottom-box-heading {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
 
.legal-bottom-box-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 24px;
}
 
/* ─────────────────────────────────────────────────────────
   7. BOTTOM CONTACT BOX — LIGHT STYLE (Privacy)
   ───────────────────────────────────────────────────────── */
.legal-bottom-box-light {
  background: var(--cream);
  border: 1px solid #e8e6e0;
  padding: 24px 28px;
  border-radius: 14px;
}
@media (max-width: 480px) {
  .legal-bottom-box-light {
    padding: 20px;
  }
}
 
.legal-bottom-box-heading-light {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
 
.legal-bottom-box-text-light {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 16px;
}
.legal-bottom-box-text-light a {
  color: #1414c8;
  text-decoration: none;
  font-weight: 500;
}
.legal-bottom-box-text-light a:hover {
  text-decoration: underline;
}
 
/* ─────────────────────────────────────────────────────────
   8. BOTTOM BOX LINK ROW
   ───────────────────────────────────────────────────────── */
.legal-bottom-box-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
 
/* Plain text links — light context */
.legal-plain-link {
  font-size: 14px;
  font-weight: 600;
  color: #1414c8;
  text-decoration: none;
}
.legal-plain-link:visited {
  color: #1414c8;
}
.legal-plain-link:hover {
  text-decoration: underline;
}
 
/* Plain text links — dark context */
.legal-plain-link-dark {
  display: inline-block;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 13.5px;
  text-decoration: none;
  white-space: nowrap;
}
.legal-plain-link-dark:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}
 
/* Override btn sizes in bottom box */
.legal-bottom-box-links .btn-primary,
.legal-bottom-box-links .btn-secondary {
  font-size: 13.5px;
  padding: 11px 22px;
  white-space: nowrap;
}
 
/* ─────────────────────────────────────────────────────────
   9. RESPONSIVE
   ───────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .legal-body {
    font-size: 15px;
  }
  .legal-body h2 {
    font-size: 19px;
    margin-top: 40px;
    padding-top: 40px;
  }
  .legal-body h3 {
    font-size: 15px;
  }
}
.t-btn {
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
  color: #5a5a72;
  background: #f0eff0;
}
.t-btn.ess {
  background: #f0eff0;
  color: #5a5a72;
}
.t-btn.ana {
  background: rgba(20, 20, 200, .08);
  color: #1414c8;
}
.legal-plain-link span {
  transition: all 0.3s ease-in-out 0s;
  padding-left: 0px;
}
.legal-plain-link svg {
  width: 16px;
}
.legal-plain-link {
  display: flex;
  align-items: center;
  gap: 6px;
}
.legal-plain-link:hover span {
  padding-left: 4px;
}

.home-portrait {
  position: relative; width: 100%; aspect-ratio: 1/1; border-radius: 50%; overflow: hidden;
  background: #06061a; border: 4px solid #3dffb0;
  box-shadow: 0 0 0 12px rgba(61, 255, 176, .12), 0 20px 50px rgba(0, 0, 0, .35);
}
.home-portrait img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 50%; }
.home-portrait-ph {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 14px; ; text-align: center; padding: 20px; border-radius: 50%;
}
.home-portrait-ph .home-mono {
  font-size: 9.5px; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8); line-height: 1.6;
}
@media (max-width: 900px) {
  .home-portrait { max-width: 250px; margin: 0 auto; }
}
.home-hero2 { display: grid; grid-template-columns: 1.35fr .65fr; gap: 64px; align-items: center; }
@media (max-width: 900px) {
  .home-hero2 { grid-template-columns: 1fr; gap: 40px; }
}
.page-template-page-latest-case-study-listing .home-hero2 {
  grid-template-columns: .8fr .55fr;
}
.page-template-page-latest-case-study-listing .home-portrait {
  max-width: 450px;
  width: 95%;
}

.footer-copyright .menu {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0;
}

.footer-copyright .menu li:after {
  content: "|";
  color: #A39FD0;
  margin: 0 5px;
}

.footer-copyright .menu li {
  position: relative;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.5px;
}
.footer-copyright .menu li a {
  color: #A39FD0;
}
.footer-copyright .menu li a:hover {
  text-decoration: underline;
}
.footer-copyright .menu li:last-child:after {
  content: none;
}



/* //Book Discovery form */
.mgc-form {
  max-width: 700px;
}
/* .mgc-question {
  display: block;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #444;
  margin: 20px 0 10px;
} */
/* Turn radio inputs into pill buttons */
.mgc-pill.wpcf7-list-item {
  display: inline-block;
  margin: 0 8px 8px 0;
}
.mgc-pill.wpcf7-list-item input[type="radio"] {
  display: none;
}
.mgc-pill.wpcf7-list-item label {
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid #ddd;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  background: #fff;
  color: #333;
  transition: all 0.15s ease;
}
.mgc-pill.wpcf7-list-item label:hover {
  border-color: #999;
}
/* Selected state - matches black pill in screenshot */
.mgc-pill.wpcf7-list-item input[type="radio"]:checked + label {
  background: #111;
  color: #fff;
  border-color: #111;
}
/* Two-column layout for name/email/phone rows */
.mgc-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.mgc-col {
  flex: 1;
}
.mgc-form label {
  display: block;
  font-size: 13px;
  font-weight: bold;
  color: #222;
}
.mgc-form input[type="text"],
.mgc-form input[type="email"],
.mgc-form input[type="tel"],
.mgc-form input[type="url"],
.mgc-form textarea {
  box-sizing: border-box;
  width: 100%;
  padding: 5px 14px;
  border: 1px solid #e8e6e0;
  border-radius: 10px;
  font-size: 15px;
  color: #111827;
  background: #fff;
}
.mgc-form textarea {
  height: 110px;
  resize: vertical;
}
/* Submit button - black pill with green text, like screenshot */
.mgc-form input[type="submit"] {
  background: #111;
  color: #4ade80;
  border: none;
  border-radius: 30px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 15px;
}
.mgc-form input[type="submit"]:hover {
  background: #000;
}
/* Mobile responsive */
@media (max-width: 600px) {
  .mgc-row {
    flex-direction: column;
    gap: 0;
  }
}
.discovry-form br {
    display: none;
}
.mgc-col p {
  margin: 0;
}
.mgc-pill {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.mgc-pill .wpcf7-list-item {
  margin: 0;
}

.mgc-pill label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 1.5px solid var(--line-lt, #e8e6e0);
  border-radius: 50px;
  padding: 5px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--soft, #374151);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  user-select: none;
}

.mgc-pill label:hover {
  border-color: var(--cobalt, #1414c8);
  color: var(--ink, #111827);
}

/* Hide the native radio but keep it accessible (focusable, clickable) */
.mgc-pill input[type="radio"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* The dot — hidden by default, revealed only on the selected pill */
.mgc-pill .wpcf7-list-item-label::before {
  content: '';
  width: 0;
  height: 0;
  border-radius: 50%;
  background: #3dffb0;
  flex-shrink: 0;
  transition: width 0.15s, height 0.15s;
}

/* Selected state — modern browsers (Chrome/Edge 105+, Safari 15.4+, Firefox 121+) */
.mgc-pill label:has(input:checked) {
  background: var(--navy, #06061a);
  border-color: var(--navy, #06061a);
  color: #3dffb0;
  font-weight: 600;
}
.mgc-pill label:has(input:checked) .wpcf7-list-item-label::before {
  width: 6px;
  height: 6px;
}

/* Keyboard focus ring */
.mgc-pill input:focus-visible + .wpcf7-list-item-label {
  outline: 2px solid var(--cobalt, #1414c8);
  outline-offset: 3px;
  border-radius: 50px;
}

/* Fallback for older browsers without :has() support — see JS below */
.mgc-pill label.selected {
  background: var(--navy, #06061a);
  border-color: var(--navy, #06061a);
  color: #3dffb0;
  font-weight: 600;
}
.mgc-pill label.selected .wpcf7-list-item-label::before {
  width: 6px;
  height: 6px;
}


.ts-teamq.ts-layout- {
  display: grid;
    grid-template-columns: 220px 1fr;
    gap: 44px;
    align-items: center;
    margin-bottom: 44px;
}

.ts-teamq-photo {
  position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    background: var(--navy);
    border: 4px solid var(--lime);
    box-shadow: 0 0 0 10px rgba(61, 255, 176, .12), 0 18px 40px rgba(6, 6, 26, .14);
}


.ts-teamq-ph {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 50%;
  padding: 10px;
  text-align: center;
}

.ts-teamq-quote-block {
  font-size: 20px;
  line-height: 1.65;
  
  font-weight: 600;
  letter-spacing: -.01em;
  margin-bottom: 22px;
}


p.ts-teamq-quote {
  font-size: 20px;
  line-height: 1.5;
  color: #111827;
  font-weight: 600;
  letter-spacing: -.01em;
  margin-bottom: 20px;
}

span.ts-mark {
  color: #2bcf8e;
}

.ts-teamq-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
}

.ts-teamq-role {
  font-size: 13.5px;
  color: var(--muted);
  margin-top: 3px;
}
@media (max-width: 991px) {
  .ts-teamq.ts-layout- {
    grid-template-columns: 180px 1fr;
    gap: 30px;
  }
}
.mgc-form-select-radio .wpcf7-not-valid {
  border: 0 !important;
}

.mgc-form-select-radio .wpcf7-not-valid.mgc-pill label {
  border: 1px solid red !important;
}
.wpcf7-not-valid {
  border: 1px solid red !important;
}
.mgc-form-select-radio {
  margin-bottom: 20px;
}

.contact-card.bac-form-card {
  background: #fff;
  border: 1px solid var(--line-lt);
  border-radius: 20px;
  padding: 30px 20px;
}

h3.bac-form-h3 {
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 6px;
}

.contact-card.bac-form-card .mgc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-card.bac-form-card  br {
  display: none;
}
.contact-card.bac-form-card label {
  display: block;
  font-size: 13px;
  line-height: 1;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.contact-card.bac-form-card .mgc-row input,
.contact-card.bac-form-card textarea,
.contact-card.bac-form-card select {
width: 100%;
  padding: 5px 12px;
  border: 1px solid var(--line-lt);
  border-radius: 10px;
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  transition: border-color .15s;
  outline: none;
}
  .contact-card.bac-form-card textarea {
  height: 110px;  
}


.contact-card.bac-form-card input.wpcf7-submit.has-spinner {
  width: 100%;
  background: #3dffb0;
  color: #06061a;
  padding: 16px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: background .2s;
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}
.contact-card.bac-form-card input.wpcf7-submit.has-spinner:hover {
  background: #06061a;
  color: #3dffb0;
}
.contact-card.bac-form-card .mgc-row.full-col {
  grid-template-columns: 1fr;
}

.contact-card.bac-form-card select {
  height: 42px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  background-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 9L12 15L18 9" stroke="%23333333" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-repeat: no-repeat;

  background-position: right 15px center;
  background-size: 16px;

  padding-right: 40px;
}

@media (max-width: 600px) {
  .contact-card.bac-form-card .mgc-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .mgc-col {
    margin-bottom: 20px;
  }
  .mgc-row {
    margin-bottom: 0;
  }
  .ts-teamq.ts-layout- {
    grid-template-columns: 1fr;
  }
  .ts-teamq-photo {
    max-width: 260px;
    margin: 0 auto;
  }
  p.ts-teamq-quote {
    font-size: 16px;
    line-height: 1.5;
  }
}
.nav-cta a.btn-primary {
  padding: 10px 20px;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 1150px) {
  .nav-cta a.btn-primary {
    padding: 8px 15px;
    font-size: 14px;
  }
  .nav-links {
    gap: 15px;
  }
}
@media (max-width: 1023px) and (min-width: 901px) {
  .topnav-inner {
      flex-direction: column;
  }
}
@media (max-width: 767px) {
  .statbar-item.slick-slide {
    display: flex !important;
    border: 0;
  }
  .page-template-page-latest-case-study-listing .home-hero2 {
    grid-template-columns: 1fr;
  }
  .page-template-page-latest-case-study-listing .home-portrait {
    display: none;
  }
  .footer-copy {
    padding: 20px 0 0;
    flex-direction: column-reverse;
    gap: 10px;
    align-items: flex-start;
  }
  .footer-copy section.widget p {
    font-size: 14px;
  }
  .footer-brand {
    display: grid;
    grid-template-columns: 60px calc(100% - 60px);
    gap: 20px;
  }
  .footer-grid .widget.widget_nav_menu .widget-title {
      position: relative;
      cursor: pointer;
      padding-right: 30px; /* room for the caret */
  }
  .footer-grid .widget.widget_nav_menu .widget-title::after {
      content: '';
      position: absolute;
      right: 5px;
      top: 50%;
      width: 8px;
      height: 8px;
      border-right: 2px solid currentColor;
      border-bottom: 2px solid currentColor;
      transform: translateY(-70%) rotate(45deg);
      transition: transform 0.3s ease;
  }
  .footer-grid .widget.widget_nav_menu .widget-title.active::after {
      transform: translateY(-30%) rotate(-135deg);
  }
  .footer-grid .widget.widget_nav_menu [class^="menu-footer-"] {
      display: none;
      overflow: hidden;
  }
  .footer-grid .widget.widget_nav_menu [class^="menu-footer-"] ul {
    padding-left: 20px;
  }
  .footer-grid .widget.widget_nav_menu [class^="menu-footer-"].menu-open {
      display: block;
  }
}
.statbar-grid .slick-next {
  right: 0px;
}
.statbar-grid .slick-prev {
  left: 0;
}

.chat-head.InitialMessageChatHeadGroup__StyledChatHead-iorieD.cLvcUL {
  background: rgb(255, 255, 255);
  border-radius: 8px;
  padding: 5px;
  box-shadow: rgba(0, 0, 0, 0.28) 1px 1px 10px 0px;
}

.chat-head-avatar {
  background: #fff;
}

.home-bl-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .home-bl-grid { grid-template-columns: 1fr; } }
.home-bl-post { background: #fff; border: 1px solid #e8e6e0; border-radius: 16px; overflow: hidden; text-decoration: none; display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s; }
.home-bl-post:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(6, 6, 26, .08); }
.home-bl-img { background: linear-gradient(140deg, #1414c8, #06061a); min-height: 170px; }
.home-bl-body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.home-bl-tag { align-self: flex-start; font-size: 9.5px; letter-spacing: .1em; text-transform: uppercase; border-radius: 50px; padding: 5px 11px; margin-bottom: 14px; background: rgba(20, 20, 200, .08); color: #1414c8; }
.home-bl-post h3 { font-size: 18px; color: #111827; line-height: 1.35; margin-bottom: 10px; letter-spacing: -.02em; }
.home-bl-post p { font-size: 14px; color: #6b7280; line-height: 1.65; margin-bottom: 18px; }
.home-bl-meta { margin-top: auto; display: flex; align-items: center; gap: 10px; font-size: 13px; color: #6b7280; flex-wrap: wrap; }
.home-bl-dot { width: 3px; height: 3px; border-radius: 50%; background: #c9ccd6; }
.blogs-btn {
  margin: 40px 0 0;
}

@media (max-width: 500px) {
  .footer-copy .widget_text {
    width: 280px;
  }
}

.home-bl-tag--list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 10px;
}

.blog-template-default .site-branding .custom-logo {
  filter: none;
}

.wm-section .ts-teamq {
  margin-top: 50px;
}
.wm-section .ts-teamq .ts-teamq-quote-block {
  color: #fff !important;
}

.wm-section .ts-teamq  p.ts-teamq-quote,
.wm-section .ts-teamq-name,
.wm-section  .ts-teamq-role,
.ts-teamq.ts-layout-.ts-small p.ts-teamq-quote,
.ts-teamq.ts-layout-.ts-small .ts-teamq-name,
.ts-teamq.ts-layout-.ts-small .ts-teamq-role,
.wordpress-team p.ts-teamq-quote,
.wordpress-team .ts-teamq-name,
.wordpress-team .ts-teamq-role {
  color: #fff;
}

.ts-teamq.ts-layout-.ts-small {
  grid-template-columns: 150px 1fr;
}
.founder-quote-img {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  background: var(--navy);
  border: 4px solid var(--lime);
  box-shadow: 0 0 0 10px rgba(61, 255, 176, .12), 0 18px 40px rgba(6, 6, 26, .14);
  max-width: 180px;
  margin-bottom: 30px;
}
.founder-quote-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}