:root {
      --bg: #ffffff;
      --soft: #f6f9ff;
      --text: #06121f;
      --muted: #64748b;
      --line: #e6edf5;
      --blue: #2563eb;
      --cyan: #06b6d4;
      --green: #10b981;
      --shadow: 0 24px 70px rgba(15, 23, 42, 0.10);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.5;
    }

    header {
      width: 100%;
      padding: 22px 7%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 255, 255, 0.86);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(226, 232, 240, 0.75);
    }

    .logo {
      font-size: 28px;
      font-weight: 850;
      letter-spacing: -1.2px;
      color: var(--text);
    }

    .logo span {
      color: var(--blue);
    }

    nav {
      display: flex;
      align-items: center;
      gap: 30px;
    }

    nav a {
      text-decoration: none;
      color: #475569;
      font-size: 15px;
      font-weight: 700;
    }

    .nav-cta {
      padding: 11px 18px;
      border-radius: 999px;
      background: var(--text);
      color: white;
    }

    .hero {
      min-height: 88vh;
      padding: 86px 7% 70px;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      width: 760px;
      height: 760px;
      right: -230px;
      top: -260px;
      background:
        radial-gradient(circle at 30% 30%, rgba(37, 99, 235, 0.28), transparent 32%),
        radial-gradient(circle at 62% 48%, rgba(6, 182, 212, 0.25), transparent 32%),
        radial-gradient(circle at 42% 68%, rgba(16, 185, 129, 0.22), transparent 34%);
      filter: blur(10px);
      border-radius: 50%;
      z-index: -1;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 72px;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 9px 14px;
      border: 1px solid #dbeafe;
      background: #eff6ff;
      color: #1d4ed8;
      border-radius: 999px;
      font-weight: 750;
      font-size: 14px;
      margin-bottom: 26px;
    }

    .eyebrow-dot {
      width: 8px;
      height: 8px;
      background: var(--green);
      border-radius: 50%;
      box-shadow: 0 0 0 5px rgba(16, 185, 129, 0.13);
    }

    h1 {
      font-size: clamp(52px, 7vw, 92px);
      line-height: 0.96;
      letter-spacing: -5px;
      max-width: 920px;
      margin-bottom: 28px;
    }

    .gradient-text {
      background: linear-gradient(100deg, var(--blue), var(--cyan), var(--green));
      -webkit-background-clip: text;
      color: transparent;
    }

    .hero-copy {
      font-size: 21px;
      color: var(--muted);
      max-width: 670px;
      margin-bottom: 34px;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      align-items: center;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 52px;
      padding: 0 24px;
      border-radius: 999px;
      text-decoration: none;
      font-size: 16px;
      font-weight: 800;
      transition: transform 0.2s ease;
      cursor: pointer;
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn-primary {
      color: white;
      background: var(--text);
      box-shadow: 0 16px 35px rgba(2, 6, 23, 0.18);
    }

    .btn-secondary {
      color: var(--text);
      background: white;
      border: 1px solid var(--line);
    }

    .trust-row {
      display: flex;
      gap: 26px;
      flex-wrap: wrap;
      margin-top: 44px;
      color: #64748b;
      font-weight: 700;
      font-size: 14px;
    }

    .trust-row strong {
      color: var(--text);
    }

    .dashboard-wrap {
      position: relative;
    }

    .dashboard-glow {
      position: absolute;
      inset: -35px;
      background:
        radial-gradient(circle at 15% 20%, rgba(37, 99, 235, 0.16), transparent 34%),
        radial-gradient(circle at 85% 25%, rgba(6, 182, 212, 0.18), transparent 34%),
        radial-gradient(circle at 55% 100%, rgba(16, 185, 129, 0.14), transparent 36%);
      filter: blur(16px);
      z-index: -1;
    }

    .dashboard {
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(22px);
      border: 1px solid rgba(226, 232, 240, 0.9);
      border-radius: 34px;
      padding: 24px;
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .dashboard-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 22px;
    }

    .dash-title {
      display: flex;
      flex-direction: column;
      gap: 3px;
    }

    .dash-title strong {
      font-size: 17px;
      letter-spacing: -0.4px;
    }

    .dash-title span {
      color: #64748b;
      font-size: 13px;
      font-weight: 700;
    }

    .live-chip {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      background: #ecfeff;
      color: #0891b2;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 850;
    }

    .pulse {
      width: 8px;
      height: 8px;
      background: var(--green);
      border-radius: 50%;
      animation: pulse 1.7s infinite ease-in-out;
    }

    @keyframes pulse {
      0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
      70% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
      100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
    }

    .metric-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      margin-bottom: 18px;
    }

    .metric {
      background: #ffffff;
      border: 1px solid #e2e8f0;
      border-radius: 24px;
      padding: 24px;
      min-height: 150px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .metric span {
      display: block;
      color: #64748b;
      font-size: 14px;
      font-weight: 850;
    }

    .metric strong {
      display: block;
      font-size: clamp(34px, 3vw, 46px);
      letter-spacing: -2px;
      margin-top: 14px;
    }

    .metric small {
      display: block;
      margin-top: 10px;
      color: #059669;
      font-weight: 850;
      font-size: 14px;
    }

    .panel {
      background: #ffffff;
      border: 1px solid #e2e8f0;
      border-radius: 28px;
      padding: 22px;
      overflow: hidden;
    }

    .panel-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 18px;
    }

    .panel-header h3 {
      font-size: 16px;
      letter-spacing: -0.5px;
    }

    .panel-header span {
      color: #64748b;
      font-size: 12px;
      font-weight: 800;
    }

    .bar-chart {
      height: 210px;
      display: flex;
      align-items: end;
      gap: 12px;
      padding-top: 20px;
    }

    .dash-bar {
      flex: 1;
      border-radius: 999px 999px 10px 10px;
      background: linear-gradient(180deg, #2563eb, #06b6d4);
      min-height: 34px;
      animation: barMove 4.5s infinite ease-in-out;
      transform-origin: bottom;
    }

    .dash-bar:nth-child(1) { height: 42%; animation-delay: 0s; }
    .dash-bar:nth-child(2) { height: 60%; animation-delay: .25s; }
    .dash-bar:nth-child(3) { height: 48%; animation-delay: .5s; }
    .dash-bar:nth-child(4) { height: 78%; animation-delay: .75s; }
    .dash-bar:nth-child(5) { height: 64%; animation-delay: 1s; }
    .dash-bar:nth-child(6) { height: 88%; animation-delay: 1.25s; }
    .dash-bar:nth-child(7) { height: 72%; animation-delay: 1.5s; }
    .dash-bar:nth-child(8) { height: 96%; animation-delay: 1.75s; }

    @keyframes barMove {
      0%, 100% { transform: scaleY(0.78); opacity: 0.78; }
      45% { transform: scaleY(1.04); opacity: 1; }
      70% { transform: scaleY(0.92); opacity: 0.9; }
    }

    section {
      padding: 88px 7%;
    }

    .section-head {
      max-width: 820px;
      margin-bottom: 44px;
    }

    .section-head.center {
      margin-left: auto;
      margin-right: auto;
      text-align: center;
    }

    .section-head h2 {
      font-size: clamp(38px, 5vw, 62px);
      line-height: 1.02;
      letter-spacing: -3px;
      margin-bottom: 18px;
    }

    .section-head p {
      color: var(--muted);
      font-size: 20px;
    }

    .solutions {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 22px;
    }

    .solution-card {
      min-height: 420px;
      border: 1px solid #d8e2ef;
      border-radius: 30px;
      padding: 30px;
      background: #ffffff;
      box-shadow: 0 18px 55px rgba(15, 23, 42, 0.05);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      text-decoration: none;
      color: inherit;
      transition: transform .2s ease, box-shadow .2s ease;
      overflow: hidden;
      position: relative;
    }

    .solution-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 28px 70px rgba(15, 23, 42, 0.10);
    }

    .solution-card:nth-child(1) {
      background: linear-gradient(180deg, #eff6ff, #ffffff);
    }

    .solution-card:nth-child(2) {
      background: linear-gradient(180deg, #ecfeff, #ffffff);
    }

    .solution-card:nth-child(3) {
      background: linear-gradient(180deg, #ecfdf5, #ffffff);
    }

    .solution-card h3 {
      font-size: 28px;
      letter-spacing: -1.3px;
      margin-bottom: 12px;
    }

    .solution-card p {
      color: #475569;
      font-size: 17px;
      max-width: 360px;
    }

    .mini-ui {
      margin-top: 34px;
      background: rgba(255,255,255,.75);
      border: 1px solid #e2e8f0;
      border-radius: 22px;
      padding: 18px;
    }

    .mini-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 0;
      border-bottom: 1px solid #e6edf5;
      color: #475569;
      font-weight: 800;
    }

    .mini-row:last-child {
      border-bottom: 0;
    }

    .mini-row strong {
      color: var(--text);
    }


    .solution-status {
      display: inline-block;
      color: var(--text);
      transition: opacity 0.25s ease, transform 0.25s ease, color 0.25s ease;
    }

    .solution-status.is-changing {
      opacity: 0.35;
      transform: translateY(-4px);
      color: var(--blue);
    }

    .learn {
      margin-top: 22px;
      font-weight: 900;
      color: var(--text);
    }

    .band {
      background: #f5f8ff;
      border-top: 1px solid #e6edf5;
      border-bottom: 1px solid #e6edf5;
    }

    .benefits {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .benefit {
      background: white;
      border: 1px solid var(--line);
      border-radius: 24px;
      padding: 26px;
      min-height: 230px;
    }

    .benefit-icon {
      font-size: 28px;
      margin-bottom: 18px;
    }

    .benefit h3 {
      font-size: 22px;
      letter-spacing: -1px;
      margin-bottom: 12px;
    }

    .benefit p {
      color: #64748b;
      font-weight: 650;
    }

    .timeline {
      max-width: 980px;
      margin: 0 auto;
      display: grid;
      gap: 18px;
    }

    .timeline-step {
      display: grid;
      grid-template-columns: 90px 1fr;
      gap: 24px;
      align-items: start;
      padding: 26px;
      border: 1px solid var(--line);
      border-radius: 28px;
      background: linear-gradient(180deg, #ffffff, #f9fbff);
    }

    .step-badge {
      width: 54px;
      height: 54px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      background: var(--text);
      color: white;
      font-size: 18px;
      font-weight: 950;
    }

    .timeline-step h3 {
      font-size: 28px;
      letter-spacing: -1.2px;
      margin-bottom: 8px;
    }

    .timeline-step p {
      color: #64748b;
      font-size: 18px;
    }

    .about {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 50px;
      align-items: center;
    }

    .about-card {
      background: #06121f;
      color: white;
      border-radius: 34px;
      padding: 36px;
    }

    .about-card h3 {
      font-size: 34px;
      letter-spacing: -1.8px;
      margin-bottom: 18px;
    }

    .about-card p {
      color: #cbd5e1;
      font-size: 18px;
    }

    .about-copy p {
      color: #64748b;
      font-size: 20px;
      margin-bottom: 18px;
    }

    .cta {
      margin: 60px 7% 90px;
      border-radius: 44px;
      padding: 76px 32px;
      text-align: center;
      background:
        radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.22), transparent 28%),
        radial-gradient(circle at 82% 28%, rgba(6, 182, 212, 0.24), transparent 32%),
        radial-gradient(circle at 52% 88%, rgba(16, 185, 129, 0.20), transparent 32%),
        #f8fbff;
      border: 1px solid #dbeafe;
    }

    .cta h2 {
      font-size: clamp(40px, 5vw, 68px);
      letter-spacing: -3px;
      line-height: 1;
      margin-bottom: 18px;
    }

    .cta p {
      color: #64748b;
      font-size: 20px;
      max-width: 720px;
      margin: 0 auto 30px;
    }

    footer {
      padding: 34px 7%;
      border-top: 1px solid var(--line);
      color: #64748b;
      display: flex;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }


    .line-icon {
      width: 56px;
      height: 56px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      background: #eff6ff;
      color: var(--blue);
      margin-bottom: 20px;
    }

    .benefit:nth-child(2) .line-icon {
      background: #ecfeff;
      color: #0891b2;
    }

    .benefit:nth-child(3) .line-icon {
      background: #ecfdf5;
      color: #059669;
    }

    .benefit:nth-child(4) .line-icon {
      background: #f5f3ff;
      color: #7c3aed;
    }

    .line-icon svg {
      width: 30px;
      height: 30px;
    }

    .about-section {
      background: #ffffff;
    }

    .about-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .about-panel {
      border: 1px solid var(--line);
      border-radius: 30px;
      padding: 32px;
      min-height: 320px;
      background: linear-gradient(180deg, #ffffff, #f8fbff);
      box-shadow: 0 18px 55px rgba(15, 23, 42, 0.05);
    }

    .about-panel span {
      display: inline-block;
      color: var(--blue);
      font-weight: 850;
      font-size: 14px;
      margin-bottom: 18px;
    }

    .about-panel h3 {
      font-size: 30px;
      line-height: 1.08;
      letter-spacing: -1.5px;
      margin-bottom: 18px;
    }

    .about-panel p {
      color: #64748b;
      font-size: 18px;
    }

    .about-panel.featured {
      background: #06121f;
      color: white;
      border-color: #06121f;
    }

    .about-panel.featured span {
      color: #67e8f9;
    }

    .about-panel.featured p {
      color: #cbd5e1;
    }


    .about-section {
      background:
        radial-gradient(circle at 12% 20%, rgba(37, 99, 235, 0.08), transparent 28%),
        radial-gradient(circle at 90% 28%, rgba(6, 182, 212, 0.10), transparent 30%),
        #f3f7ff;
      border-top: 1px solid #e1eaf6;
      border-bottom: 1px solid #e1eaf6;
    }

    .about-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(300px, 540px));
      gap: 24px;
      justify-content: center;
      align-items: stretch;
      max-width: 1140px;
      margin: 0 auto;
    }

    .about-panel {
      border: 1px solid #dce7f5;
      border-radius: 32px;
      padding: 38px;
      min-height: 320px;
      background: rgba(255, 255, 255, 0.94);
      box-shadow: 0 24px 70px rgba(15, 23, 42, 0.06);
    }

    .about-panel span {
      display: inline-block;
      color: var(--blue);
      font-weight: 950;
      font-size: 18px;
      margin-bottom: 22px;
      letter-spacing: -0.2px;
    }

    .about-panel h3 {
      font-size: 34px;
      line-height: 1.06;
      letter-spacing: -1.8px;
      margin-bottom: 20px;
    }

    .about-panel p {
      color: #64748b;
      font-size: 19px;
    }

    .about-panel.featured {
      background: #06121f;
      color: white;
      border-color: #06121f;
    }

    .about-panel.featured span {
      color: #67e8f9;
    }

    .about-panel.featured p {
      color: #cbd5e1;
    }

    .plans-section {
      background: #ffffff;
    }

    .plans {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .plan-card {
      background: #ffffff;
      border: 1px solid #dce7f5;
      border-radius: 32px;
      padding: 32px;
      min-height: 420px;
      box-shadow: 0 18px 55px rgba(15, 23, 42, 0.05);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      overflow: hidden;
    }

    .plan-card:nth-child(1) {
      background: linear-gradient(180deg, #eff6ff, #ffffff);
    }

    .plan-card:nth-child(2) {
      background: linear-gradient(180deg, #ecfeff, #ffffff);
    }

    .plan-card:nth-child(3) {
      background: linear-gradient(180deg, #ecfdf5, #ffffff);
    }

    .plan-kicker {
      display: inline-flex;
      width: fit-content;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(255,255,255,.75);
      border: 1px solid #e2e8f0;
      color: #475569;
      font-size: 13px;
      font-weight: 850;
      margin-bottom: 20px;
    }

    .plan-card h3 {
      font-size: 34px;
      letter-spacing: -1.8px;
      margin-bottom: 12px;
    }

    .plan-card p {
      color: #475569;
      font-size: 18px;
      margin-bottom: 26px;
    }

    .plan-card ul {
      list-style: none;
      display: grid;
      gap: 13px;
      color: #334155;
      font-weight: 750;
      margin-bottom: 26px;
    }

    .plan-card li::before {
      content: "✓";
      color: var(--green);
      font-weight: 900;
      margin-right: 9px;
    }

    .plan-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: fit-content;
      min-height: 44px;
      padding: 0 18px;
      border-radius: 999px;
      background: var(--text);
      color: white;
      text-decoration: none;
      font-weight: 850;
    }

    @media (max-width: 980px) {
      nav {
        display: none;
      }

      .hero-grid,
      .solutions,
      .benefits,
      .about,
      .about-grid,
      .plans {
        grid-template-columns: 1fr;
      }

      .hero {
        padding-top: 62px;
      }

      h1 {
        letter-spacing: -3px;
      }

      .timeline-step {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 620px) {
      .metric-grid {
        grid-template-columns: 1fr;
      }
    }
  
    /* Fix: Solutions cards aligned in one row */
    .solutions {
      display: grid !important;
      grid-template-columns: repeat(3, 1fr) !important;
      gap: 22px !important;
    }

    .solution-card {
      min-height: 390px !important;
      padding: 30px !important;
    }

    @media (max-width: 980px) {
      .solutions {
        grid-template-columns: 1fr !important;
      }
    }

  
    .plans-section {
      background: #ffffff;
    }

    .plans {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .plan-card {
      background: #ffffff;
      border: 1px solid #dce7f5;
      border-radius: 32px;
      padding: 32px;
      min-height: 430px;
      box-shadow: 0 18px 55px rgba(15, 23, 42, 0.05);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      overflow: hidden;
    }

    .plan-card:nth-child(1) {
      background: linear-gradient(180deg, #eff6ff, #ffffff);
    }

    .plan-card:nth-child(2) {
      background: linear-gradient(180deg, #ecfeff, #ffffff);
    }

    .plan-card:nth-child(3) {
      background: linear-gradient(180deg, #ecfdf5, #ffffff);
    }

    .featured-plan {
      border-color: #bae6fd;
      box-shadow: 0 26px 75px rgba(6, 182, 212, 0.12);
    }

    .plan-kicker {
      display: inline-flex;
      width: fit-content;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(255,255,255,.75);
      border: 1px solid #e2e8f0;
      color: #475569;
      font-size: 13px;
      font-weight: 850;
      margin-bottom: 20px;
    }

    .plan-card h3 {
      font-size: 34px;
      letter-spacing: -1.8px;
      margin-bottom: 12px;
    }

    .price {
      display: flex;
      align-items: baseline;
      gap: 8px;
      margin-bottom: 22px;
    }

    .price span,
    .price small {
      color: #64748b;
      font-weight: 800;
      font-size: 14px;
    }

    .price strong {
      font-size: 42px;
      letter-spacing: -2px;
      color: var(--text);
    }

    .plan-card p {
      color: #475569;
      font-size: 18px;
      margin-bottom: 26px;
    }

    .plan-card ul {
      list-style: none;
      display: grid;
      gap: 13px;
      color: #334155;
      font-weight: 750;
    }

    .plan-card li::before {
      content: "✓";
      color: var(--green);
      font-weight: 900;
      margin-right: 9px;
    }

    .plans-note {
      text-align: center;
      color: #64748b;
      font-weight: 650;
      margin-top: 24px;
    }

    .site-footer {
      padding: 56px 7% 30px;
      background: #06121f;
      color: white;
      border-top: 0;
      display: block;
    }

    .footer-brand {
      max-width: 420px;
      margin-bottom: 42px;
    }

    .site-footer .logo {
      color: white;
      margin-bottom: 14px;
    }

    .site-footer .logo span {
      color: #60a5fa;
    }

    .footer-brand p {
      color: #cbd5e1;
      font-size: 18px;
    }

    .footer-links {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      padding-bottom: 40px;
      border-bottom: 1px solid rgba(255,255,255,.12);
    }

    .footer-links h4 {
      font-size: 15px;
      margin-bottom: 16px;
      color: #e2e8f0;
    }

    .footer-links a,
    .footer-links span {
      display: block;
      color: #94a3b8;
      text-decoration: none;
      margin-bottom: 10px;
      font-weight: 650;
    }

    .footer-links a:hover {
      color: white;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
      padding-top: 26px;
      color: #94a3b8;
      font-weight: 650;
    }

    @media (max-width: 980px) {
      .plans,
      .footer-links {
        grid-template-columns: 1fr;
      }
    }

  
    .solutions {
      display: grid !important;
      grid-template-columns: repeat(3, 1fr) !important;
      gap: 22px !important;
    }

    .solution-card {
      min-height: 560px !important;
      padding: 30px !important;
    }

    .solution-card h3 {
      font-size: 30px !important;
    }

    .core-outcomes {
      margin-top: 22px;
      padding-top: 18px;
      border-top: 1px solid #e6edf5;
    }

    .core-outcomes span {
      display: block;
      color: #64748b;
      font-size: 13px;
      font-weight: 900;
      margin-bottom: 12px;
      text-transform: uppercase;
      letter-spacing: .5px;
    }

    .core-outcomes ul {
      list-style: none;
      display: grid;
      gap: 9px;
      color: #334155;
      font-weight: 750;
    }

    .core-outcomes li::before {
      content: "✓";
      color: var(--green);
      font-weight: 900;
      margin-right: 8px;
    }

    .availability {
      margin-top: 22px;
      font-weight: 900;
      color: var(--text);
    }

    .solution-status {
      display: inline-block;
      color: var(--text);
      transition: opacity 0.25s ease, transform 0.25s ease, color 0.25s ease;
    }

    .solution-status.is-changing {
      opacity: 0.35;
      transform: translateY(-4px);
      color: var(--blue);
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .why-card {
      background: rgba(255, 255, 255, 0.72);
      border: 1px solid #e3edf8;
      border-radius: 28px;
      padding: 30px;
      min-height: 270px;
      text-align: center;
      box-shadow: 0 18px 55px rgba(15, 23, 42, 0.04);
    }

    .why-icon {
      width: 78px;
      height: 78px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      margin: 0 auto 22px;
      color: white;
    }

    .why-icon svg {
      width: 34px;
      height: 34px;
    }

    .blue-icon { background: #2563eb; }
    .cyan-icon { background: #06b6d4; }
    .green-icon { background: #10b981; }
    .dark-icon { background: #334155; }
    .purple-icon { background: #7c3aed; }

    .why-card h3 {
      font-size: 22px;
      letter-spacing: -0.8px;
      margin-bottom: 12px;
    }

    .why-card p {
      color: #475569;
      font-size: 16.5px;
      font-weight: 600;
    }

    @media (max-width: 980px) {
      .solutions,
      .why-grid {
        grid-template-columns: 1fr !important;
      }

      .solution-card {
        min-height: auto !important;
      }
    }

  
    /* Nivo logo */
    .brand-logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .nivo-mark {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: linear-gradient(135deg, #2563eb 0%, #06b6d4 52%, #10b981 100%);
      display: grid;
      place-items: center;
      box-shadow: 0 12px 30px rgba(37, 99, 235, 0.18);
      flex: 0 0 auto;
    }

    .nivo-mark span {
      color: white;
      font-size: 28px;
      font-weight: 850;
      line-height: 1;
      letter-spacing: -2px;
    }

    .brand-name {
      color: var(--text);
      font-size: 30px;
      font-weight: 850;
      letter-spacing: -1.4px;
    }

    .footer-mark {
      margin-bottom: 16px;
    }

    .site-footer .nivo-mark {
      width: 46px;
      height: 46px;
      box-shadow: none;
    }

    .site-footer .nivo-mark span {
      font-size: 29px;
    }

  
    .brand-logo-link {
      display: inline-flex;
      align-items: center;
      text-decoration: none;
      color: inherit;
    }

    .ongoing-step {
      background:
        radial-gradient(circle at 92% 18%, rgba(6, 182, 212, 0.10), transparent 28%),
        linear-gradient(180deg, #ffffff, #f8fbff);
    }