/* Hero */
    .hero {
      position: relative;
      overflow: hidden;
      padding: 88px 0 72px;
    }

    .hero .container.hero-grid {
      width: min(1400px, calc(100% - 40px));
    }

    .hero::before,
    .hero::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
    }

    .hero::before {
      width: 380px;
      height: 380px;
      top: -170px;
      right: -90px;
      background: rgba(53, 169, 54, 0.08);
    }

    .hero::after {
      width: 300px;
      height: 300px;
      bottom: -170px;
      left: -100px;
      background: rgba(8, 120, 201, 0.07);
    }

    .hero-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 0.68fr 1.32fr;
      align-items: center;
      gap: 40px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 9px 15px;
      border-radius: 999px;
      color: var(--blue-dark);
      background: linear-gradient(90deg, var(--blue-soft), var(--green-soft));
      border: 1px solid rgba(8, 120, 201, 0.11);
      font-size: var(--fs-sm);
      font-weight: 600;
      margin-bottom: 22px;
    }

    .eyebrow-dot {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 0 6px rgba(53, 169, 54, 0.11);
    }

    .hero-copy {
      max-width: 690px;
      color: var(--muted);
      font-size: var(--fs-lg);
      margin-bottom: 30px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 13px;
      margin-bottom: 32px;
    }

    .hero-points {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      color: var(--muted);
      font-size: var(--fs-sm);
      font-weight: 500;
    }

    .hero-points span::before {
      content: "✓";
      margin-right: 7px;
      color: var(--green);
      font-weight: 800;
    }

    .hero-visual {
      position: relative;
      display: grid;
      place-items: center;
      min-width: 0;
    }

    .visual-card {
      position: relative;
      width: min(100%, 820px);
      margin-inline: auto;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: var(--shadow-lg);
    }

    .visual-image {
      display: block;
      width: 100%;
      height: auto;
      max-width: 1567px;
    }

    /* About / Overview */
    .section-about {
      position: relative;
      overflow: hidden;
      padding-bottom: 130px;
      background:
        radial-gradient(circle at 10% 0%, rgba(8, 120, 201, 0.06), transparent 32%),
        radial-gradient(circle at 90% 100%, rgba(53, 169, 54, 0.05), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
      border-top: 1px solid rgba(8, 120, 201, 0.06);
      border-bottom: 1px solid rgba(53, 169, 54, 0.07);
      color: var(--text);
    }

    .section-about .section-head {
      max-width: 100%;
      margin-bottom: 56px;
    }

    .section-about .section-kicker {
      color: var(--blue-dark);
    }

    .section-about .section-kicker::before {
      background: linear-gradient(90deg, var(--blue), var(--green));
    }

    .section-about .section-head h2 {
      color: var(--text);
      font-size: clamp(1.85rem, 2.8vw, 2.95rem);
      line-height: 1.25;
    }

    .section-about .section-head h2 .cyan {
      color: var(--blue);
    }

    .section-about .section-head p {
      color: var(--muted);
      max-width: 760px;
      margin-inline: auto;
      line-height: 1.75;
    }

    .overview-flow {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 10px;
      position: relative;
      z-index: 1;
    }

    .overview-step {
      position: relative;
      text-align: center;
      padding: 0 6px;
    }

    .overview-step:not(:last-child)::after {
      content: "";
      position: absolute;
      top: 0;
      right: -5px;
      width: 0;
      height: 96px;
      border-left: 1px solid rgba(8, 120, 201, 0.18);
      pointer-events: none;
    }

    .overview-step-icon {
      width: 96px;
      height: 96px;
      margin: 0 auto 22px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      border: 2px solid rgba(255, 255, 255, 0.12);
      color: var(--white);
      box-shadow: 0 12px 28px rgba(12, 66, 104, 0.14);
    }

    .overview-step-icon svg {
      width: 58px;
      height: 58px;
      flex-shrink: 0;
    }

    .overview-step.is-teal .overview-step-icon {
      background: #0a7ea8;
      border-color: rgba(10, 126, 168, 0.35);
    }

    .overview-step.is-blue .overview-step-icon {
      background: var(--blue-dark);
      border-color: rgba(7, 59, 145, 0.35);
    }

    .overview-step.is-green .overview-step-icon {
      background: var(--green-dark);
      border-color: rgba(22, 138, 69, 0.35);
    }

    .overview-step.is-purple .overview-step-icon {
      background: var(--purple-dark);
      border-color: rgba(91, 69, 214, 0.35);
    }

    .overview-step.is-lime .overview-step-icon {
      background: #c47d08;
      border-color: rgba(196, 125, 8, 0.35);
    }

    .overview-step h3 {
      margin-bottom: 12px;
      font-size: var(--fs-lg);
      font-weight: 700;
      line-height: 1.45;
      color: var(--text);
    }

    .overview-num {
      display: block;
      margin-bottom: 6px;
      font-size: var(--fs-base);
      font-weight: 800;
      letter-spacing: 0.02em;
    }

    .overview-step.is-teal .overview-num { color: #0a7ea8; }
    .overview-step.is-blue .overview-num { color: var(--blue-dark); }
    .overview-step.is-green .overview-num { color: var(--green-dark); }
    .overview-step.is-purple .overview-num { color: var(--purple-dark); }
    .overview-step.is-lime .overview-num { color: #c47d08; }

    .overview-step p {
      color: var(--muted);
      font-size: var(--fs-md);
      line-height: 1.7;
    }

    .about-scene {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 110px;
      pointer-events: none;
      opacity: 0.22;
    }

    .about-scene svg {
      width: 100%;
      height: 100%;
    }

    /* Ecosystem */
    .ecosystem {
      display: grid;
      grid-template-columns: 0.92fr 1.08fr;
      align-items: center;
      gap: 48px;
    }

    .ecosystem-copy .section-kicker {
      padding: 8px 14px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--blue-soft), var(--green-soft));
      border: 1px solid rgba(8, 120, 201, 0.11);
      margin-bottom: 18px;
    }

    .ecosystem-copy .section-kicker::before {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 0 5px rgba(53, 169, 54, 0.11);
    }

    .ecosystem-copy h2 {
      font-size: clamp(2rem, 4vw, 3.1rem);
      line-height: 1.22;
      letter-spacing: -0.03em;
      margin-bottom: 16px;
    }

    .ecosystem-copy h2 .blue {
      color: var(--blue-dark);
    }

    .ecosystem-copy h2 .green {
      color: var(--green);
    }

    .ecosystem-copy p {
      color: var(--muted);
      margin-bottom: 24px;
      max-width: 560px;
    }

    .ecosystem-list {
      display: grid;
      gap: 14px;
    }

    .ecosystem-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 16px 18px;
      border-radius: 18px;
      background: var(--white);
      border: 1px solid rgba(8, 120, 201, 0.08);
      box-shadow: var(--shadow-sm);
    }

    .ecosystem-icon {
      flex: 0 0 46px;
      width: 46px;
      height: 46px;
      display: grid;
      place-items: center;
      border-radius: 14px;
      color: var(--white);
    }

    .ecosystem-icon.is-blue {
      background: linear-gradient(145deg, var(--blue-dark), var(--blue));
    }

    .ecosystem-icon.is-green {
      background: linear-gradient(145deg, var(--green-dark), var(--green));
    }

    .ecosystem-icon.is-orange {
      background: linear-gradient(145deg, #e08a12, var(--orange));
    }

    .ecosystem-icon svg {
      width: 22px;
      height: 22px;
    }

    .ecosystem-body {
      min-width: 0;
    }

    .ecosystem-title-row {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 6px;
    }

    .ecosystem-badge {
      flex: 0 0 28px;
      width: 28px;
      height: 28px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      color: #ffffff;
      font-size: var(--fs-2xs);
      font-weight: 700;
      line-height: 1;
      text-align: center;
    }

    .ecosystem-badge.is-blue {
      background: var(--blue);
    }

    .ecosystem-badge.is-green {
      background: var(--green);
    }

    .ecosystem-badge.is-orange {
      background: var(--orange);
    }

    .ecosystem-item strong {
      font-size: var(--fs-md);
      line-height: 1.4;
    }

    .ecosystem-body > span {
      display: block;
      color: var(--muted);
      font-size: var(--fs-xs);
      line-height: 1.55;
    }

    .ecosystem-panel {
      padding: 26px 24px 24px;
      border-radius: 28px;
      background:
        radial-gradient(circle at 18% 10%, rgba(255, 255, 255, 0.16), transparent 30%),
        linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 52%, var(--green) 100%);
      box-shadow: var(--shadow-lg);
      color: var(--white);
    }

    .ecosystem-panel h3 {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 18px;
      font-size: 1.18rem;
      font-weight: 700;
    }

    .ecosystem-panel h3 svg {
      width: 22px;
      height: 22px;
      flex: 0 0 22px;
      opacity: 0.95;
    }

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

    .module {
      min-height: 74px;
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 14px 14px 12px;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.14);
      backdrop-filter: blur(10px);
    }

    .module-icon {
      width: 36px;
      height: 36px;
      flex: 0 0 36px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.94);
      color: var(--blue);
      font-size: var(--fs-2xs);
      font-weight: 800;
    }

    .module-text {
      flex: 1;
      min-width: 0;
      font-size: var(--fs-xs);
      line-height: 1.45;
      font-weight: 500;
    }

    .module-graphic {
      flex: 0 0 28px;
      width: 28px;
      height: 28px;
      opacity: 0.38;
    }

    .module-graphic svg {
      width: 100%;
      height: 100%;
      display: block;
    }

    /* Audiences */
    .section-audiences {
      background:
        radial-gradient(circle at 14% 8%, rgba(8, 120, 201, 0.28), transparent 36%),
        radial-gradient(circle at 86% 92%, rgba(53, 169, 54, 0.22), transparent 34%),
        linear-gradient(135deg, #052a66 0%, #073b91 46%, #0b6b4f 100%);
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      color: #e8f1f8;
    }

    .section-audiences .section-head {
      max-width: 720px;
      margin-bottom: 48px;
    }

    .section-audiences .section-kicker {
      color: #8ec8ff;
    }

    .section-audiences .section-kicker::before {
      background: linear-gradient(90deg, #0878c9, #35a936);
    }

    .section-audiences .section-head h2 {
      color: var(--white);
    }

    .section-audiences .section-head p {
      color: rgba(232, 241, 248, 0.72);
    }

    .audience-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 24px;
    }

    .audience-card {
      position: relative;
      display: flex;
      flex-direction: column;
      padding: 28px 26px 26px;
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      overflow: hidden;
    }

    .audience-top {
      margin-bottom: 20px;
    }

    .audience-icon {
      position: relative;
      z-index: 1;
      width: 64px;
      height: 64px;
      display: grid;
      place-items: center;
      border-radius: 18px;
      color: var(--white);
    }

    .audience-card.is-blue .audience-icon {
      background: var(--blue);
    }

    .audience-card.is-green .audience-icon {
      background: var(--green);
    }

    .audience-card.is-orange .audience-icon {
      background: var(--orange);
    }

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

    .audience-index {
      position: absolute;
      top: 22px;
      right: 20px;
      font-size: 3.75rem;
      font-weight: 800;
      line-height: 1;
      letter-spacing: -0.04em;
      color: var(--white);
      opacity: 0.22;
      pointer-events: none;
      z-index: 0;
    }

    .audience-card h3 {
      margin-bottom: 12px;
      font-size: 1.18rem;
      font-weight: 700;
      line-height: 1.35;
      color: var(--white);
    }

    .audience-card p {
      color: rgba(232, 241, 248, 0.72);
      font-size: var(--fs-sm);
      line-height: 1.7;
    }

    .audience-card p + p {
      margin-top: 10px;
      margin-bottom: 22px;
      color: rgba(232, 241, 248, 0.58);
    }

    .audience-card p:first-of-type {
      margin-bottom: 0;
    }

    .audience-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: auto;
      padding-top: 18px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .audience-tags span {
      display: inline-flex;
      align-items: center;
      min-height: 32px;
      padding: 0 12px;
      border-radius: 999px;
      font-size: var(--fs-2xs);
      font-weight: 500;
      line-height: 1;
      color: rgba(255, 255, 255, 0.9);
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.14);
    }

    .audience-note {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-top: 36px;
      padding: 16px 22px;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.1);
      color: rgba(232, 241, 248, 0.88);
      font-size: var(--fs-md);
      font-weight: 500;
      text-align: center;
    }

    .audience-note-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--green);
      flex-shrink: 0;
    }

    /* Benefits */
    .section-benefits .section-head {
      max-width: 860px;
      margin-bottom: 52px;
    }

    .section-benefits .section-kicker::before {
      background: var(--green);
    }

    .section-benefits .section-kicker::after {
      content: "";
      width: 26px;
      height: 3px;
      border-radius: 999px;
      background: var(--blue);
    }

    .section-benefits .section-head h2 .green {
      color: var(--green);
    }

    .section-benefits .section-head p {
      max-width: 700px;
      margin-inline: auto;
      line-height: 1.75;
    }

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

    .benefit-card {
      position: relative;
      display: flex;
      flex-direction: column;
      min-height: 372px;
      padding: 24px 22px 0;
      border-radius: 22px;
      background: var(--white);
      border: 1px solid rgba(8, 120, 201, 0.07);
      box-shadow: 0 14px 36px rgba(12, 66, 104, 0.07);
      overflow: hidden;
    }

    .benefit-card::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 42%;
      pointer-events: none;
      z-index: 0;
    }

    .benefit-card.is-green::after {
      background: linear-gradient(180deg, transparent 0%, rgba(53, 169, 54, 0.05) 100%);
    }

    .benefit-card.is-blue::after {
      background: linear-gradient(180deg, transparent 0%, rgba(8, 120, 201, 0.05) 100%);
    }

    .benefit-card.is-orange::after {
      background: linear-gradient(180deg, transparent 0%, rgba(245, 166, 35, 0.06) 100%);
    }

    .benefit-card.is-purple::after {
      background: linear-gradient(180deg, transparent 0%, rgba(123, 97, 255, 0.06) 100%);
    }

    .benefit-top,
    .benefit-card h3,
    .benefit-card > p,
    .benefit-footer {
      position: relative;
      z-index: 1;
    }

    .benefit-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 20px;
    }

    .benefit-icon {
      width: 68px;
      height: 68px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      flex-shrink: 0;
    }

    .benefit-icon svg {
      width: 36px;
      height: 36px;
    }

    .benefit-num {
      flex-shrink: 0;
      width: 34px;
      height: 34px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: var(--white);
      font-size: var(--fs-2xs);
      font-weight: 700;
      line-height: 1;
      box-shadow: 0 8px 18px rgba(12, 66, 104, 0.14);
    }

    .benefit-card.is-green .benefit-icon {
      background: rgba(53, 169, 54, 0.1);
    }

    .benefit-card.is-green .benefit-num {
      background: linear-gradient(145deg, var(--green-dark), var(--green));
    }

    .benefit-card.is-blue .benefit-icon {
      background: rgba(8, 120, 201, 0.1);
    }

    .benefit-card.is-blue .benefit-num {
      background: linear-gradient(145deg, var(--blue-dark), var(--blue));
    }

    .benefit-card.is-orange .benefit-icon {
      background: rgba(245, 166, 35, 0.12);
    }

    .benefit-card.is-orange .benefit-num {
      background: linear-gradient(145deg, #d97a0a, var(--orange));
    }

    .benefit-card.is-purple .benefit-icon {
      background: rgba(123, 97, 255, 0.1);
    }

    .benefit-card.is-purple .benefit-num {
      background: linear-gradient(145deg, var(--purple-dark), var(--purple));
    }

    .benefit-card h3 {
      margin-bottom: 10px;
      font-size: var(--fs-base);
      font-weight: 700;
      line-height: 1.45;
      color: var(--text);
    }

    .benefit-card > p {
      color: var(--muted);
      font-size: var(--fs-xs);
      line-height: 1.68;
    }

    .benefit-footer {
      position: relative;
      margin-top: auto;
      min-height: 112px;
    }

    .benefit-dots {
      position: absolute;
      right: 12px;
      bottom: 16px;
      width: 34px;
      height: 44px;
      background-image: radial-gradient(circle, rgba(96, 116, 134, 0.22) 1.5px, transparent 1.6px);
      background-size: 8px 11px;
      opacity: 0.55;
      pointer-events: none;
    }

    .benefit-art {
      position: absolute;
      left: 50%;
      bottom: 8px;
      transform: translateX(-58%);
      width: 148px;
      height: 88px;
      pointer-events: none;
    }

    .benefit-art svg {
      position: absolute;
    }

    /* CTA */
    .cta {
      padding: 36px 0 90px;
    }

    .cta-box {
      position: relative;
      overflow: hidden;
      padding: 54px;
      border-radius: 30px;
      color: var(--white);
      text-align: center;
      background:
        radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.15), transparent 30%),
        radial-gradient(circle at 88% 80%, rgba(245, 166, 35, 0.2), transparent 28%),
        linear-gradient(135deg, var(--blue-dark), var(--blue) 50%, var(--green));
      box-shadow: var(--shadow-lg);
    }

    .cta-box h2 {
      font-size: clamp(2rem, 4vw, 3.2rem);
      line-height: 1.25;
      margin-bottom: 14px;
    }

    .cta-box p,
    .cta-box .section-lead {
      max-width: 760px;
      margin: 0 auto 25px;
      color: rgba(255, 255, 255, 0.82);
    }

    .cta-box .section-lead a { color: var(--white); }

    .cta-box .button {
      color: var(--blue-dark);
      background: var(--white);
    }

    .cta-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 13px;
      justify-content: center;
    }

    .cta-box .button-secondary,
    .cta-box .cta-phone {
      color: var(--white);
      background: transparent;
      border: 2px solid rgba(255, 255, 255, 0.75);
      box-shadow: none;
    }

    .cta-box .button-secondary:hover,
    .cta-box .cta-phone:hover {
      background: rgba(255, 255, 255, 0.12);
    }

/* ==========================================================================
   CMS custom section background images
   ========================================================================== */
.has-section-bg {
  position: relative;
  isolation: isolate;
}

.section-bg-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--section-bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
}

.section-bg-layer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--section-bg-overlay, rgba(255, 255, 255, 0.82));
}

.has-section-bg > .container,
.has-section-bg > .hero-grid,
.hero.has-section-bg .hero-grid {
  position: relative;
  z-index: 1;
}

.hero.has-section-bg::before,
.hero.has-section-bg::after {
  display: none;
}

.section-audiences.has-section-bg {
  --section-bg-overlay: rgba(7, 35, 70, 0.86);
}

.section-about.has-section-bg {
  --section-bg-overlay: rgba(255, 255, 255, 0.84);
}

.section-benefits.has-section-bg,
.section-posts.has-section-bg,
.section-pricing-preview.has-section-bg,
.section-ecosystem.has-section-bg {
  --section-bg-overlay: rgba(255, 255, 255, 0.88);
}

.cta-box.has-section-bg {
  position: relative;
  overflow: hidden;
  --section-bg-overlay: rgba(7, 59, 145, 0.78);
}

.cta-box.has-section-bg > *:not(.section-bg-layer) {
  position: relative;
  z-index: 1;
}
