    :root {
      --pink: #E05486;
      --pink-dark: #AC144A;
      --navy: #2D3055;
      --navy-deep: #252B42;
      --teal: #37B39F;
      --white: #FFFFFF;
      --paper: #FCFCFC;
      --text: #262E2E;
      --muted: #586176;
      --shadow: 0 18px 40px rgba(37, 43, 66, 0.18);
    }

    * { box-sizing: border-box; }

    html, body {
      margin: 0;
      padding: 0;
      font-family: "Titillium Web", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--text);
      background: linear-gradient(180deg, #fff 0%, #f7f8fc 60%, #ffffff 100%);
      scroll-behavior: smooth;
      overflow-x: clip;
    }

    a { color: inherit; text-decoration: none; }
    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }


    .container {
      width: min(1332px, calc(100% - 2rem));
      margin-inline: auto;
    }

    .section {
      padding: clamp(1.2rem, 3vw, 2rem) 0;
      position: relative;
      overflow: clip;
    }

    .eyebrow {
      display: inline-block;
      text-transform: uppercase;
      letter-spacing: 0.11em;
      font-weight: 700;
      color: var(--pink);
      font-size: 0.85rem;
      margin-bottom: 0.8rem;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-family: inherit;
      padding: 0.8rem 1.4rem;
      border: 1px solid transparent;
      border-radius: 999px;
      text-transform: none;
      letter-spacing: 0.01em;
      font-size: 1.05rem;
      font-weight: 700;
      cursor: pointer;
      transition: transform .2s ease, background-color .2s ease, color .2s ease;
      line-height: 1.1;
    }

    .btn:hover { transform: translateY(-2px); }

    .btn-primary {
      background: var(--pink);
      color: var(--white);
      border-color: var(--pink);
      box-shadow: 0 10px 20px rgba(224,84,134,0.28);
    }

    .btn-primary:hover {
      background: var(--pink-dark);
      border-color: var(--pink-dark);
    }

    .btn-secondary {
      background: transparent;
      color: var(--white);
      border-color: rgba(255,255,255,0.45);
    }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid #e6e9f2;
      box-shadow: 0 8px 20px rgba(22, 30, 58, 0.08);
    }

    .topbar .container {
      width: calc(100% - 4rem);
      max-width: none;
    }

    .topbar-inner {
      min-height: 78px;
      display: grid;
      grid-template-columns: 180px 1fr 190px;
      align-items: center;
      column-gap: 0;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      color: var(--navy);
      justify-self: start;
    }

    .brand img {
      width: 158px;
      height: auto;
      display: block;
    }

    .topbar-nav {
      display: flex;
      justify-content: center;
      min-width: 0;
      width: 100%;
    }

    .nav-list {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.2rem;
      list-style: none;
      margin: 0;
      padding: 0.5rem 0;
    }

    .nav-item {
      position: relative;
    }

    .nav-item > a {
      display: inline-flex;
      align-items: center;
      min-height: 42px;
      padding: 0 0.72rem;
      color: #2d3055;
      font-weight: 700;
      letter-spacing: 0.02em;
      text-transform: uppercase;
      font-size: 1.125rem;
      transition: color .2s ease;
    }

    .nav-item > a:hover {
      color: #ac144a;
    }

    .nav-item > a::after {
      content: "";
      position: absolute;
      left: 0.7rem;
      right: 0.7rem;
      bottom: 0.1rem;
      height: 2px;
      background: linear-gradient(90deg, var(--teal), var(--pink));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .2s ease;
      opacity: 0.9;
    }

    .nav-item:hover > a::after {
      transform: scaleX(1);
    }

    .dropdown {
      position: absolute;
      top: 100%;
      left: 0;
      min-width: 260px;
      background: #ffffff;
      border: 1px solid #e4e8f3;
      border-radius: 0.75rem;
      box-shadow: 0 18px 30px rgba(22, 30, 58, 0.2);
      padding: 0.65rem;
      display: none;
      gap: 0.25rem;
      opacity: 0;
      visibility: hidden;
      transform: translateY(8px);
      transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
      z-index: 60;
    }

    .nav-item.has-dropdown:hover .dropdown,
    .nav-item.has-dropdown:focus-within .dropdown {
      display: grid;
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .nav-item.has-dropdown:last-child .dropdown,
    .nav-item.has-dropdown:nth-last-child(2) .dropdown {
      left: auto;
      right: 0;
    }

    .dropdown a {
      color: var(--navy);
      font-weight: 600;
      font-size: 0.94rem;
      padding: 0.45rem 0.55rem;
      border-radius: 4px;
      transition: background-color .2s ease, color .2s ease;
    }

    .dropdown a:hover {
      background: #f2f4fb;
      color: var(--pink-dark);
    }

    .nav-item.rm-mega-root {
      position: static;
    }

    .nav-item.rm-mega-root > a {
      padding-inline: 0.75rem;
      position: relative;
    }

    .nav-item.rm-mega-root .rm-mega-menu {
      width: min(1400px, calc(100vw - 2rem));
      max-width: min(1400px, calc(100vw - 2rem));
      left: 50vw;
      right: auto;
      top: calc(100% - 1.1rem);
      transform: translateX(-50%);
      text-align: left;
      background: #ffffff;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
      border: 1px solid rgba(0, 0, 0, 0.08);
      border-radius: 1rem;
      padding: 1.5rem;
      display: none;
      opacity: 1;
      visibility: visible;
      z-index: 70;
      gap: 0;
    }

    .nav-item.rm-mega-root:hover > .rm-mega-menu {
      display: block;
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%);
    }

    .nav-item.rm-mega-root:focus-within > .rm-mega-menu {
      display: block;
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%);
    }

    .rm-mega-menu .rm-mega-header {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 2rem;
      padding-bottom: 1.25rem;
      margin-bottom: 1.5rem;
      border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .rm-mega-menu .rm-mega-intro {
      display: flex;
      flex-direction: column;
      gap: 0.35rem;
    }

    .rm-mega-menu .rm-mega-header-title {
      font-size: 1.25rem;
      font-weight: 700;
      color: #2d3055;
    }

    .rm-mega-menu .rm-mega-header-desc {
      font-size: 0.95rem;
      color: rgba(45, 48, 85, 0.75);
      max-width: none;
      white-space: nowrap;
    }

    .rm-mega-menu .rm-mega-body {
      display: grid;
      grid-template-columns: repeat(12, minmax(0, 1fr));
      gap: 2rem;
      align-items: stretch;
    }

    .rm-mega-menu .rm-mega-columns {
      display: grid;
      grid-template-columns: repeat(5, minmax(170px, 1fr));
      gap: 1.5rem;
      grid-column: span 9;
    }

    .rm-mega-menu .rm-mega-column {
      text-align: left;
      min-width: 0;
    }

    .rm-mega-menu .rm-mega-heading {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-weight: 700;
      margin-bottom: 0.75rem;
      color: #2d3055;
    }

    .rm-mega-menu .rm-mega-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 1rem;
      height: 1rem;
      font-size: 0.95rem;
      line-height: 1;
      color: rgba(45, 48, 85, 0.7);
      flex: 0 0 auto;
    }

    .rm-mega-menu .rm-mega-title {
      line-height: 1.2;
    }

    .rm-mega-menu .rm-mega-links {
      margin: 0;
      padding: 0;
      list-style: none;
      white-space: normal;
    }

    .rm-mega-menu .rm-mega-links a {
      display: block;
      color: #2d3055;
      padding: 0.5rem 0;
      font-size: 1rem;
      font-weight: 400;
      transition: color .2s ease, transform .2s ease, padding .2s ease;
    }

    .rm-mega-menu .rm-mega-links a:hover {
      color: #ac144a;
      padding-left: 0.5rem;
      padding-right: 0.5rem;
      transform: translateX(2px);
      background: transparent;
    }

    .rm-mega-menu .rm-mega-featured {
      grid-column: span 3;
      display: flex;
      min-width: 0;
    }

    .rm-mega-menu .rm-mega-featured-card {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      padding: 1.5rem;
      border-radius: 1.25rem;
      background: linear-gradient(135deg, rgba(224, 84, 134, 0.15), rgba(55, 179, 159, 0.15));
      border: 1px solid rgba(224, 84, 134, 0.25);
      color: #2d3055;
      transition: transform .2s ease, box-shadow .2s ease;
      width: 100%;
      min-width: 300px;
      box-sizing: border-box;
    }

    .rm-mega-menu .rm-mega-featured-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 20px rgba(0, 0, 0, 0.12);
      background: linear-gradient(135deg, rgba(224, 84, 134, 0.15), rgba(55, 179, 159, 0.15));
    }

    .rm-mega-menu .rm-mega-featured-title {
      font-size: 1.1rem;
      font-weight: 700;
      color: #2d3055;
    }

    .rm-mega-menu .rm-mega-featured-media {
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255,255,255,0.8);
      border-radius: 0.75rem;
      padding: 0.5rem;
    }

    .rm-mega-menu .rm-mega-featured-image {
      width: 100%;
      height: auto;
      max-height: 70px;
      object-fit: contain;
    }

    .rm-mega-menu .rm-mega-featured-desc {
      display: block;
      font-size: 0.9rem;
      color: rgba(45, 48, 85, 0.75);
      line-height: 1.55;
      margin-top: 1rem;
      font-weight: 400;
    }

    .rm-mega-menu .rm-mega-featured-link {
      display: inline-block;
      margin-top: 1rem;
      font-weight: 600;
      color: #ac144a;
    }

    .header-cta {
      background: #2d3055;
      color: #ffffff;
      border-color: #2d3055;
      box-shadow: none;
      letter-spacing: 0.02em;
      text-transform: none;
      font-size: 1.125rem;
      padding: 0.75rem 1.35rem;
      justify-self: end;
      white-space: nowrap;
    }

    .header-cta:hover {
      background: #1f2342;
      border-color: #1f2342;
      transform: translateY(-2px);
    }

    .hero {
      background:
        radial-gradient(circle at 8% 18%, rgba(55,179,159,0.3), transparent 28%),
        radial-gradient(circle at 90% 0%, rgba(224,84,134,0.35), transparent 32%),
        linear-gradient(133deg, #2f3657, #3a4268);
      color: var(--white);
      padding: clamp(1.2rem, 2.6vw, 2rem) 0;
      min-height: 600px;
      height: 600px;
      display: flex;
      align-items: center;
      position: relative;
      isolation: isolate;
    }

    .hero::before,
    .hero::after {
      content: "";
      position: absolute;
      border-radius: 999px;
      filter: blur(12px);
      z-index: -1;
      opacity: 0.55;
      animation: drift 11s ease-in-out infinite;
    }

    .hero::before {
      width: 280px;
      height: 280px;
      right: -90px;
      top: 40px;
      background: radial-gradient(circle, rgba(224,84,134,0.8), rgba(224,84,134,0));
    }

    .hero::after {
      width: 250px;
      height: 250px;
      left: -90px;
      bottom: -90px;
      background: radial-gradient(circle, rgba(55,179,159,0.65), rgba(55,179,159,0));
      animation-delay: -4s;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.2fr 0.85fr;
      gap: 2rem;
      align-items: center;
    }

    h1 {
      margin: 0;
      font-size: clamp(1.85rem, 4.25vw, 4.1rem);
      line-height: 0.95;
      letter-spacing: -0.015em;
      max-width: 14ch;
      text-wrap: balance;
    }

    .lead {
      margin: 1.1rem 0;
      max-width: 60ch;
      color: rgba(255,255,255,0.92);
      font-size: clamp(1.05rem, 2vw, 1.35rem);
      line-height: 1.5;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.85rem;
      margin: 1.1rem 0;
    }

    .hero-actions .btn-primary {
      padding-inline: 1.75rem;
      font-size: 1.12rem;
    }

    .hero-actions .btn-secondary {
      border-color: rgba(255,255,255,0.7);
      background: rgba(255,255,255,0.06);
    }

    .metrics {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.8rem;
      max-width: 700px;
    }

    .metric {
      border: 1px solid rgba(255,255,255,0.22);
      background: linear-gradient(145deg, rgba(255,255,255,0.16), rgba(255,255,255,0.05));
      padding: 0.95rem;
      position: relative;
      overflow: hidden;
      backdrop-filter: blur(2px);
      transform: translateY(0);
      transition: transform .25s ease, border-color .25s ease;
    }

    .metric:hover {
      transform: translateY(-4px);
      border-color: rgba(255,255,255,0.45);
    }

    .metric.is-featured {
      border-color: rgba(255,255,255,0.6);
      box-shadow: 0 12px 28px rgba(0,0,0,0.2);
    }

    .metric-head {
      display: flex;
      align-items: center;
      gap: 0.55rem;
      margin-bottom: 0.35rem;
    }

    .metric-icon {
      width: 1.9rem;
      height: 1.9rem;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: rgba(255,255,255,0.14);
      color: var(--white);
      flex: 0 0 auto;
    }

    .metric-icon svg {
      width: 1rem;
      height: 1rem;
      display: block;
    }

    .metric strong {
      display: block;
      font-size: 1.7rem;
      line-height: 1;
      letter-spacing: -0.02em;
    }

    .metric span {
      font-size: 0.92rem;
      color: rgba(255,255,255,0.9);
    }

    .spark {
      margin-top: 0.45rem;
      height: 3px;
      width: 100%;
      background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.95), rgba(255,255,255,0));
      animation: pulse 2.2s ease-in-out infinite;
    }

    .form-card {
      background: var(--white);
      color: var(--text);
      padding: 1.4rem;
      box-shadow: var(--shadow);
      border-top: 4px solid var(--pink);
      border-radius: 14px;
      transition: transform .2s ease, box-shadow .2s ease;
    }

    .form-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 22px 40px rgba(24,32,58,0.2);
    }

    .form-card h3 {
      margin: 0 0 0.5rem;
      font-size: 1.6rem;
      line-height: 1.1;
      color: var(--navy);
    }

    .form-card p {
      margin: 0 0 1rem;
      color: var(--muted);
      line-height: 1.5;
    }

    .input {
      display: block;
      width: 100%;
      border: 1px solid #d7dbe6;
      background: #f5f7fb;
      color: var(--navy-deep);
      padding: 0.8rem 0.85rem;
      margin-bottom: 0.65rem;
      font: inherit;
      border-radius: 999px;
      transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
    }

    .input.input-textarea {
      border-radius: 14px;
      min-height: 6.25rem;
      resize: vertical;
    }

    .input:focus {
      outline: none;
      border-color: #86a0d8;
      background: #ffffff;
      box-shadow: 0 0 0 3px rgba(134,160,216,0.25);
    }

    .hp-field {
      position: absolute;
      left: -9999px;
      width: 1px;
      height: 1px;
      opacity: 0;
      pointer-events: none;
    }

    .input.is-invalid {
      border-color: #c9345f;
      background: #fff7fa;
      box-shadow: 0 0 0 3px rgba(201, 52, 95, 0.15);
    }

    .form-status {
      margin: 0.55rem 0 0;
      font-size: 0.92rem;
      line-height: 1.4;
      min-height: 0;
      text-align: center;
    }

    .form-card .form-status {
      margin: 0.55rem 0 0;
    }

    .hero #audit-form {
      padding-bottom: 1rem;
    }

    .hero #audit-form .form-status {
      margin-top: 0.55rem;
      min-height: 0;
    }

    .form-status.is-error {
      color: #ac144a;
    }

    .form-status.is-success {
      color: #1c7a6f;
    }

    .lead-form button[disabled] {
      opacity: 0.7;
      cursor: wait;
    }

    .lead-form.is-complete .input,
    .lead-form.is-complete label,
    .lead-form.is-complete button[type="submit"] {
      display: none;
    }

    .lead-form.is-complete .form-status {
      margin: 0.4rem 0 0;
      padding: 1.15rem 1rem;
      min-height: 0;
      border-radius: 12px;
      border: 1px solid #9fd6ca;
      background: linear-gradient(180deg, #effaf7 0%, #ffffff 100%);
      color: #155f56;
      font-size: 1.05rem;
      font-weight: 700;
      line-height: 1.45;
      text-align: center;
      box-shadow: 0 10px 20px rgba(28, 122, 111, 0.12);
    }

    .lead-modal {
      position: fixed;
      inset: 0;
      z-index: 300;
      display: grid;
      place-items: center;
      padding: 1rem;
    }

    .lead-modal[hidden] {
      display: none !important;
    }

    .lead-modal-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(19, 24, 45, 0.68);
      backdrop-filter: blur(2px);
    }

    .lead-modal-panel {
      position: relative;
      z-index: 1;
      width: min(560px, 100%);
      background: #fff;
      border: 1px solid #e1e6f2;
      border-top: 4px solid var(--pink);
      border-radius: 14px;
      box-shadow: 0 22px 54px rgba(12, 18, 38, 0.3);
      padding: 1.25rem;
    }

    .lead-modal-panel h3 {
      margin: 0 2.1rem 0.45rem 0;
      color: var(--navy);
      font-size: 1.45rem;
      line-height: 1.1;
    }

    .lead-modal-panel p {
      margin: 0 0 1rem;
      color: var(--muted);
      line-height: 1.5;
    }

    .lead-modal-panel .form-status {
      margin: 0.9rem 0 0;
      min-height: 1.3em;
      text-align: center;
    }

    .lead-modal-close {
      position: absolute;
      top: 0.6rem;
      right: 0.65rem;
      width: 2rem;
      height: 2rem;
      border: 0;
      border-radius: 999px;
      background: #eef1f9;
      color: var(--navy);
      font-size: 1.4rem;
      line-height: 1;
      cursor: pointer;
    }

    body.modal-open {
      overflow: hidden;
    }

    .benefits {
      background:
        radial-gradient(circle at 92% 8%, rgba(55,179,159,0.16), transparent 36%),
        radial-gradient(circle at 8% 92%, rgba(224,84,134,0.14), transparent 34%),
        linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
      padding-top: 0;
      padding-bottom: 0;
      margin-top: 0;
      z-index: 4;
    }

    .benefit-wrap {
      width: 100%;
      padding: 1.35rem 0;
    }

    .benefit-inner {
      width: min(1332px, calc(100% - 2rem));
      margin-inline: auto;
    }

    .benefit-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1rem;
    }

    .benefit {
      padding: 1.2rem 1.05rem 1.05rem;
      border: 1px solid rgba(255,255,255,0.25);
      background:
        radial-gradient(circle at 14% 0%, rgba(255,255,255,0.28), rgba(255,255,255,0) 48%),
        linear-gradient(165deg, #34406a, #29345b);
      position: relative;
      overflow: hidden;
      border-radius: 14px;
      box-shadow: 0 16px 30px rgba(14, 19, 38, 0.24);
      transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    }

    .benefit:nth-child(2) {
      background:
        radial-gradient(circle at 14% 0%, rgba(255,255,255,0.24), rgba(255,255,255,0) 48%),
        linear-gradient(165deg, #7a3a66, #5a325f);
    }

    .benefit:nth-child(3) {
      background:
        radial-gradient(circle at 14% 0%, rgba(255,255,255,0.24), rgba(255,255,255,0) 48%),
        linear-gradient(165deg, #22638b, #1f4c73);
    }

    .benefit::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 0.34rem;
      background: linear-gradient(90deg, #2ea79d, #36b5ab 52%, #55c7bf);
    }

    .benefit:nth-child(2)::before {
      background: linear-gradient(90deg, #c94976, #e05486 52%, #ef739f);
    }

    .benefit:nth-child(3)::before {
      background: linear-gradient(90deg, #11679a, #1575ad 52%, #2b8dc6);
    }

    .benefit:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 36px rgba(14, 19, 38, 0.34);
      border-color: rgba(255,255,255,0.42);
    }

    .benefit-head {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      margin-bottom: 0.6rem;
    }

    .benefit-icon {
      width: 2.5rem;
      height: 2.5rem;
      border-radius: 50%;
      background: linear-gradient(145deg, rgba(55,179,159,0.95), rgba(47,152,136,0.95));
      color: var(--white);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 10px 18px rgba(55,179,159,0.38), inset 0 0 0 1px rgba(255,255,255,0.35);
      flex: 0 0 auto;
      transition: transform .25s ease, box-shadow .25s ease;
    }

    .benefit:nth-child(2) .benefit-icon {
      background: linear-gradient(145deg, rgba(224,84,134,0.95), rgba(172,20,74,0.95));
      box-shadow: 0 10px 18px rgba(224,84,134,0.35), inset 0 0 0 1px rgba(255,255,255,0.35);
    }

    .benefit:nth-child(3) .benefit-icon {
      background: linear-gradient(145deg, rgba(45,48,85,0.95), rgba(79,118,187,0.95));
      box-shadow: 0 10px 18px rgba(37,43,66,0.38), inset 0 0 0 1px rgba(255,255,255,0.35);
    }

    .benefit:hover .benefit-icon {
      transform: translateY(-2px) scale(1.05);
      box-shadow: 0 14px 24px rgba(55,179,159,0.4), inset 0 0 0 1px rgba(255,255,255,0.45);
    }

    .benefit-icon svg {
      width: 1.1rem;
      height: 1.1rem;
      display: block;
    }

    .benefit h4 {
      margin: 0;
      font-size: 1.3rem;
      color: #ffffff;
      line-height: 1.1;
      text-shadow: 0 5px 16px rgba(11, 18, 38, 0.35);
    }

    .benefit p {
      margin: 0;
      color: rgba(255,255,255,0.9);
      line-height: 1.5;
    }

    h2 {
      margin: 0 0 1rem;
      font-size: clamp(1.85rem, 3.4vw, 3rem);
      line-height: 1;
      color: var(--navy);
      text-wrap: balance;
    }

    .kicker {
      color: var(--muted);
      max-width: 68ch;
      font-size: 1.1rem;
      margin-bottom: 1.25rem;
    }

    .pain-grid,
    .approach-grid,
    .results-grid,
    .testimonial-grid {
      display: grid;
      gap: 1rem;
    }

    .pain-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      max-width: none;
      margin-inline: 0;
    }

    .approach-layout {
      display: grid;
      grid-template-columns: minmax(0, 2.2fr) minmax(280px, 0.9fr);
      gap: 1rem;
      align-items: center;
    }

    .approach-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.8rem;
      max-width: none;
      margin-inline: 0;
    }

    .pain-grid .card {
      padding: 1.2rem 1.1rem 1.05rem;
      border-radius: 14px;
      margin-inline: 0;
      background: linear-gradient(165deg, rgba(255,255,255,0.12), rgba(255,255,255,0.05));
      border: 1px solid rgba(255,255,255,0.22);
      box-shadow: 0 12px 28px rgba(7, 13, 30, 0.38);
      position: relative;
      overflow: hidden;
    }

    .pain-grid .card::before {
      content: "";
      position: absolute;
      inset: 0 auto 0 0;
      width: 4px;
      background: linear-gradient(180deg, #e05486, #ff8ab3);
      opacity: 0.85;
    }

    .approach-grid .card {
      padding: 1.1rem 1.08rem;
      border-radius: 14px;
      margin-inline: 0;
      background: linear-gradient(165deg, #ffffff, #f6f9ff);
      border: 1px solid #dfe6f5;
      box-shadow: 0 12px 26px rgba(36, 45, 74, 0.1);
      position: relative;
      overflow: hidden;
    }

    .approach-grid .card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 0.24rem;
      background: linear-gradient(90deg, rgba(55,179,159,0.9), rgba(224,84,134,0.85));
      opacity: 0.9;
    }

    .approach-grid .card::after {
      content: attr(data-step);
      position: absolute;
      top: 0.5rem;
      right: 0.75rem;
      font-size: clamp(2rem, 4.2vw, 2.7rem);
      line-height: 1;
      font-weight: 900;
      letter-spacing: -0.03em;
      color: rgba(45, 48, 85, 0.15);
      pointer-events: none;
    }

    .approach-grid .card:nth-child(2) {
      background: linear-gradient(165deg, #ffffff, #fff7fb);
    }

    .approach-grid .card:nth-child(3) {
      background: linear-gradient(165deg, #ffffff, #f3fffb);
    }

    .approach-enquiry {
      position: relative;
      transform: none;
      box-shadow: 0 30px 56px rgba(23, 40, 84, 0.24), 0 8px 0 #d9e4ff;
      z-index: 2;
    }

    .approach-enquiry h3 {
      font-size: 1.35rem;
      margin-bottom: 0.4rem;
    }

    .approach-enquiry p {
      font-size: 0.95rem;
      margin-bottom: 0.8rem;
    }

    .approach-enquiry .input {
      margin-bottom: 0.55rem;
    }

    .results-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .card {
      background: var(--white);
      border: 1px solid #e8ebf2;
      padding: 1.1rem;
      box-shadow: 0 8px 24px rgba(37,43,66,0.06);
      transition: transform .25s ease, box-shadow .25s ease;
    }

    .card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 30px rgba(37,43,66,0.13);
    }

    .card-badge {
      width: 2rem;
      height: 2rem;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: linear-gradient(145deg, rgba(224,84,134,0.95), rgba(172,20,74,0.95));
      color: #fff;
      margin-bottom: 0.6rem;
      box-shadow: 0 10px 16px rgba(224,84,134,0.25);
      animation: pulse 3.2s ease-in-out infinite;
    }

    .card-badge svg {
      width: 0.95rem;
      height: 0.95rem;
      display: block;
    }

    .card h3,
    .card h4 {
      margin: 0 0 0.55rem;
      color: var(--navy);
      line-height: 1.1;
    }

    .card p {
      margin: 0;
      color: var(--muted);
      line-height: 1.5;
    }

    .challenge-section {
      background:
        radial-gradient(circle at 92% 8%, rgba(55,179,159,0.16), transparent 36%),
        radial-gradient(circle at 8% 92%, rgba(224,84,134,0.14), transparent 34%),
        linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
    }

    .challenge-section::before {
      content: "";
      position: absolute;
      top: 0;
      left: 50%;
      width: min(180px, 22vw);
      height: 2px;
      transform: translateX(-50%);
      background: linear-gradient(90deg, rgba(55,179,159,0.85), rgba(224,84,134,0.85));
      opacity: 0.7;
      pointer-events: none;
    }

    .challenge-section .kicker {
      color: #4f5870;
      line-height: 1.65;
      max-width: 64ch;
      margin-bottom: 1.5rem;
    }

    .challenge-section .pain-grid .card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 34px rgba(29, 38, 67, 0.17);
      border-color: #ced9ef;
    }

    .challenge-section .pain-grid .card {
      background: linear-gradient(165deg, #ffffff, #f6f9ff);
      border: 1px solid #dfe6f5;
      box-shadow: 0 12px 26px rgba(36, 45, 74, 0.1);
    }

    .challenge-section .pain-grid .card::before {
      background: linear-gradient(180deg, rgba(224,84,134,0.9), rgba(55,179,159,0.65));
      opacity: 0.7;
    }

    .challenge-section .pain-grid .card h3 {
      color: var(--navy);
    }

    .challenge-section .pain-grid .card p {
      color: var(--muted);
    }

    .approach-section {
      background:
        radial-gradient(circle at 84% 18%, rgba(224,84,134,0.24), transparent 35%),
        radial-gradient(circle at 8% 90%, rgba(55,179,159,0.16), transparent 34%),
        linear-gradient(170deg, #2b3253 0%, #37406a 56%, #424b77 100%);
      color: #fff;
    }

    .approach-section::before {
      content: "";
      position: absolute;
      top: -1px;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, rgba(224,84,134,0.95), rgba(55,179,159,0.7));
      opacity: 0.9;
      pointer-events: none;
    }

    .approach-section .eyebrow {
      color: #ff9dbc;
    }

    .approach-section h2 {
      color: #ffffff;
      text-shadow: 0 14px 28px rgba(8, 14, 32, 0.35);
    }

    .approach-section .kicker {
      color: rgba(255,255,255,0.84);
      line-height: 1.65;
      margin-bottom: 1.4rem;
      max-width: 62ch;
    }

    .approach-section .approach-grid .card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 34px rgba(7, 13, 30, 0.5), 0 0 0 1px rgba(255,255,255,0.1);
    }

    .approach-section .approach-grid .card {
      background: linear-gradient(165deg, #ffffff, #f8fbff);
      border: 1px solid #dbe4f6;
      box-shadow: 0 12px 26px rgba(26, 37, 66, 0.16);
    }

    .approach-section .approach-grid .card::before {
      background: linear-gradient(90deg, rgba(224,84,134,0.95), rgba(55,179,159,0.75));
      opacity: 0.95;
    }

    .approach-section .approach-grid .card h4 {
      color: var(--navy);
    }

    .approach-section .approach-grid .card p {
      color: var(--muted);
    }

    .approach-section .card-badge {
      background: linear-gradient(145deg, rgba(224,84,134,0.98), rgba(172,20,74,0.98));
      box-shadow: 0 12px 20px rgba(224,84,134,0.34);
    }

    .accent-band {
      background:
        radial-gradient(circle at 100% 0%, rgba(55,179,159,0.4), transparent 38%),
        linear-gradient(125deg, #363d67, #2d345b);
      color: var(--white);
      isolation: isolate;
    }

    .accent-band::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      opacity: 0.38;
      background-image:
        radial-gradient(120% 90% at -12% 112%, transparent 58%, rgba(55,179,159,0.34) 59%, rgba(55,179,159,0.34) 60%, transparent 61%),
        radial-gradient(115% 85% at -8% 112%, transparent 64%, rgba(255,255,255,0.2) 65%, rgba(255,255,255,0.2) 66%, transparent 67%),
        radial-gradient(120% 90% at 108% 112%, transparent 56%, rgba(224,84,134,0.32) 57%, rgba(224,84,134,0.32) 58%, transparent 59%),
        radial-gradient(118% 88% at 104% 112%, transparent 63%, rgba(255,255,255,0.18) 64%, rgba(255,255,255,0.18) 65%, transparent 66%);
      background-size: 100% 100%;
      background-position: center;
      mix-blend-mode: screen;
      mask-image: radial-gradient(circle at 46% 52%, #000 18%, transparent 86%);
    }

    .accent-band-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
      gap: 1.2rem;
      align-items: center;
    }

    .accent-brand-card {
      background: linear-gradient(165deg, rgba(255,255,255,0.18), rgba(255,255,255,0.08));
      border: 1px solid rgba(255,255,255,0.26);
      border-radius: 14px;
      padding: 1.1rem;
      box-shadow: 0 18px 30px rgba(11, 16, 36, 0.22);
      backdrop-filter: blur(4px);
      justify-self: end;
      width: 100%;
      max-width: 360px;
    }

    .accent-brand-card img {
      display: block;
      width: 100%;
      height: auto;
      border-radius: 10px;
    }

    .ai-points {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
      margin: 1rem 0 1.25rem;
      padding: 0;
      list-style: none;
    }

    .ai-points li {
      border: 1px solid rgba(255,255,255,0.35);
      background: rgba(255,255,255,0.09);
      color: #fff;
      border-radius: 999px;
      padding: 0.42rem 0.8rem;
      font-size: 0.94rem;
      font-weight: 600;
    }

    .accent-band h2,
    .accent-band h3,
    .accent-band p,
    .accent-band .eyebrow { color: var(--white); }

    .accent-band .kicker { color: rgba(255,255,255,0.88); }

    .results-grid .card {
      text-align: center;
      border-top: 0;
      position: relative;
    }

    .results-grid .card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, #d4b528, #e3c635 50%, #f0d54a);
    }

    .result-number {
      display: block;
      color: var(--pink);
      font-size: clamp(2rem, 4vw, 3.25rem);
      line-height: 1;
      font-weight: 900;
      margin-bottom: 0.25rem;
      background: linear-gradient(135deg, var(--pink), #ff7ba8);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      text-shadow: 0 10px 20px rgba(224,84,134,0.25);
    }

    body.variation-b .result-number {
      font-family: inherit;
      font-size: clamp(1.05rem, 1.8vw, 1.35rem);
      line-height: 1.25;
      font-weight: 700;
      letter-spacing: 0.01em;
      margin-bottom: 0.5rem;
      text-shadow: none;
    }

    .testimonial-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .quote {
      background: linear-gradient(180deg, #ffffff 0%, #f8f9fd 100%);
      border: 1px solid #e8ebf2;
      border-left: 5px solid var(--teal);
      padding: 1.2rem;
      position: relative;
    }

    .quote-link-card {
      display: block;
      text-decoration: none;
      color: inherit;
      margin: 1em 40px;
    }

    .quote::before {
      content: "\201C";
      position: absolute;
      right: 0.65rem;
      top: 0.2rem;
      font-size: 3rem;
      color: rgba(45,48,85,0.12);
      line-height: 1;
    }

    .quote p {
      margin: 0 0 0.7rem;
      line-height: 1.5;
      color: var(--text);
      font-size: 1.05rem;
    }

    .quote-head {
      display: flex;
      align-items: center;
      gap: 0.65rem;
      margin-bottom: 0.75rem;
    }

    .quote-avatar {
      width: 2rem;
      height: 2rem;
      border-radius: 50%;
      display: block;
      flex: 0 0 2rem;
      object-fit: cover;
      background: #fff;
      border: 1px solid #dce2ee;
    }

    .quote-company {
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--navy);
      text-transform: uppercase;
      letter-spacing: 0.07em;
    }

    .quote cite {
      color: var(--muted);
      font-style: italic;
      font-size: 0.95rem;
    }

    .testimonials-more {
      margin: 1rem 0 0;
      text-align: center;
    }

    .testimonials-more a {
      color: var(--navy);
      font-weight: 700;
      text-decoration: underline;
      text-underline-offset: 0.2rem;
    }

    .final-cta {
      background:
        radial-gradient(circle at 12% 18%, rgba(55,179,159,0.20), transparent 30%),
        radial-gradient(circle at 88% 16%, rgba(224,84,134,0.22), transparent 36%),
        linear-gradient(128deg, #3b4468 0%, #414b71 52%, #353e5f 100%);
      color: var(--white);
      text-align: center;
      border-top: 1px solid rgba(255,255,255,0.28);
      border-bottom: 1px solid rgba(255,255,255,0.2);
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.28),
        inset 0 -1px 0 rgba(255,255,255,0.15),
        0 14px 30px rgba(9, 13, 26, 0.24);
      position: relative;
      z-index: 1;
      overflow: hidden;
    }

    .final-cta::before {
      content: "";
      position: absolute;
      inset: 0 0 auto 0;
      height: 8px;
      background: linear-gradient(90deg, rgba(55,179,159,0.26), rgba(255,255,255,0.32), rgba(224,84,134,0.26));
      pointer-events: none;
    }

    .final-cta::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 8px;
      background: linear-gradient(90deg, rgba(55,179,159,0.26), rgba(255,255,255,0.32), rgba(224,84,134,0.26));
      pointer-events: none;
    }

    .final-cta .container {
      position: relative;
      z-index: 1;
    }

    .final-cta h2,
    .final-cta p { color: var(--white); }

    .final-cta .kicker {
      margin-left: auto;
      margin-right: auto;
      text-align: center;
    }

    .final-cta .btn {
      margin-top: 0.5rem;
      padding-inline: 2rem;
      font-size: 1.18rem;
    }

    .final-meta {
      margin-top: 0.75rem;
      color: rgba(255,255,255,0.82);
      font-size: 0.98rem;
    }

    .logo-banner-section {
      background: #fcfcfc;
      padding: 1.3rem 0;
      border-top: 1px solid #e7ebf4;
      border-bottom: 1px solid #e7ebf4;
    }

    .logo-banner-track {
      display: grid;
      grid-template-columns: repeat(8, minmax(0, 1fr));
      gap: 0.7rem;
      align-items: center;
    }

    .logo-badge {
      height: 5rem;
      background: #fff;
      border: 1px solid #e8ebf2;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0.7rem;
      transition: transform .25s ease, box-shadow .25s ease;
    }

    .logo-badge img {
      max-width: 100%;
      max-height: 2.5rem;
      width: auto;
      height: auto;
      filter: grayscale(100%);
      opacity: 0.85;
      transition: filter .25s ease, opacity .25s ease;
    }

    .logo-badge:hover {
      transform: translateY(-4px);
      box-shadow: 0 14px 28px rgba(37,43,66,0.12);
    }

    .logo-badge:hover img {
      filter: grayscale(0%);
      opacity: 1;
    }

    .site-footer-mock {
      background: rgb(37, 43, 66);
      color: #fff;
      padding: 2rem 0;
    }

    .site-footer-mock .container {
      width: calc(100% - 8rem);
      max-width: none;
    }

    .rm-footer-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0;
      align-items: start;
    }

    .rm-footer-grid > * {
      min-width: 0;
    }

    .rm-footer-col {
      padding: 2rem 0;
    }

    .rm-footer-logo {
      display: block;
      width: 200px;
      max-width: 100%;
      height: auto;
      margin: 0 auto 1.25rem;
    }

    .rm-contact-block a {
      color: #fff;
      text-decoration: none;
      overflow-wrap: anywhere;
      word-break: break-word;
    }

    .rm-contact-block h3 {
      margin: 0 0 0.3rem;
      font-size: 24px;
      font-weight: 400;
      color: #fff;
    }

    .rm-contact-block p {
      margin: 0;
      color: rgba(255,255,255,0.92);
      font-size: 16px;
      line-height: 1.6;
      overflow-wrap: anywhere;
    }

    .rm-contact-block .rm-address-line {
      font-size: 14px;
      white-space: nowrap;
      line-height: 1.4;
      margin-top: 1.25rem;
    }

    .rm-footer-divider {
      display: block;
      margin-top: 1rem;
      margin-left: auto;
      margin-right: auto;
      width: 200px;
      max-width: 100%;
      height: auto;
    }

    .rm-social-wrap {
      display: flex;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
      width: 100%;
    }

    .rm-social-icon {
      width: 3rem;
      height: 3rem;
      border-radius: 999px;
      background: #fff;
      color: #2d3055;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid #fff;
      transition: color .2s ease, opacity .2s ease;
      text-decoration: none;
    }

    .rm-social-icon:hover {
      background: #fff;
      color: #e05486;
      border-color: #fff;
    }

    .rm-social-icon svg {
      width: 1.5rem;
      height: 1.5rem;
      display: block;
      margin: auto;
      fill: currentColor;
    }

    .rm-search-title {
      display: none;
    }

    .rm-search {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 1.1rem;
    }

    .rm-search-field {
      display: flex;
      align-items: center;
      width: 100%;
      border: 1px solid #252b42;
      background: #fff;
      border-radius: 999px;
      padding: 0 0.7rem;
      min-height: 2.55rem;
    }

    .rm-search-icon {
      width: 1.5rem;
      height: 1.5rem;
      color: #2d3055;
      flex: 0 0 auto;
    }

    .rm-search input {
      width: 100%;
      border: 0;
      background: transparent;
      color: #2d3055;
      border-radius: 999px;
      padding: 0.58rem 0.62rem;
      font: inherit;
    }

    .rm-search input::placeholder {
      color: #5e5e5e;
    }

    .rm-search input:focus {
      outline: none;
    }

    .rm-search button {
      border: 1px solid #e05486;
      background: #e05486;
      color: #fff;
      border-radius: 999px;
      width: 3rem;
      height: 3rem;
      min-width: 3rem;
      min-height: 3rem;
      max-width: 3rem;
      max-height: 3rem;
      aspect-ratio: 1 / 1;
      padding: 0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background-color .2s ease, border-color .2s ease;
    }

    .rm-search button:hover {
      background: #ac144a;
      border-color: #ac144a;
      color: #fff;
    }

    .rm-search-btn-icon {
      width: 1.5rem;
      height: 1.5rem;
      display: block;
      fill: currentColor;
    }

    .rm-footer-menu h4 {
      margin: 1.5rem 0 0.45rem;
      font-size: 16px;
      font-weight: 700;
      color: #fff;
      text-transform: none;
      letter-spacing: 0;
    }

    .rm-footer-menu ul {
      margin: 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 0.3rem;
    }

    .rm-footer-menu a {
      color: rgba(255,255,255,0.92);
      font-size: 18px;
      font-weight: 300;
      text-decoration: none;
      overflow-wrap: anywhere;
    }

    .rm-footer-menu li {
      margin-bottom: 0.5rem;
    }

    .rm-footer-copy {
      margin-top: 1rem;
      font-size: 0.75rem;
      color: rgba(255,255,255,0.8);
    }

    .site-footer-mock a:not(.rm-social-icon):hover {
      color: #d3d6dc;
    }

    .rm-contact-block,
    .rm-footer-col:last-child {
      text-align: center;
    }

    @keyframes pulse {
      0%, 100% { opacity: 0.35; transform: scaleX(0.86); }
      50% { opacity: 1; transform: scaleX(1); }
    }

    @keyframes drift {
      0%, 100% { transform: translate(0, 0); }
      50% { transform: translate(0, -18px); }
    }

    .reveal {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity .6s ease, transform .6s ease;
    }

    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 1080px) {
      .hero {
        height: auto;
        min-height: auto;
        display: block;
        padding: clamp(2.2rem, 6vw, 3.4rem) 0;
      }
      .hero h1 {
        font-size: clamp(1.95rem, 6.8vw, 2.5rem);
        line-height: 1.06;
        max-width: 22ch;
        text-wrap: pretty;
      }
      .hero-grid {
        grid-template-columns: 1fr;
        align-items: start;
      }
      .metrics { max-width: none; }
      .topbar-nav { display: none; }
      .approach-layout { grid-template-columns: 1fr; }
      .accent-band-layout { grid-template-columns: 1fr; }
      .accent-brand-card {
        justify-self: start;
        max-width: 420px;
      }
    }

    @media (max-width: 900px) {
      .benefit-grid,
      .pain-grid,
      .approach-grid,
      .results-grid,
      .testimonial-grid {
        grid-template-columns: 1fr;
      }

      .topbar .btn { display: none; }

      .logo-banner-track {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .rm-footer-grid { grid-template-columns: 1fr; }
      .rm-footer-col { padding: 1rem 0; }
      .rm-social-wrap { justify-content: center; }
      .rm-search { justify-content: center; }
      .site-footer-mock .container {
        width: calc(100% - 2rem);
      }
      .rm-contact-block .rm-address-line {
        white-space: normal;
      }
    }

    @media (min-width: 901px) {
      .rm-social-wrap {
        justify-content: flex-end;
        padding-right: 4rem;
        box-sizing: border-box;
      }
      .rm-contact-block,
      .rm-footer-col:last-child { text-align: left; }
      .rm-footer-logo,
      .rm-footer-divider {
        margin-left: 0;
        margin-right: 0;
      }
    }
