 /* =====================================================================
   CreateASoft Homepage — Prototype V1
   --------------------------------------------------------------------
   Brand palette and type system per Brand Guidelines.
   Barlow regular family loaded from Google Fonts in index.html.
   ===================================================================== */


/* ---------- 1. Custom properties ---------- */
:root {
  /* Brand palette */
  --color-primary: #1466AC;
  --color-primary-deep: #0E4F86;       /* darker primary for hover/contrast */
  --color-accent: #d53e20;
  --color-accent-soft: #FBE8E1;
  --color-text: #1E1E1E;
  --color-text-muted: #4B5563;
  --color-text-faint: #6B7280;
  --color-container: #DBECFA;
  --color-container-pale: #F4F8FC;
  --color-rule: #C8D5E2;
  --color-white: #FFFFFF;
  --color-dark: #0F1B2A;

  /* Type */
  --font-body: 'Barlow Condensed', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Barlow Condensed', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* Spacing scale (8px base) */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4rem;
  --space-7: 6rem;
  --space-8: 8rem;

  /* Layout */
  --container-max: 1380px;
  --container-pad: clamp(1.5rem, 5vw, 3.5rem);

  /* Radii / shadows */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(15, 27, 42, 0.06);
  --shadow-md: 0 6px 24px rgba(15, 27, 42, 0.08);
}

/* ---------- 2. Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  font-size: 110%;             /* base scale bump: everything in rem grows ~10% */
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;         /* was 17px; now scales with html */
  font-weight: 400;
  line-height: 1.55;
  color: var(--color-text);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { max-width: 100%; height: auto; display: block; }

ul, ol { padding-left: 1.25rem; }

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 120ms ease, text-decoration-color 120ms ease;
}
a:hover {
  color: var(--color-primary-deep);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
a:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: 2px;
}

button { font-family: inherit; }

@keyframes live-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.animate-pulse-custom {
  animation: live-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.bar-before-build {
    background: linear-gradient(90deg, #6B7785, #4A5667);
}
.bar-after-build {
    background: linear-gradient(90deg, #00A0E1, #00C2FF);
}
 .hero {
    background: linear-gradient(120deg, #081C30 0%, #0E2A47 60%, #1B3A5C 100%);
    color: #fff;
    padding: 90px 32px 70px;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 85% 30%, rgba(0, 160, 225, 0.18) 0%, transparent 50%),
      radial-gradient(circle at 15% 80%, rgba(232, 84, 30, 0.12) 0%, transparent 45%);
    pointer-events: none;
  }
  .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
    -webkit-mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
    pointer-events: none;
  }
  .hero-inner {
    max-width: 1240px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 60px;
    align-items: center;
  }
  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 160, 225, 0.15);
    border: 1px solid rgba(0, 160, 225, 0.4);
    color: #5BC8F5;
    padding: 6px 14px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 22px;
  }
  .hero-tag .live-dot {
    width: 7px; height: 7px;
    background: #E8541E;
    border-radius: 50%;
    animation: live-pulse 1.6s infinite;
  }
  .section-eyebrow {
    font-family:'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #00A0E1;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 14px;
  }
  h1.hero-title {
    font-family:'Roboto', sans-serif;
    font-weight: 900;
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 22px;
    color:#fff;
  }
  h1.hero-title .accent { color: #00A0E1; }
  h1.hero-title .accent-orange { color: #E8541E; }
  .hero-sub {
    font-size: 18px;
    line-height: 1.65;
    color: rgba(255,255,255,0.82);
    margin-bottom: 30px;
    max-width: 540px;
    font-family: 'Roboto', sans-serif;
  }

  
/* ---------- 5. Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1;
  padding: 0.70rem 1.5rem;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 140ms ease, color 140ms ease, border-color 140ms ease, transform 80ms ease;
  text-decoration: none;
  min-height: 44px;     /* a11y touch target */
}
.btn:hover { text-decoration: none; }

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}
.btn-primary:hover { background: var(--color-primary-deep); border-color: var(--color-primary-deep); color: var(--color-white); }

.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-secondary:hover { background: var(--color-primary); color: var(--color-white); }

.btn-primary-on-dark {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}
.btn-primary-on-dark:hover { background: #C84B31; border-color: #C84B31; color: var(--color-white); }
.btn2 {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1;
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 140ms ease, color 140ms ease, border-color 140ms ease, transform 80ms ease;
  text-decoration: none;
  min-height: 44px;     /* a11y touch target */
}
.btn2:hover { text-decoration: none;color:#fff; }
.btn-primary2 {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}
.btn-primary2:hover { background: var(--color-primary-deep); border-color: var(--color-primary-deep); color: var(--color-white); }

.btn-secondary2:hover { background: var(--color-primary); color: var(--color-white); }

.btn2-secondary2 {
  background: transparent;
  color: #333;
  border-color: var(--color-primary);
}
.btn2-secondary2:hover { background: rgba(87, 184, 249, 0.35); color: var(--color-white); }

  .btn-ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.3);
  }
  .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
  .btn-arrow { transition: transform 0.2s; }
  .btn:hover .btn-arrow { transform: translateX(3px); }

  .hero-trust {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.12);
  }
  .hero-trust-item .num {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: 26px;
    color: #00A0E1;
    line-height: 1;
  }
  .hero-trust-item .label {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 5px;
    font-weight: 600;
  }
  /* Hero panel — Cost Per Unit live card */
  .hero-panel {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 6px;
    padding: 28px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin-top:150px;
  }
  .hero-panel-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    margin-bottom: 20px;
  }
  .hero-panel-head h4 {
    font-family:'Roboto', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
  }
  .hero-panel-tag {
    background:#E8541E;
    color: #fff;
    padding: 3px 10px;
    border-radius: 2px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family:'Roboto', sans-serif;
  }
  .cpu-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .cpu-row:last-of-type { border-bottom: none; }
  .cpu-row .label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.7);
    font-weight: 600;
    font-family:'Roboto', sans-serif;
  }
  .cpu-row .val {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 38px;
    line-height: 1;
    letter-spacing: -0.02em;
  }
  .cpu-row .val.before {
    color: rgba(255,255,255,0.5);
    text-decoration: line-through;
    text-decoration-color: #E8541E;
    text-decoration-thickness: 2px;
  }
  .cpu-row .val.after { color:#00A0E1;}
  .cpu-row .delta-pill {
    background: rgba(232, 84, 30, 0.15);
    border: 1px solid rgba(232, 84, 30, 0.4);
    color: #FF8050;
    padding: 6px 12px;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 700;
    font-family:'Roboto', sans-serif;
  }
  .panel-foot {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 14px;
    font-family:'Roboto', sans-serif;
    color: rgba(255,255,255,0.78);
    line-height: 1.55;
  }
  .panel-foot strong { color: #fff; }
  .panel-foot .highlight { color:#E8541E; font-weight: 700; }

 .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
  .btn {
    padding: 13px 28px;
    border-radius: 3px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
    border: 2px solid transparent;
    cursor: pointer;
  }
  .btn-primary { background:#E8541E; color: #fff; }
  .btn-primary:hover { background: #C9421A; transform: translateY(-1px); }
  .btn-secondary { background: #00A0E1; color: #fff; }
  .btn-secondary:hover { background: #081C30; }
  .btn-ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.3);
  }
  .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
  .btn-arrow { transition: transform 0.2s; }
  .btn:hover .btn-arrow { transform: translateX(3px); }
/**/
 .nav {
    max-width: 1240px;
    margin: 0 auto;
    position: sticky;
    top: 0;
    z-index: 100;
    background: #ffffff;
    border-bottom: 1px solid #DDE3EA;
    padding: 20px 0 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    font-family:'Open Sans', sans-serif;
  }
  .nav-brand {
    font-family:'Roboto', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #0E2A47;
    letter-spacing: -0.01em;
    text-decoration: none;
  }
  .nav-brand .accent { color: #E8541E; }
  .nav-brand .sub {
    display: block;
    font-family:'Open Sans', sans-serif;
    font-size: 11px;
    color: #6B7280;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: 2px;
  }
  .nav-links { display: flex; gap: 30px; align-items: center; }
  .nav-links a {
    color: #0E2A47;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: color 0.2s;
    font-family:'Open Sans', sans-serif;
  }
  .nav-links a:hover { color: #00A0E1; }
  .nav-cta {
    background: #E8541E;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 3px;
    font-size: 12px !important;
    font-family:'Open Sans', sans-serif;
  }
  .nav-cta:hover { background: #C9421A; color: #fff !important; }
/**/
  .feature-row {
    background: #fff;
    padding: 40px 20px;
    border-bottom: 1px solid #DDE3EA;
  }
  .feature-row-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
  }
  .feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
  }
  .feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #0E2A47;
    color: #00A0E1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .feature-item h4 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #0E2A47;
    margin-bottom: 6px;
    letter-spacing: -0.005em;
  }
  .feature-item p {
    font-size: 16px;
    color: #6B7280;
    line-height: 1.5;
   font-family:'Roboto', sans-serif;
  }
  /* ===== THE PROBLEM ====== */
  .problem-section { background: #F4F6F8}
  .problem-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .problem-card {
    background: #ffffff;
    border: 1px solid #DDE3EA;
    border-radius: 4px;
    padding: 40px;
    border-top: 4px solid #6B7280;
  }
  .problem-card.new { border-top-color: #E8541E}
  .problem-card.old { border-top-color: #6B7280 }
  .card-tag {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    padding: 5px 10px;
    border-radius: 2px;
    display: inline-block;
    margin-bottom: 22px;
  }
  .card-tag.old { background: #E9EDF1; color: #6B7280; }
  .card-tag.new { background: rgba(232, 84, 30, 0.1); color: #E8541E}
  .problem-card h3 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #0E2A47;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.01em;
  }
  .cpu-bar-meta strong {color: #00A0E1;font-weight: 700;}
  .problem-list { list-style: none; padding-left:0}
  ul.problem-list { list-style: none; padding-left:0;margin-left:0}
  .problem-list li {
    padding: 13px 0;
    border-bottom: 1px solid #DDE3EA;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: #2A2A2A;
    line-height: 1.6;
   font-family: 'Open Sans', sans-serif;
  }
  .problem-list li:last-child { border-bottom: none; }
  .problem-list .icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 3px;
    font-weight: 900;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
   font-family: 'Open Sans', sans-serif;
  }
  .icon-x { color: #B0473A;font-weight:600; }
  .icon-check { color: #2E8B57;font-weight:600;}
 /* ===== SECTIONS ====== */
  section { padding: 90px 32px; }
  .container { max-width: 1240px; margin: 0 auto; }

  .section-eyebrow {
    font-family:  'Roboto', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #00A0E1;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 14px;
  }
  .section-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: clamp(30px, 3.6vw, 46px);
    line-height: 1.1;
    color: #0E2A47;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
    max-width: 880px;
  }
  .section-title em {
    font-style: normal;
    color: #E8541E;
  }
  .section-lead {
    font-size: 18px;
    line-height: 1.65;
    color: #6B7280;
    max-width: 760px;
    font-family: 'Roboto', sans-serif;
  }

  .section-header-center { text-align: center; margin: 0 auto; }
  .section-header-center .section-title { margin-left: auto; margin-right: auto; }
  .section-header-center .section-lead { margin-left: auto; margin-right: auto; }

  /* ===== HOW IT WORKS — DARK SECTION ===== */
  .how-section {
    background: #0E2A47;
    color: #fff;
    padding: 90px 32px;
    position: relative;
    overflow: hidden;
  }
  .how-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 50%, rgba(0,160,225,0.1) 0%, transparent 60%);
    pointer-events: none;
  }
  .how-section .container { position: relative; z-index: 1; }
  .how-section .section-title { color: #fff; }
  .how-section .section-title em { color: #00A0E1; font-style: normal; }
  .how-section .section-lead { color: rgba(255,255,255,0.78); }

  .pillars {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .pillar {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    padding: 32px 28px;
    border-top: 3px solid #00A0E1;
    transition: background 0.25s, border-color 0.25s;
  }
  .pillar:hover {
    background: rgba(255,255,255,0.07);
    border-top-color: #E8541E;
  }
  .pillar-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0,160,225,0.12);
    color: #00A0E1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
  }
  .pillar-num {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 12px;
    color: #E8541E;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
  }
  .pillar h3 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 19px;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.005em;
    line-height: 1.2;
  }
  .pillar p {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.75);
  }
  .pillar p strong { color: #00A0E1; }
  .section-lead{ color:#ffffff;   
   font-family: 'Roboto', sans-serif;
   line-height:1.65;
   font-size:18px;
}
  .section-lead2{ color:#333;   
   font-family: 'Roboto', sans-serif;
   line-height:1.65;
   font-size:18px;
   max-width:760px;
}

/* ===== CASE STUDY ======= */
  .case-section { background: #fff; padding: 40px 32px; }
  .case-header {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 50px;
    align-items: end;
    margin-bottom: 60px;
    font-family:'Roboto', sans-serif;
  }
  .case-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    background: #F4F6F8;
    padding: 28px;
    border-left: 4px solid #00A0E1;
    border-radius: 0 4px 4px 0;
    font-family:'Roboto', sans-serif;
  }
  .case-meta-item .label {
    font-size: 11px;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
    font-weight: 600;
    font-family:'Roboto', sans-serif;
  }
  .case-meta-item .value {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #0E2A47;
    letter-spacing: -0.01em;
  }

  .split-section {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid #DDE3EA;
    border-radius: 4px;
    overflow: hidden;
    font-family:'Roboto', sans-serif;
  }
  .split-col {
    padding: 44px 40px;
    background: #ffffff;
  }
  .split-col.left {
    background: #F4F6F8;
    border-right: 1px solid #DDE3EA;
  }
  .split-col h4 {
    font-size: 12px;
    color: #E8541E;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 18px;
    font-family:'Roboto', sans-serif;
  }
  .split-col h2 {
    font-family:'Roboto', sans-serif;
    font-weight: 700;
    font-size: 26px;
    color: #0E2A47;
    line-height: 1.2;
    margin-bottom: 22px;
    letter-spacing: -0.01em;
  }
  .split-list { list-style: none;padding-left:0; }
  ul.split-list { list-style: none;padding-left:0;margin-left:0;font-family: 'Roboto', sans-serif; }
  .split-list li {
    padding: 12px 0;
    border-bottom: 1px solid #DDE3EA;
    font-size: 15px;
    line-height: 1.6;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    font-family:'Roboto', sans-serif;
  }
  .split-list li:last-child { border-bottom: none; }
  .split-list .num {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 12px;
    color: #E8541E;
    background: rgba(232,84,30,0.1);
    padding: 2px 8px;
    border-radius: 2px;
    margin-top: 2px;
    min-width: 28px;
    text-align: center;
    flex-shrink: 0;
  }


  /* CPU Deep-dive Callout */
  .cpu-callout {
    margin-top: 80px;
    background: linear-gradient(135deg, #081C30 0%, #0E2A47);
    color: #fff;
    border-radius: 6px;
    padding: 70px 60px;
    position: relative;
    overflow: hidden;
    font-family:  'Roboto', sans-serif;
  }
  .cpu-callout::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 90% 0%, rgba(0,160,225,0.15) 0%, transparent 50%),
      radial-gradient(circle at 0% 100%, rgba(232,84,30,0.1) 0%, transparent 50%);
    pointer-events: none;
  }
  .cpu-callout-inner { position: relative; z-index: 1; }
  .cpu-callout .section-eyebrow { color: #E8541E; }
  .cpu-callout h2 {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.05;
    color: #fff;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
  }
  .cpu-callout h2 em { color: #00A0E1; font-style: normal; font-family:  'Roboto', sans-serif; }
  .cpu-callout .lead {
    font-size: 17px;
    color: rgba(255,255,255,0.82);
    line-height: 1.65;
    max-width: 760px;
    margin-bottom: 50px;
    font-family:  'Roboto', sans-serif;
  }

  .cpu-viz { display: grid; gap: 22px; max-width: 880px; }
  .cpu-bar-row { display: grid; grid-template-columns: 130px 1fr 110px; gap: 20px; align-items: center; }
  .cpu-bar-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.7);
    font-weight: 700;
    font-family:  'Roboto', sans-serif;
  }
  .cpu-bar-track {
    height: 38px;
    background: rgba(255,255,255,0.06);
    border-radius: 3px;
    border: 1px solid rgba(255,255,255,0.08);
    position: relative;
    overflow: hidden;
    font-family:  'Roboto', sans-serif;
  }
  .cpu-bar-fill {
    height: 100%;
    border-radius: 2px;
    display: flex;
    align-items: center;
    padding: 0 16px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    color: #fff;
    font-size: 16px;
    letter-spacing: -0.005em;
  }
  .bar-before {
    width: 100%;
    background: linear-gradient(90deg, #6B7785, #4A5667);
  }
  .bar-after {
    width: 62.3%;
    background: linear-gradient(90deg, #00A0E1, #00C2FF);
  }
  .cpu-bar-meta {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    text-align: right;
    font-weight: 600;
    font-family:  'Roboto', sans-serif;
  }
  .cpu-context {
    font-family:  'Roboto', sans-serif;
    margin-top: 50px;
    padding-top: 36px;
    border-top: 1px solid rgba(255,255,255,0.12);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
  }
  .cpu-ctx-item .num {
    font-family:  'Roboto', sans-serif;
    font-weight: 900;
    font-size: 42px;
    color: #fff;
    letter-spacing: -0.025em;
    line-height: 1;
  }
  .cpu-ctx-item .num em { color: #00A0E1; font-style: normal; font-family:  'Roboto', sans-serif;}
  .cpu-ctx-item p {
    margin-top: 12px;
    font-size: 13.5px;
    color: rgba(255,255,255,0.78);
    line-height: 1.6;
    font-family:  'Roboto', sans-serif;
  }
 /* ===== RESULTS GRID ==== */

  .results-section { padding: 50px 32px; background: transparent; }
  .results-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .result-card {
    background: #fff;
    border: 1px solid #DDE3EA;
    border-radius: 4px;
    padding: 32px 28px;
    border-top: 3px solid #00A0E1;
    transition: transform 0.25s, box-shadow 0.25s;
  }
  .result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(14, 42, 71, 0.08);
  }
  .result-card.featured {
    background: #0E2A47;
    color: #fff;
    border-color: #0E2A47;
    border-top-color: #E8541E;
    border-top-width: 4px;
    font-family:  'Roboto', sans-serif;
  }
  .result-card .label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color:  #6B7280;
    font-weight: 700;
    margin-bottom: 16px;
    font-family:  'Roboto', sans-serif;
  }
  .result-card.featured .label { color: #E8541E; font-family:  'Roboto', sans-serif;}
  .result-card .big {
    font-family:  'Roboto', sans-serif;
    font-weight: 900;
    font-size: 56px;
    line-height: 1;
    color: #0E2A47;
    letter-spacing: -0.03em;
  }
  .result-card.featured .big { color: #fff; }
  .result-card.featured .big em { color: #E8541E; font-style: normal; }
  .result-card .pct { font-size: 26px; opacity: 0.7; }
  .result-card h4 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #0E2A47;
    margin-top: 16px;
    line-height: 1.25;
  }
  .result-card.featured h4 { color: #fff; font-family:  'Roboto', sans-serif; }
  .result-card .detail {
    margin-top: 8px;
    font-size: 12.5px;
    color: #6B7280;
    font-weight: 500;
    font-family:  'Roboto', sans-serif;
  }
  .result-card.featured .detail { color: rgba(255,255,255,0.7); font-family:  'Roboto', sans-serif; }
  /* ===== ROI ===== */
  .roi-section {
    background: #081C30;
    color: #fff;
    padding: 60px 32px;
  }
  .roi-section .section-title { color: #fff; }
  .roi-section .section-title em { color: #00A0E1; font-style: normal; }
  .roi-section .section-lead { color: rgba(255,255,255,0.78); }

  .roi-headline {
    margin-top: 50px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 50px;
    align-items: center;
    padding: 40px;
    background: rgba(0,160,225,0.05);
    border-left: 4px solid #00A0E1;
    border-radius: 0 4px 4px 0;
    font-family: 'Roboto', sans-serif;
  }
  .roi-big {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: clamp(70px, 9vw, 130px);
    color: #00A0E1;
    line-height: 0.9;
    letter-spacing: -0.04em;
  }
  .roi-headline-meta p {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #fff;
    line-height: 1.3;
    letter-spacing: -0.005em;
    margin-bottom: 14px;
  }
  .roi-headline-meta span {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.6);
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
  }

  .roi-breakdown {
    margin-top: 36px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  .roi-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    padding: 28px;
    border-top: 3px solid #E8541E;
  }
  .roi-card .savings {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: 36px;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.02em;
  }
  .roi-card .savings em { color: #E8541E; font-style: normal; }
  .roi-card h4 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    margin: 14px 0 10px;
  }
  .roi-card p {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255,255,255,0.75);
    font-family: 'Roboto', sans-serif;
  }
  .roi-foot {
    margin-top: 36px;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    padding-top: 20px;
    border-top: 1px dashed rgba(255,255,255,0.15);
    font-style: italic;
    font-family: 'Roboto', sans-serif;
  }
  /* ==== CAPABILITIES ====== */
  .caps-section { background: #fff; padding: 60px 32px; }
  .caps-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border-top: 1px solid #DDE3EA;
    border-left: 1px solid #DDE3EA;
  }
  .cap-item{
    padding: 36px;
    border-right: 1px solid #DDE3EA;
    border-bottom: 1px solid #DDE3EA;
    background: #fff
    display: flex;
    gap: 22px;
    align-items: flex-start;
    transition: background 0.25s;
  }
  .cap-item-grid {
    display: grid;
    grid-template-columns: repeat(60px, 1fr);
    gap: 10px;
}
  .cap-item:hover { background: #F4F6F8; }
  .cap-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #0E2A47;
    color: #00A0E1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .cap-item h4 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #0E2A47;
    margin-bottom: 8px;
    letter-spacing: -0.005em;
    padding-top:5px;
  }
  .cap-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #6B7280;
    font-family: 'Roboto', sans-serif;
  }
  .compare-section {
    background: #F4F6F8;
    padding: 90px 32px;
  }
  .compare-table {
    margin-top: 50px;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(14, 42, 71, 0.06);
    text-align:center;
  }
  .compare-head {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    background: #0E2A47;
    color: #fff;
    text-align:center;
    font-family: 'Roboto', sans-serif;
   font-weight:700;
  }
  .compare-head div {
    padding: 20px 24px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-align:center;
  }
  .compare-head .ours {
    background: #E8541E;
    text-align: center;
    font-family: 'Roboto', sans-serif;
  }
  .compare-head .theirs {
    text-align: center;
    color: rgba(255,255,255,0.7);
    font-family: 'Roboto', sans-serif;
  }
  .compare-row {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    border-bottom: 1px solid #DDE3EA;
    transition: background 0.2s;
  }
  .compare-row:hover { background: #F4F6F8; }
  .compare-row:last-child { border-bottom: none; }
  .compare-row div {
    padding: 18px 24px;
    font-size: 14.5px;
    display: flex;
    align-items: center;
    font-family: 'Roboto', sans-serif;
  }
  .compare-row .feature {
    font-weight: 600;
    color: #0E2A47;
    font-family: 'Roboto', sans-serif;
  }
  .compare-row .ours {
    justify-content: center;
    color: #2E8B57;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
  }
  .compare-row .theirs {
    justify-content: center;
    color: #B0473A;
    font-family: 'Roboto', sans-serif;
    text-align:center;
  }
  /* ===== CTA ===== */
  .cta-section {
    background: linear-gradient(120deg, #081C30 0%, #0E2A47 50%, #1B3A5C 100%);
    color: #fff;
    padding: 110px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 30% 50%, rgba(0,160,225,0.12) 0%, transparent 50%),
      radial-gradient(circle at 70% 50%, rgba(232,84,30,0.1) 0%, transparent 50%);
  }
  .cta-inner { position: relative; z-index: 1; max-width: 880px; margin: 0 auto; }
  .cta-section h2 {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: clamp(34px, 4.5vw, 52px);
    line-height: 1.1;
    color: #fff;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
  }
  .cta-section h2 em { color: #00A0E1;font-style: normal; }
  .cta-section .tagline {
    display: inline-block;
    font-family: 'Roboto', sans-serif;
    font-style: italic;
    font-weight: 600;
    font-size: 16px;
    color: #E8541E;
    margin-bottom: 22px;
    letter-spacing: 0.1em;
    line-height: 1.6;
  }
  .cta-section p {
    font-size: 17px;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    max-width: 640px;
    margin: 0 auto 36px;
    font-family: 'Roboto', sans-serif;
  }
  .cta-row {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
  }
  /* ====== FOOTER ======= */
  footer {
    background: #081C30;
    color: rgba(255,255,255,0.6);
    padding: 40px 32px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .foot-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 13px;
    font-family: 'Roboto', sans-serif;
  }
  .foot-brand {
    font-family: 'Roboto', sans-serif;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
  }
  .foot-brand .accent { color: #E8541E; }
  .foot-links { display: flex; gap: 22px; }
  .foot-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
  }

/* ---------- New. Footer ---------- */
.site-footer2 {
  background: linear-gradient(120deg, #081C30 0%, #0E2A47 50%, #1B3A5C 100%);
  color: rgba(255, 255, 255, 0.78);
  padding: var(--space-2) 0 var(--space-1);
  font-size: 0.98rem;
}
.site-footer2 a { color: rgba(255, 255, 255, 0.78); font-size: 0.98rem; }
.site-footer2 a:hover { color: var(--color-white); }
.footer-cols2 {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 2rem);
  padding-top: var(--space-4);
  padding-bottom: var(--space-2);
  padding-left: var(--space-7);
  padding-right: var(--space-5);
}
.footer-col-heading2 {
  color: var(--color-white);
  font-size: 1rem;
  margin: 0 0 1rem;
  font-weight: 700;
  font-style: italic;
}
.footer-col2 ul { list-style: none; padding: 0; margin: 0; font-size: 0.98rem;}
.footer-col2 li { padding-bottom: 0.55rem; }
.footer-col2 li a { padding-bottom: 0.55rem; color:#fff; font-size: 0.98rem;}
.footer-col2 li a:hover { padding-bottom: 0.55rem; color:#fff; text-decoration:underline;font-style:italic;}

@media (max-width: 980px) {
.site-footer2 {
  color: rgba(255, 255, 255, 0.78);
  padding: var(--space-1) 0 var(--space-1);
  font-size: 0.92rem;
  padding-left:15px;
}
 .footer-cols2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-top: var(--space-1);
  padding-bottom: var(--space-1);
  padding-left: var(--space-2);
  padding-right: var(--space-1);
}
.footer-col-heading2 {
 display:none;
}
}
@media (max-width: 600px) {
.site-footer2 {
  color: rgba(255, 255, 255, 0.78);
  padding: var(--space-1) 0 var(--space-1);
  font-size: 0.92rem;
  padding-left:25px;
}
 .footer-cols2 {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  padding-top: var(--space-1);
  padding-bottom: var(--space-1);
  padding-left: var(--space-2);
  padding-right: var(--space-1);
}
.footer-col-heading2 {
 display:none;
}
}

  /* === DC - HOSPITAL ==== */

.bar-zone {
    background: linear-gradient(90deg, #00A0E1, #00C2FF);
}
.cpu-ctx-item .num span.minus {
    color: #E8541E;
}
.calc-head .amount {
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    font-weight: 700;
}
.calc-table {
    margin-top: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    overflow: hidden;
}
.calc-row {
    display: grid;
    grid-template-columns: 1.4fr 2fr 1fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.calc-row > div {
    padding: 16px 22px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
}
.calc-head > div {
    padding: 14px 22px;
    font-family: 'Open Sans', sans-serif;
}
.calc-head {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 11px;
    font-weight: 700;
}
.calc-row .lever {
    color: #fff;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
}
.calc-row .amount {
    justify-content: flex-end;
    font-family:'Roboto', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #00A0E1;
    letter-spacing: -0.01em;
}
.calc-row .calc-detail {
    font-family: 'SF Mono', 'Monaco', 'Consolas', monospace;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.65);
}
.roi-summary {
    margin-top: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    padding: 36px 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: center;
}
.calc-row.total .amount {
    color: #E8541E;
    font-size: 22px;
    font-weight: 900;
}
.roi-section {
    background: #081C30;
    color: #fff;
    padding: 100px 32px;
}
.roi-summary-item .value .pct {
    font-size: 20px;
    opacity: 0.75;
}
.roi-summary-item .label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 700;
    margin-bottom: 8px;
    font-family: 'Roboto', sans-serif;
}
.roi-summary-item .value {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: 32px;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.02em;
}
.roi-summary-item .value em {
    color: #00A0E1;
    font-style: normal;
}
  .foot-links a:hover { color: #00A0E1;}

  /* ===== RESPONSIVE ===== */
  @media (max-width: 980px) {
    .nav { padding: 12px 18px; }
    .nav-links { gap: 14px; }
    .nav-links a:not(.nav-cta) { display: none; }
    .hero { padding: 60px 18px; }
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-trust { gap: 20px; }
    .feature-row-inner { grid-template-columns: 1fr; gap: 30px; }
    section { padding: 60px 18px; }
    .problem-grid, .pillars, .results-grid, .case-header, .split-section, .roi-breakdown, .caps-grid, .cpu-context, .compare-head, .compare-row, .roi-summary, .calc-row { grid-template-columns: 1fr; }
    .case-header { gap: 30px; }
    .roi-headline { grid-template-columns: 1fr; padding: 28px; gap: 20px; }
    .cpu-callout { padding: 50px 28px; }
    .cpu-bar-row { grid-template-columns: 1fr; gap: 8px; }
    .cpu-bar-meta { text-align: left; }
    .caps-grid { border-left: none; border-top: none; }
    .cap-item { border-right: none; }
    .compare-head, .compare-row { display: block; }
    .compare-head div, .compare-row div { padding: 12px 18px; }
    .compare-row .feature { background: #F4F6F8; font-size: 13px; }
    .results-section, .caps-section, .case-section, .roi-section, .cta-section,  .compare-section, .how-section { padding: 60px 18px; }
    .hero-panel {margin-top:20px;}
    .calc-row > div {padding: 10px 18px;}
    .calc-row .amount {justify-content: flex-start;}
  }
