:root {
      --ink: #0b1433;
      --ink-2: #111c42;
      --panel: #17234f;
      --paper: #f7f8fc;
      --paper-2: #eef2f8;
      --line: #d9e0ee;
      --text: #111a36;
      --muted: #5c6784;
      --white: #ffffff;
      --violet: #6d3ff3;
      --violet-2: #8c67ff;
      --cyan: #20c7d8;
      --green: #50c878;
      --gold: #d7a942;
      --shadow: 0 18px 48px rgba(11, 20, 51, 0.14);
    }

    *, *::before, *::after {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: Inter, Arial, sans-serif;
      color: var(--text);
      background: var(--paper);
      overflow-x: hidden;
    }

    a {
      color: inherit;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .svg-sprite {
      position: absolute;
      width: 0;
      height: 0;
      overflow: hidden;
    }

    .site-nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 50;
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 56px;
      background: rgba(11, 20, 51, 0.92);
      border-bottom: 1px solid rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(18px);
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 14px;
      text-decoration: none;
      color: var(--white);
      font-weight: 800;
    }

    .brand img {
      width: 156px;
      height: auto;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .nav-links a {
      color: rgba(255, 255, 255, 0.76);
      text-decoration: none;
      font-size: 14px;
      font-weight: 600;
    }

    .nav-links a:hover {
      color: var(--white);
    }

    .nav-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 40px;
      padding: 0 18px;
      border-radius: 8px;
      background: var(--white);
      color: var(--ink) !important;
      box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
    }

    .hero {
      position: relative;
      min-height: 760px;
      display: grid;
      align-items: center;
      padding: 128px 56px 72px;
      color: var(--white);
      overflow: hidden;
      background: #08102a;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        linear-gradient(90deg, rgba(8, 16, 42, 0.97) 0%, rgba(8, 16, 42, 0.9) 34%, rgba(8, 16, 42, 0.42) 68%, rgba(8, 16, 42, 0.18) 100%),
        linear-gradient(180deg, rgba(8, 16, 42, 0.42) 0%, rgba(8, 16, 42, 0.08) 52%, rgba(8, 16, 42, 0.62) 100%);
      pointer-events: none;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 72px 0 auto;
      z-index: 3;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(32, 199, 216, 0.55), rgba(109, 63, 243, 0.7), transparent);
      pointer-events: none;
    }

    .hero-slider {
      position: absolute;
      inset: 0;
      z-index: 0;
      background: var(--ink);
    }

    .hero-slide {
      position: absolute;
      inset: 0;
      margin: 0;
      opacity: 0;
      transform: scale(1.03);
      transition: opacity 0.9s ease, transform 7s ease;
    }

    .hero-slide.is-active {
      opacity: 1;
      transform: scale(1);
    }

    .hero-slide picture,
    .hero-slide img {
      display: block;
      width: 100%;
      height: 100%;
    }

    .hero-slide img {
      object-fit: cover;
      object-position: center;
    }

    .hero-inner {
      position: relative;
      z-index: 2;
      max-width: 1180px;
      width: 100%;
      margin: 0 auto;
    }

    .hero-logo {
      width: 430px;
      margin-bottom: 34px;
      filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.28));
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      min-height: 28px;
      gap: 10px;
      color: #cbd6ff;
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0;
    }

    .eyebrow::before {
      content: "";
      width: 28px;
      height: 2px;
      background: var(--cyan);
    }

    h1 {
      max-width: 760px;
      margin: 18px 0 24px;
      font-size: 66px;
      line-height: 1.02;
      font-weight: 900;
      letter-spacing: 0;
    }

    .hero-copy {
      max-width: 690px;
      margin: 0 0 34px;
      color: rgba(255, 255, 255, 0.78);
      font-size: 19px;
      line-height: 1.68;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 22px;
    }

    .hero-dots {
      display: flex;
      gap: 10px;
      align-items: center;
      margin-bottom: 40px;
    }

    .hero-dot {
      width: 42px;
      height: 6px;
      padding: 0;
      border: 0;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.28);
      cursor: pointer;
      transition: width 0.2s ease, background 0.2s ease;
    }

    .hero-dot.is-active {
      width: 68px;
      background: var(--cyan);
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 50px;
      padding: 0 22px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 800;
      font-size: 15px;
      transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
    }

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

    .button-primary {
      color: var(--ink);
      background: var(--white);
      box-shadow: 0 20px 46px rgba(0, 0, 0, 0.2);
    }

    .button-secondary {
      color: var(--white);
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.22);
    }

    .proof-strip {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      max-width: 980px;
      border-top: 1px solid rgba(255, 255, 255, 0.16);
      border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    }

    .proof {
      min-height: 94px;
      padding: 18px 22px;
      border-right: 1px solid rgba(255, 255, 255, 0.16);
    }

    .proof:last-child {
      border-right: 0;
    }

    .proof strong {
      display: block;
      margin-bottom: 5px;
      font-size: 25px;
      font-weight: 900;
    }

    .proof span {
      display: block;
      color: rgba(255, 255, 255, 0.68);
      font-size: 13px;
      line-height: 1.45;
    }

    section {
      padding: 92px 56px;
    }

    .wrap {
      max-width: 1180px;
      margin: 0 auto;
    }

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

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

    .section-head h2 {
      max-width: 980px;
    }

    .section-head p {
      max-width: 940px;
    }

    .section-head.center h2,
    .section-head.center p {
      margin-left: auto;
      margin-right: auto;
    }

    h2 {
      margin: 12px 0 16px;
      font-size: 42px;
      line-height: 1.12;
      font-weight: 900;
      letter-spacing: 0;
      color: var(--ink);
    }

    .section-head p,
    .lead {
      margin: 0;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.72;
    }

    .highlight {
      color: var(--violet);
    }

    .custom-grid {
      display: grid;
      grid-template-columns: 1.02fr 1fr;
      gap: 28px;
      align-items: stretch;
    }

    .statement {
      min-height: 500px;
      padding: 38px;
      border-radius: 8px;
      color: var(--white);
      background: linear-gradient(135deg, var(--ink), var(--panel));
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    .statement::after {
      content: "";
      position: absolute;
      right: -76px;
      bottom: -76px;
      width: 220px;
      height: 220px;
      transform: rotate(45deg);
      background: rgba(32, 199, 216, 0.18);
    }

    .statement h3 {
      position: relative;
      z-index: 1;
      max-width: 560px;
      margin: 0 0 18px;
      font-size: 32px;
      line-height: 1.16;
    }

    .statement p {
      position: relative;
      z-index: 1;
      max-width: 620px;
      margin: 0 0 22px;
      color: rgba(255, 255, 255, 0.78);
      font-size: 16px;
      line-height: 1.64;
    }

    .statement-photo {
      position: relative;
      z-index: 1;
      margin: auto 0 0;
      overflow: hidden;
      border-radius: 8px;
      border: 1px solid rgba(255, 255, 255, 0.14);
      box-shadow: 0 20px 38px rgba(0, 0, 0, 0.28);
    }

    .statement-photo img {
      width: 100%;
      aspect-ratio: 16 / 9;
      object-fit: cover;
      object-position: center;
    }

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

    .signal {
      display: grid;
      grid-template-columns: 70px 1fr;
      gap: 18px;
      align-items: start;
      padding: 20px;
      border-radius: 8px;
      background: var(--white);
      border: 1px solid var(--line);
      box-shadow: 0 10px 28px rgba(11, 20, 51, 0.06);
    }

    .signal-media {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
    }

    .signal-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: auto;
      height: auto;
      border-radius: 8px;
      color: var(--cyan);
    }

    .signal-icon svg {
      width: 34px;
      height: 34px;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.9;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .signal-mark {
      display: block;
      color: var(--white);
      color: var(--ink);
      font-weight: 900;
      font-size: 28px;
      line-height: 0.95;
    }

    .signal:nth-child(2) .signal-icon {
      color: var(--violet);
    }

    .signal:nth-child(2) .signal-mark {
      color: var(--violet);
    }

    .signal:nth-child(3) .signal-icon {
      color: #0e8491;
    }

    .signal:nth-child(3) .signal-mark {
      color: #0e8491;
    }

    .signal:nth-child(4) .signal-icon {
      color: #8a6b18;
    }

    .signal:nth-child(4) .signal-mark {
      color: #8a6b18;
    }

    .signal h3 {
      margin: 0 0 8px;
      color: var(--ink);
      font-size: 17px;
    }

    .signal p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.58;
    }

    .band {
      background: var(--ink);
      color: var(--white);
    }

    .band h2 {
      color: var(--white);
    }

    .band .section-head p {
      color: rgba(255, 255, 255, 0.68);
    }

    .pain-grid,
    .module-grid,
    .trust-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
    }

    .pain,
    .module,
    .trust {
      padding: 24px;
      border-radius: 8px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.055);
    }

    .pain {
      position: relative;
      overflow: hidden;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
    }

    .pain::before {
      content: "";
      position: absolute;
      inset: 0 auto 0 0;
      width: 3px;
      background: linear-gradient(180deg, var(--cyan), rgba(109, 63, 243, 0.78));
    }

    .pain-top,
    .module-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 22px;
    }

    .pain .num,
    .module .num,
    .trust .num {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 38px;
      height: 28px;
      margin-bottom: 0;
      color: var(--white);
      background: rgba(109, 63, 243, 0.42);
      border-radius: 8px;
      font-size: 12px;
      font-weight: 900;
    }

    .trust .num {
      margin-bottom: 14px;
    }

    .pain-icon,
    .module-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: auto;
      height: auto;
      flex: 0 0 auto;
      border-radius: 8px;
    }

    .pain-icon {
      color: var(--cyan);
    }

    .pain-icon svg,
    .module-icon svg {
      width: 38px;
      height: 38px;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.85;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .pain h3,
    .module h3,
    .trust h3 {
      margin: 0 0 10px;
      font-size: 18px;
      line-height: 1.25;
      color: var(--white);
    }

    .pain p,
    .module p,
    .trust p {
      margin: 0;
      color: rgba(255, 255, 255, 0.66);
      font-size: 14px;
      line-height: 1.62;
    }

    .roi-layout {
      display: grid;
      grid-template-columns: 0.92fr 1.08fr;
      gap: 28px;
      align-items: stretch;
    }

    .roi-card {
      padding: 34px;
      border-radius: 8px;
      color: var(--white);
      background: var(--ink);
      box-shadow: var(--shadow);
    }

    .roi-card h3 {
      margin: 0 0 20px;
      font-size: 30px;
      line-height: 1.18;
    }

    .roi-card p {
      margin: 0;
      color: rgba(255, 255, 255, 0.72);
      line-height: 1.7;
    }

    .equation {
      display: grid;
      gap: 12px;
      padding: 30px;
      border-radius: 8px;
      background: var(--white);
      border: 1px solid var(--line);
      box-shadow: 0 12px 30px rgba(11, 20, 51, 0.06);
    }

    .eq-row {
      display: grid;
      grid-template-columns: 34px 1fr;
      align-items: center;
      gap: 14px;
      min-height: 48px;
      color: var(--ink);
      font-weight: 800;
    }

    .eq-row span {
      display: grid;
      place-items: center;
      width: 30px;
      height: 30px;
      border-radius: 8px;
      color: var(--white);
      background: var(--violet);
    }

    .eq-row.minus {
      border-top: 1px solid var(--line);
      padding-top: 16px;
      margin-top: 4px;
    }

    .eq-row.minus span {
      background: var(--ink);
    }

    .module-grid {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .module {
      position: relative;
      color: var(--text);
      background: var(--white);
      border: 1px solid var(--line);
      box-shadow: 0 10px 26px rgba(11, 20, 51, 0.04);
    }

    .module-icon {
      color: var(--violet);
    }

    .module .num {
      color: var(--violet);
      background: transparent;
      min-width: auto;
      height: auto;
      padding: 0;
      font-size: 13px;
    }

    .module:nth-child(2n) .module-icon {
      color: #0f8d9a;
    }

    .module:nth-child(3n) .module-icon {
      color: var(--ink);
    }

    .module h3 {
      color: var(--ink);
    }

    .module p {
      color: var(--muted);
    }

    .comparison-wrap {
      overflow-x: auto;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: var(--white);
      box-shadow: var(--shadow);
    }

    table {
      width: 100%;
      border-collapse: collapse;
      min-width: 760px;
    }

    th,
    td {
      padding: 16px 18px;
      text-align: left;
      border-bottom: 1px solid var(--line);
      font-size: 14px;
    }

    th {
      color: var(--ink);
      background: var(--paper-2);
      font-size: 13px;
      text-transform: uppercase;
      font-weight: 900;
    }

    td:nth-child(2) {
      color: var(--muted);
    }

    td:first-child {
      color: var(--ink);
      font-weight: 700;
    }

    td:nth-child(3) {
      color: var(--ink);
      font-weight: 800;
      background: #f6f3ff;
    }

    .table-status {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      line-height: 1.35;
    }

    .table-status svg {
      width: 20px;
      height: 20px;
      flex: 0 0 20px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2.2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .status-ok {
      color: var(--ink);
    }

    .status-ok svg {
      color: #16a36a;
      stroke-width: 2.4;
    }

    .status-warning {
      color: #8a6511;
      font-weight: 600;
    }

    .status-danger {
      color: #bc3348;
      font-weight: 700;
    }

    tr:last-child td {
      border-bottom: 0;
    }

    .pricing {
      background: var(--paper-2);
    }

    .pricing .section-head {
      margin-bottom: 30px;
    }

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

    .pricing-confidence {
      position: relative;
      display: grid;
      grid-template-columns: 44px 1fr;
      align-items: center;
      gap: 14px;
      margin: 0 0 22px;
      padding: 18px 22px 18px 20px;
      border-radius: 8px;
      color: var(--ink);
      background: var(--white);
      border: 1px solid rgba(109, 63, 243, 0.28);
      box-shadow: 0 16px 36px rgba(11, 20, 51, 0.08);
      font-size: 18px;
      font-weight: 850;
      line-height: 1.45;
    }

    .pricing-confidence::before {
      content: "";
      position: absolute;
      inset: 0 auto 0 0;
      width: 4px;
      border-radius: 8px 0 0 8px;
      background: linear-gradient(180deg, var(--cyan), var(--violet));
    }

    .pricing-confidence-icon {
      display: inline-flex;
      color: var(--violet);
    }

    .pricing-confidence-icon svg {
      width: 34px;
      height: 34px;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.9;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .price-card {
      display: flex;
      flex-direction: column;
      min-height: 360px;
      padding: 24px;
      border-radius: 8px;
      background: var(--white);
      border: 1px solid var(--line);
      box-shadow: 0 10px 28px rgba(11, 20, 51, 0.06);
    }

    .price-card.featured {
      color: var(--white);
      background: var(--ink);
      border-color: var(--violet);
      box-shadow: var(--shadow);
    }

    .price-label {
      min-height: 26px;
      color: var(--violet);
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .featured .price-label {
      color: #b9a7ff;
    }

    .price-card h3 {
      margin: 10px 0 20px;
      font-size: 20px;
      color: inherit;
    }

    .price-main {
      margin-bottom: 18px;
      font-size: 28px;
      font-weight: 900;
    }

    .price-card ul {
      list-style: none;
      display: grid;
      gap: 10px;
      margin: 0;
      padding: 18px 0 0;
      border-top: 1px solid var(--line);
    }

    .featured ul {
      border-color: rgba(255, 255, 255, 0.16);
    }

    .price-card li {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.45;
    }

    .featured li {
      color: rgba(255, 255, 255, 0.74);
    }

    .pricing-note {
      width: 100%;
      max-width: none;
      margin: 22px 0 0;
      padding: 22px;
      border-radius: 8px;
      color: var(--ink);
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(246, 243, 255, 0.92));
      border: 1px solid var(--line);
      box-shadow: 0 14px 34px rgba(11, 20, 51, 0.08);
    }

    .pricing-note-intro {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding-bottom: 18px;
      border-bottom: 1px solid var(--line);
    }

    .pricing-note-intro span {
      color: var(--violet);
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .pricing-note-intro strong {
      color: var(--ink);
      font-size: clamp(20px, 2.4vw, 30px);
      line-height: 1.12;
      text-align: right;
    }

    .pricing-note-steps {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
      padding-top: 18px;
    }

    .pricing-note-steps article {
      display: grid;
      grid-template-columns: auto minmax(0, 1fr);
      gap: 8px 12px;
      align-items: start;
    }

    .pricing-note-steps span {
      grid-row: span 2;
      color: var(--cyan);
      font-size: 28px;
      font-weight: 900;
      line-height: 1;
    }

    .pricing-note-steps h4 {
      margin: 0;
      color: var(--ink);
      font-size: 16px;
    }

    .pricing-note-steps p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.55;
    }

    .experience {
      background:
        radial-gradient(circle at 85% 18%, rgba(32, 199, 216, 0.16), transparent 30%),
        linear-gradient(135deg, #ffffff 0%, #eef2f8 100%);
    }

    .experience-card {
      display: grid;
      grid-template-columns: 340px minmax(0, 1fr);
      gap: 36px;
      align-items: center;
      padding: 40px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.86);
      box-shadow: var(--shadow);
    }

    .experience-person {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
      align-items: start;
    }

    .experience-photo-bubble {
      position: relative;
      width: 176px;
      aspect-ratio: 1;
      padding: 8px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--cyan), var(--violet));
      box-shadow: 0 22px 44px rgba(11, 20, 51, 0.2);
    }

    .experience-photo-bubble::after {
      content: "";
      position: absolute;
      right: -10px;
      bottom: 18px;
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background: var(--gold);
      border: 8px solid var(--white);
    }

    .experience-photo-bubble img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      border-radius: 50%;
      border: 4px solid var(--white);
    }

    .experience h2 {
      max-width: 340px;
      margin: 12px 0 16px;
      color: var(--ink);
      font-size: clamp(25px, 2.25vw, 32px);
      line-height: 1.12;
    }

    .experience-role {
      margin: 0;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.55;
    }

    .experience-role strong {
      color: var(--ink);
    }

    .experience-content {
      padding-left: 36px;
      border-left: 1px solid var(--line);
    }

    .experience-kicker {
      margin: 0 0 14px;
      color: var(--violet);
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .experience blockquote {
      margin: 0;
      color: var(--ink);
      font-size: clamp(17px, 1.55vw, 21px);
      font-weight: 800;
      line-height: 1.42;
    }

    .experience-points {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 26px;
    }

    .experience-points span {
      padding: 9px 12px;
      border: 1px solid var(--line);
      border-radius: 8px;
      color: var(--ink);
      background: var(--white);
      font-size: 13px;
      font-weight: 800;
    }

    .trust-grid {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .process {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 0;
      border: 1px solid var(--line);
      border-radius: 8px;
      overflow: hidden;
      background: var(--white);
      box-shadow: 0 12px 30px rgba(11, 20, 51, 0.06);
    }

    .process-step {
      min-height: 210px;
      padding: 24px;
      border-right: 1px solid var(--line);
    }

    .process-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 28px;
    }

    .process-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: auto;
      height: auto;
      flex: 0 0 auto;
      color: var(--cyan);
    }

    .process-icon svg {
      width: 38px;
      height: 38px;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.85;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .process-step:nth-child(2) .process-icon,
    .process-step:nth-child(4) .process-icon {
      color: var(--violet);
    }

    .process-step:nth-child(3) .process-icon {
      color: #0e8491;
    }

    .process-step:nth-child(5) .process-icon {
      color: #8a6b18;
    }

    .process-step:last-child {
      border-right: 0;
    }

    .process-step strong {
      display: block;
      color: var(--violet);
      font-size: 28px;
    }

    .process-step h3 {
      margin: 0 0 10px;
      color: var(--ink);
      font-size: 17px;
    }

    .process-step p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.56;
    }

    .cta {
      color: var(--white);
      background:
        linear-gradient(135deg, rgba(11, 20, 51, 0.97), rgba(16, 28, 68, 0.96)),
        url("../img/courtexia-dark-logo-bg.png") center / cover no-repeat;
    }

    .cta .wrap {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 42px;
      align-items: center;
    }

    .cta h2 {
      color: var(--white);
      margin-top: 0;
    }

    .cta p {
      color: rgba(255, 255, 255, 0.72);
      max-width: 700px;
      line-height: 1.7;
    }

    .cta-actions {
      display: grid;
      gap: 12px;
      min-width: 260px;
    }

    footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 34px 56px;
      color: rgba(255, 255, 255, 0.68);
      background: #08102a;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      font-size: 13px;
    }

    footer img {
      width: 132px;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 14px;
    }

    .footer-links button,
    .footer-links a {
      padding: 0;
      border: 0;
      color: rgba(255, 255, 255, 0.74);
      background: transparent;
      font: inherit;
      text-decoration: none;
      cursor: pointer;
    }

    .footer-links button:hover,
    .footer-links a:hover {
      color: var(--white);
      text-decoration: underline;
    }

    .cookie-banner {
      position: fixed;
      right: 24px;
      bottom: 24px;
      z-index: 80;
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 22px;
      align-items: center;
      width: min(860px, calc(100vw - 48px));
      padding: 18px;
      border: 1px solid var(--line);
      border-radius: 8px;
      color: var(--ink);
      background: rgba(255, 255, 255, 0.96);
      box-shadow: 0 18px 48px rgba(11, 20, 51, 0.2);
    }

    .cookie-banner[hidden] {
      display: none;
    }

    .cookie-banner strong {
      display: block;
      margin-bottom: 4px;
      font-size: 15px;
      font-weight: 900;
    }

    .cookie-banner p {
      margin: 0;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.55;
    }

    .cookie-actions {
      display: flex;
      gap: 10px;
    }

    .cookie-actions .button {
      min-width: 0;
      padding: 11px 14px;
      white-space: nowrap;
    }

    .legal-modal {
      color: var(--text);
      text-align: left;
      font-family: Inter, Arial, sans-serif;
      font-size: 14px;
      line-height: 1.58;
    }

    .legal-modal p {
      margin: 0 0 14px;
    }

    .legal-modal a {
      color: var(--violet);
      font-weight: 800;
    }

    .courtexia-swal {
      border-radius: 8px;
    }

    .audit-swal {
      padding: 0;
    }

    .audit-swal .swal2-title {
      padding: 30px 34px 0;
      color: var(--ink);
      font-size: 30px;
      text-align: left;
    }

    .audit-swal .swal2-html-container {
      margin: 20px 34px 0;
      overflow: visible;
    }

    .audit-swal .swal2-actions {
      justify-content: flex-end;
      padding: 8px 34px 28px;
    }

    .audit-form {
      color: var(--text);
      text-align: left;
      font-family: Inter, Arial, sans-serif;
    }

    .audit-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }

    .audit-form label,
    .audit-message,
    .audit-consent {
      display: grid;
      gap: 7px;
    }

    .audit-form label span,
    .audit-checks legend {
      color: var(--ink);
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .audit-form input,
    .audit-form select,
    .audit-form textarea {
      width: 100%;
      min-height: 46px;
      border: 1px solid var(--line);
      border-radius: 8px;
      padding: 12px 13px;
      color: var(--ink);
      background: #f8faff;
      font: 600 14px/1.35 Inter, Arial, sans-serif;
      outline: 0;
      transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
    }

    .audit-form textarea {
      resize: vertical;
      min-height: 110px;
    }

    .audit-form input:focus,
    .audit-form select:focus,
    .audit-form textarea:focus {
      border-color: var(--violet);
      background: var(--white);
      box-shadow: 0 0 0 4px rgba(109, 63, 243, 0.12);
    }

    .audit-wide,
    .audit-message,
    .audit-checks,
    .audit-consent {
      grid-column: 1 / -1;
    }

    .audit-checks {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px 14px;
      margin: 18px 0 0;
      padding: 16px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: linear-gradient(135deg, rgba(109, 63, 243, 0.05), rgba(32, 199, 216, 0.05));
    }

    .audit-checks legend {
      padding: 0 8px;
    }

    .audit-checks label,
    .audit-consent {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      color: var(--muted);
      font-size: 14px;
      font-weight: 700;
      line-height: 1.35;
    }

    .audit-checks input,
    .audit-consent input {
      width: 18px;
      min-width: 18px;
      height: 18px;
      min-height: 18px;
      margin: 1px 0 0;
      accent-color: var(--violet);
    }

    .audit-message {
      margin-top: 16px;
    }

    .audit-consent {
      margin-top: 14px;
      padding: 12px 14px;
      border-radius: 8px;
      background: var(--paper-2);
    }

    .audit-consent span {
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
      line-height: 1.45;
      text-transform: none;
    }

    .audit-hp {
      position: absolute;
      left: -9999px;
      width: 1px;
      height: 1px;
      min-height: 1px;
      opacity: 0;
    }

    .fade-in,
    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }


    @media (max-width: 1100px) {
      .site-nav {
        padding: 0 28px;
      }

      .nav-links {
        gap: 18px;
      }

      .hero,
      section {
        padding-left: 28px;
        padding-right: 28px;
      }

      h1 {
        font-size: 54px;
      }

      .proof-strip,
      .pricing-grid,
      .module-grid,
      .trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .pain-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .custom-grid,
      .roi-layout,
      .experience-card,
      .cta .wrap {
        grid-template-columns: 1fr;
      }

      .experience-content {
        padding-left: 0;
        border-left: 0;
        border-top: 1px solid var(--line);
        padding-top: 30px;
      }

      .process {
        grid-template-columns: 1fr;
      }

      .process-step {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid var(--line);
      }

      .process-step:last-child {
        border-bottom: 0;
      }

      .process-top {
        margin-bottom: 22px;
      }
    }

    @media (max-width: 760px) {
      main,
      section,
      .hero,
      .hero-inner,
      .wrap,
      .custom-grid,
      .roi-layout,
      .signal-list,
      .statement,
      .signal {
        width: 100%;
        max-width: 100%;
        min-width: 0;
      }

      .site-nav {
        height: 64px;
        padding: 0 18px;
      }

      .brand img {
        width: 132px;
      }

      .nav-links {
        display: none;
      }

      .hero {
        min-height: 720px;
        padding: 98px 20px 50px;
      }

      .hero-slide img {
        object-position: center top;
      }

      .hero-logo {
        width: 300px !important;
        max-width: 300px !important;
        margin-bottom: 28px;
      }

      .hero-inner > *,
      .section-head,
      .hero-copy,
      .proof-strip,
      .statement,
      .signal-list,
      .experience-card,
      .roi-card,
      .equation {
        width: calc(100vw - 40px);
        max-width: calc(100vw - 40px);
      }

      .eyebrow {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        max-width: 100%;
        font-size: 11px;
        line-height: 1.35;
      }

      .eyebrow::before {
        flex: 0 0 28px;
      }

      h1 {
        font-size: 33px;
        width: calc(100vw - 40px);
        max-width: calc(100vw - 40px);
        overflow-wrap: anywhere;
      }

      .hero::before {
        background:
          linear-gradient(90deg, rgba(8, 16, 42, 0.9) 0%, rgba(8, 16, 42, 0.74) 58%, rgba(8, 16, 42, 0.48) 100%),
          linear-gradient(180deg, rgba(8, 16, 42, 0.36) 0%, rgba(8, 16, 42, 0.14) 52%, rgba(8, 16, 42, 0.66) 100%);
      }

      h2 {
        font-size: 31px;
        width: calc(100vw - 40px);
        max-width: calc(100vw - 40px);
        overflow-wrap: anywhere;
      }

      section {
        padding: 68px 20px;
      }

      .proof-strip,
      .pain-grid,
      .module-grid,
      .trust-grid,
      .pricing-grid {
        grid-template-columns: 1fr;
      }

      .experience-card {
        padding: 28px;
      }

      .experience-person {
        grid-template-columns: 1fr;
        gap: 22px;
      }

      .experience-photo-bubble {
        width: 158px;
      }

      .experience blockquote {
        font-size: 20px;
      }

      .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
      }

      .button {
        width: 100%;
        min-width: 0;
        padding-left: 14px;
        padding-right: 14px;
        text-align: center;
        white-space: normal;
      }

      .hero-copy,
      .section-head p,
      .lead,
      .signal p,
      .statement p,
      .statement h3,
      .signal h3 {
        overflow-wrap: anywhere;
      }

      .proof {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.16);
      }

      .proof:last-child {
        border-bottom: 0;
      }

      .statement,
      .roi-card,
      .equation {
        padding: 26px;
      }

      .statement h3 {
        font-size: 28px;
      }

      footer {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px 20px;
      }

      .footer-links {
        justify-content: flex-start;
      }

      .cookie-banner {
        right: 14px;
        bottom: 14px;
        grid-template-columns: 1fr;
        width: calc(100vw - 28px);
      }

      .cookie-actions {
        display: grid;
        grid-template-columns: 1fr;
      }

      .audit-swal .swal2-title {
        padding: 24px 20px 0;
        font-size: 24px;
      }

      .audit-swal .swal2-html-container {
        margin: 18px 20px 0;
      }

      .audit-swal .swal2-actions {
        padding: 8px 20px 24px;
      }

      .audit-grid,
      .audit-checks {
        grid-template-columns: 1fr;
      }

      .pricing-note-intro {
        align-items: flex-start;
        flex-direction: column;
      }

      .pricing-note-intro strong {
        text-align: left;
      }

      .pricing-note-steps {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 600px) {
      .hero-inner > *,
      .section-head,
      .hero-copy,
      .proof-strip,
      .statement,
      .signal-list,
      .experience-card,
      .roi-card,
      .equation,
      h1,
      h2 {
        width: 100%;
        max-width: 300px;
      }

      h1 {
        font-size: 28px;
        line-height: 1.12;
      }

      h2 {
        font-size: 25px;
        line-height: 1.16;
      }

      .hero-copy,
      .section-head p {
        font-size: 16px;
      }

      .statement h3 {
        font-size: 25px;
      }
    }
