/* === BOX MODEL RESET — MUST BE FIRST === */

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

        margin: 0;

        padding: 0;
      }

      body {
        overflow-x: hidden;
      }

      .skip-link {
        position: absolute;
        top: -100%;
        left: 16px;
        z-index: 9999;
        background: var(--accent);
        color: var(--white);
        padding: 10px 18px;
        border-radius: 0 0 6px 6px;
        font-weight: 700;
        font-size: 14px;
        text-decoration: none;
      }

      .skip-link:focus {
        top: 0;
      }

      /* === CUSTOM PROPERTIES === */

      :root {
        --accent: #e8530a;

        --accent-dark: #c44208;

        --off-black: #1c1c1c;

        --surface: #f7f6f4;

        --white: #ffffff;

        --mid-grey: #6b6b6b;

        --border: #e2e0dc;

        --dark-bg: #141414;

        --dark-surface: #1e1e1e;

        --max-width: 1140px;
      }

      /* === BASE === */

      html {
        scroll-padding-top: 80px;
      }

      body {
        font-family:
          "Inter",
          system-ui,
          -apple-system,
          BlinkMacSystemFont,
          "Segoe UI",
          sans-serif;

        font-size: 16px;

        line-height: 1.65;

        color: var(--off-black);

        background: var(--white);

        -webkit-text-size-adjust: 100%;

        text-size-adjust: 100%;
      }

      /* === SCREEN READER ONLY === */

      .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;
      }

      /* === LAYOUT === */

      .page-wrapper {
        overflow-x: hidden;
      }

      .container {
        max-width: var(--max-width);

        margin: 0 auto;

        padding: 0 24px;
      }

      /* === FOCUS === */

      *:focus-visible {
        outline: 2px solid var(--accent);

        outline-offset: 3px;
      }

      /* === PROBLEM / STAKES === */

      .problem-grid {
        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 24px;

        width: 100%;

        max-width: 860px;

        margin-inline: auto;
      }

      .problem-card {
        background: var(--surface);

        border-radius: 10px;

        padding: 28px 32px;
      }

      .problem-card h3 {
        font-size: 1rem;

        font-weight: 700;

        color: var(--off-black);

        margin-bottom: 10px;
      }

      .problem-card p {
        font-size: 0.9375rem;

        color: var(--mid-grey);

        line-height: 1.65;
      }

      /* === EDUCATION MODULE === */

      .edu-module ol {
        padding-left: 20px;
      }

      .edu-module ol li {
        margin-bottom: 20px;

        line-height: 1.65;

        font-size: 0.9375rem;

        color: var(--off-black);
      }

      .edu-module ol li strong {
        display: block;

        font-size: 0.9375rem;

        font-weight: 700;

        margin-bottom: 6px;
      }

      .edu-caveat {
        font-size: 0.875rem;

        color: var(--mid-grey);

        margin-top: 20px;

        line-height: 1.65;
      }

      /* === SERVICES GRID === */

      .services-section {
        padding: 80px 0;

        background: var(--white);
      }

      .services-section h2 {
        font-size: clamp(1.5rem, 3vw, 2.1rem);

        font-weight: 800;

        letter-spacing: -0.025em;

        color: var(--off-black);

        max-width: 640px;

        margin-bottom: 12px;
      }

      .services-section .section-intro {
        font-size: 1rem;

        color: var(--mid-grey);

        max-width: 580px;

        margin-bottom: 48px;

        line-height: 1.7;
      }

      .services-grid {
        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 20px;
      }

      .service-card {
        background: var(--surface);

        border-radius: 10px;

        padding: 32px 36px;

        transition:
          transform 0.2s ease,
          box-shadow 0.2s ease;
      }

      .service-card:hover {
        transform: translateY(-2px);

        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
      }

      .service-card-icon {
        width: 40px;

        height: 40px;

        background: rgba(232, 83, 10, 0.1);

        border-radius: 8px;

        display: flex;

        align-items: center;

        justify-content: center;

        margin-bottom: 16px;
      }

      .service-card-icon svg {
        width: 20px;

        height: 20px;

        fill: none;

        stroke: var(--accent);

        stroke-width: 2;

        stroke-linecap: round;

        stroke-linejoin: round;
      }

      .service-card h3 {
        font-size: 1.0625rem;

        font-weight: 700;

        color: var(--off-black);

        margin-bottom: 10px;

        letter-spacing: -0.01em;
      }

      .service-card p {
        font-size: 0.9375rem;

        color: var(--mid-grey);

        line-height: 1.65;
      }

      .service-insider {
        font-size: 0.875rem;

        color: var(--off-black);

        border-top: 1px solid var(--border);

        margin-top: 16px;

        padding-top: 14px;

        font-style: italic;
      }

      /* === CASE STUDY SECTION === */

      .case-studies-section {
        padding: 80px 0;

        background: var(--surface);

        scroll-margin-top: 5.5rem;
      }

      .case-studies-section h2 {
        font-size: clamp(1.5rem, 3vw, 2.1rem);

        font-weight: 800;

        letter-spacing: -0.025em;

        color: var(--off-black);

        max-width: 720px;

        margin: 0 auto 12px;

        text-align: center;
      }

      .case-studies-section .section-intro {
        font-size: 1rem;

        color: var(--mid-grey);

        max-width: 640px;

        margin: 0 auto 48px;

        line-height: 1.7;

        text-align: center;
      }

      .case-study-grid {
        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 32px;
      }

      .case-study-card {
        background: var(--white);

        border-radius: 12px;

        overflow: hidden;

        border: 1px solid var(--border);

        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
      }

      .case-study-header {
        background: linear-gradient(135deg, #1a1208 0%, #2a1500 100%);

        padding: 28px 32px;
      }

      .case-study-platform-badge {
        display: inline-flex;

        align-items: center;

        gap: 8px;

        background: rgba(255, 255, 255, 0.12);

        border-radius: 100px;

        padding: 6px 14px;

        margin-bottom: 16px;
      }

      .case-study-platform-badge span {
        font-size: 11px;

        font-weight: 700;

        letter-spacing: 0.1em;

        text-transform: uppercase;

        color: rgba(255, 255, 255, 0.85);
      }

      .case-study-platform-dot {
        width: 8px;

        height: 8px;

        border-radius: 50%;
      }

      .dot-meta {
        background: #0866ff;
      }

      .dot-google {
        background: #4285f4;
      }

      .case-study-header h3 {
        font-size: clamp(1.25rem, 2.2vw, 1.5rem);

        font-weight: 800;

        color: var(--white);

        letter-spacing: -0.02em;

        margin-bottom: 6px;
      }

      .case-study-header .cs-company {
        font-size: 13px;

        color: rgba(255, 255, 255, 0.55);

        font-weight: 500;
      }

      .case-study-body {
        padding: 28px 32px;
      }

      .cs-metrics-row {
        display: grid;

        grid-template-columns: repeat(3, 1fr);

        gap: 16px;

        margin-bottom: 24px;

        padding-bottom: 24px;

        border-bottom: 1px solid var(--border);
      }

      .cs-metric {
        text-align: center;
      }

      .cs-metric-value {
        font-size: 1.5rem;

        font-weight: 800;

        color: var(--accent);

        letter-spacing: -0.03em;

        display: block;

        line-height: 1.1;

        margin-bottom: 4px;
      }

      .cs-metric-label {
        font-size: 11px;

        font-weight: 600;

        color: var(--mid-grey);

        text-transform: uppercase;

        letter-spacing: 0.06em;

        line-height: 1.3;
      }

      /* === REVIEWS / TESTIMONIALS === */

      .reviews-section {
        padding: 80px 0;

        background: var(--dark-bg);
      }

      .reviews-section h2 {
        font-size: clamp(1.5rem, 3vw, 2.1rem);

        font-weight: 800;

        letter-spacing: -0.025em;

        color: var(--white);

        max-width: 600px;

        margin-bottom: 12px;
      }

      .reviews-section .section-intro {
        font-size: 1rem;

        color: rgba(255, 255, 255, 0.6);

        max-width: 540px;

        margin-bottom: 48px;

        line-height: 1.7;
      }

      .reviews-grid {
        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 24px;
      }

      .review-card {
        background: var(--dark-surface);

        border-radius: 12px;

        padding: 32px;

        border: 1px solid rgba(255, 255, 255, 0.06);

        position: relative;
      }

      .review-stars {
        color: #f5a623;

        font-size: 16px;

        letter-spacing: 2px;

        margin-bottom: 16px;

        display: block;
      }

      .review-quote {
        font-size: 0.9375rem;

        color: rgba(255, 255, 255, 0.82);

        line-height: 1.75;

        margin-bottom: 24px;

        font-style: italic;
      }

      .review-quote::before {
        content: "\201C";

        font-size: 2.5rem;

        color: var(--accent);

        line-height: 0;

        vertical-align: -0.6rem;

        margin-right: 4px;

        font-style: normal;
      }

      .review-meta {
        display: flex;

        align-items: center;

        gap: 14px;
      }

      .review-avatar {
        width: 42px;

        height: 42px;

        border-radius: 50%;

        background: linear-gradient(135deg, #e8530a 0%, #ff8c42 100%);

        display: flex;

        align-items: center;

        justify-content: center;

        font-weight: 700;

        color: var(--white);

        font-size: 14px;

        flex-shrink: 0;
      }

      .review-author-info {
        line-height: 1.4;
      }

      .review-author-name {
        font-size: 14px;

        font-weight: 700;

        color: var(--white);
      }

      .review-author-detail {
        font-size: 12px;

        color: rgba(255, 255, 255, 0.45);
      }

      .review-result-chip {
        display: inline-block;

        background: rgba(232, 83, 10, 0.15);

        border: 1px solid rgba(232, 83, 10, 0.3);

        color: #ff8c42;

        font-size: 11px;

        font-weight: 700;

        border-radius: 100px;

        padding: 4px 12px;

        margin-top: 16px;

        letter-spacing: 0.04em;
      }

      /* === PROCESS === */

      .process-section {
        padding: 80px 0;

        background: var(--surface);
      }

      .process-section h2 {
        font-size: clamp(1.5rem, 3vw, 2.1rem);

        font-weight: 800;

        letter-spacing: -0.025em;

        color: var(--off-black);

        margin-bottom: 12px;
      }

      .process-section .section-intro {
        font-size: 1rem;

        color: var(--mid-grey);

        max-width: 540px;

        margin-bottom: 48px;

        line-height: 1.7;
      }

      .process-steps {
        display: grid;

        grid-template-columns: repeat(4, 1fr);

        gap: 0;

        position: relative;
      }

      .process-steps::before {
        content: "";

        position: absolute;

        top: 22px;

        left: 40px;

        right: 40px;

        height: 1px;

        background: var(--border);
      }

      .process-step {
        padding: 0 24px 0 0;

        position: relative;

        z-index: 1;
      }

      .step-number {
        width: 44px;

        height: 44px;

        background: var(--accent);

        color: var(--white);

        border-radius: 50%;

        display: flex;

        align-items: center;

        justify-content: center;

        font-weight: 800;

        font-size: 15px;

        margin-bottom: 20px;
      }

      .process-step h3 {
        font-size: 0.9375rem;

        font-weight: 700;

        color: var(--off-black);

        margin-bottom: 8px;
      }

      .process-step p {
        font-size: 0.875rem;

        color: var(--mid-grey);

        line-height: 1.65;
      }

      /* === COMPARISON TABLE === */

      .comparison-section {
        padding: 80px 0;

        background: var(--white);
      }

      .comparison-section h2 {
        font-size: clamp(1.5rem, 3vw, 2.1rem);

        font-weight: 800;

        letter-spacing: -0.025em;

        color: var(--off-black);

        max-width: 640px;

        margin-bottom: 12px;
      }

      .comparison-section .section-intro {
        font-size: 1rem;

        color: var(--mid-grey);

        max-width: 540px;

        margin-bottom: 40px;

        line-height: 1.7;
      }

      .table-wrapper {
        overflow-x: auto;

        -webkit-overflow-scrolling: touch;
      }

      table {
        width: 100%;

        border-collapse: collapse;

        font-size: 0.9375rem;
      }

      table caption {
        font-size: 0.875rem;

        color: var(--mid-grey);

        text-align: left;

        margin-bottom: 16px;

        caption-side: top;
      }

      table thead th {
        padding: 14px 20px;

        text-align: left;

        font-size: 13px;

        font-weight: 700;

        letter-spacing: 0.04em;

        text-transform: uppercase;

        color: var(--mid-grey);

        border-bottom: 2px solid var(--border);
      }

      table thead th.col-leadgulls {
        background: rgba(232, 83, 10, 0.06);

        color: var(--accent);

        border-radius: 8px 8px 0 0;
      }

      table tbody tr:nth-child(even) {
        background: var(--surface);
      }

      table tbody td,
      table tbody th[scope="row"] {
        padding: 14px 20px;

        vertical-align: top;

        border-bottom: 1px solid var(--border);

        color: var(--off-black);

        font-weight: 400;
      }

      table tbody th[scope="row"] {
        font-weight: 600;

        color: var(--off-black);
      }

      table tbody td.col-leadgulls {
        background: rgba(232, 83, 10, 0.04);

        font-weight: 600;

        color: var(--off-black);
      }

      /* === CTA BAND === */

      .cta-band {
        background: var(--accent);

        padding: 64px 0;
      }

      .cta-band h2 {
        font-size: clamp(1.4rem, 2.8vw, 2rem);

        font-weight: 800;

        color: var(--white);

        letter-spacing: -0.025em;

        max-width: 560px;

        margin-bottom: 16px;
      }

      .cta-band p {
        font-size: 1rem;

        color: rgba(255, 255, 255, 0.82);

        max-width: 480px;

        margin-bottom: 32px;

        line-height: 1.65;
      }

      .btn-white {
        display: inline-block;

        background: var(--white);

        color: var(--accent);

        padding: 15px 30px;

        border-radius: 6px;

        font-size: 15px;

        font-weight: 700;

        text-decoration: none;

        transition:
          background 0.15s ease,
          transform 0.15s ease;

        min-height: 44px;
      }

      .btn-white:hover {
        background: #f0f0f0;

        transform: translateY(-1px);
      }

      /* === FAQ === */

      .faq-section {
        padding: 80px 0;

        background: var(--surface);
      }

      .faq-section h2 {
        font-size: clamp(1.5rem, 3vw, 2.1rem);

        font-weight: 800;

        letter-spacing: -0.025em;

        color: var(--off-black);

        margin-bottom: 40px;
      }

      .faq-list {
        max-width: 760px;
      }

      .faq-list details {
        border-bottom: 1px solid var(--border);
      }

      .faq-list details:first-of-type {
        border-top: 1px solid var(--border);
      }

      .faq-list summary {
        padding: 20px 0;

        font-size: 1rem;

        font-weight: 600;

        color: var(--off-black);

        cursor: pointer;

        list-style: none;

        display: flex;

        align-items: center;

        justify-content: space-between;

        gap: 16px;

        min-height: 44px;
      }

      .faq-list summary::-webkit-details-marker {
        display: none;
      }

      .faq-toggle {
        width: 24px;

        height: 24px;

        flex-shrink: 0;

        display: flex;

        align-items: center;

        justify-content: center;
      }

      .faq-toggle svg {
        width: 16px;

        height: 16px;

        stroke: var(--accent);

        stroke-width: 2;

        stroke-linecap: round;

        transition: transform 0.2s ease;
      }

      details[open] .faq-toggle svg {
        transform: rotate(45deg);
      }

      .faq-answer {
        padding: 0 0 20px;

        font-size: 0.9375rem;

        color: var(--mid-grey);

        line-height: 1.7;

        max-width: 680px;
      }

      /* === TRUST === */

      .trust-section {
        padding: 80px 0;

        background: var(--dark-bg);
      }

      .trust-section h2 {
        font-size: clamp(1.5rem, 3vw, 2.1rem);

        font-weight: 800;

        letter-spacing: -0.025em;

        color: var(--white);

        max-width: 600px;

        margin-bottom: 12px;
      }

      .trust-section .section-intro {
        font-size: 1rem;

        color: rgba(255, 255, 255, 0.6);

        max-width: 540px;

        margin-bottom: 48px;

        line-height: 1.7;
      }

      .trust-grid {
        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 20px;
      }

      .trust-card {
        background: var(--dark-surface);

        border-radius: 10px;

        padding: 28px 32px;

        border: 1px solid rgba(255, 255, 255, 0.06);
      }

      .trust-card h3 {
        font-size: 0.9375rem;

        font-weight: 700;

        color: var(--white);

        margin-bottom: 10px;
      }

      .trust-card p {
        font-size: 0.875rem;

        color: rgba(255, 255, 255, 0.6);

        line-height: 1.65;
      }

      .trustpilot-bar {
        display: flex;

        align-items: center;

        gap: 16px;

        margin-top: 40px;

        padding-top: 32px;

        border-top: 1px solid rgba(255, 255, 255, 0.08);

        flex-wrap: wrap;
      }

      .trustpilot-stars {
        color: #00b67a;

        font-size: 22px;

        letter-spacing: 2px;
      }

      .trustpilot-text {
        font-size: 14px;

        color: rgba(255, 255, 255, 0.6);
      }

      .trustpilot-text strong {
        color: var(--white);
      }

      .trustpilot-link {
        color: #00b67a;

        font-size: 13px;

        font-weight: 600;

        text-decoration: none;

        margin-left: auto;
      }

      .trustpilot-link:hover {
        text-decoration: underline;
      }

      /* === RELATED PAGES === */

      .related-section {
        padding: 56px 0 48px;

        background: var(--white);

        border-top: 1px solid var(--border);
      }

      .related-section h2 {
        font-size: 1rem;

        font-weight: 700;

        color: var(--off-black);

        margin-bottom: 20px;
      }

      .related-pills {
        display: flex;

        flex-wrap: wrap;

        gap: 10px;

        list-style: none;
      }

      .pill {
        display: inline-flex;

        align-items: center;

        border: 1px solid var(--border);

        border-radius: 100px;

        padding: 9px 18px;

        font-size: 13px;

        font-weight: 500;

        color: var(--off-black);

        text-decoration: none;

        transition:
          border-color 0.15s ease,
          color 0.15s ease;

        min-height: 44px;
      }

      .pill:hover {
        border-color: var(--accent);

        color: var(--accent);
      }

      /* === CLOSING CTA === */

      .closing-cta {
        padding: 96px 0;

        background: var(--surface);

        text-align: center;
      }

      .closing-cta h2 {
        font-size: clamp(1.6rem, 3.5vw, 2.4rem);

        font-weight: 800;

        color: var(--off-black);

        letter-spacing: -0.03em;

        max-width: 600px;

        margin: 0 auto 16px;
      }

      .closing-cta p {
        font-size: 1rem;

        color: var(--mid-grey);

        max-width: 480px;

        margin: 0 auto 32px;

        line-height: 1.7;
      }

      .closing-contacts {
        display: flex;

        align-items: center;

        justify-content: center;

        gap: 24px;

        margin-top: 24px;

        flex-wrap: wrap;
      }

      .closing-contacts a {
        font-size: 14px;

        font-weight: 500;

        color: var(--mid-grey);

        text-decoration: none;

        display: flex;

        align-items: center;

        gap: 6px;
      }

      .closing-contacts a:hover {
        color: var(--accent);
      }

      .section-label {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--mid-grey);
        margin-bottom: 8px;
        display: block;
      }

      /* === STICKY MOBILE CTA === */

      @media (max-width: 767px) {
        .sticky-mobile-cta {
          display: flex;

          position: fixed;

          bottom: 0;

          left: 0;

          right: 0;

          background: var(--accent);

          padding: 14px 20px;

          z-index: 200;

          box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.2);

          gap: 12px;
        }

        .sticky-mobile-cta a {
          flex: 1;

          text-align: center;

          font-size: 15px;

          font-weight: 700;

          color: var(--white);

          text-decoration: none;

          padding: 12px;

          min-height: 44px;

          display: flex;

          align-items: center;

          justify-content: center;
        }

        .sticky-mobile-cta a.secondary {
          background: rgba(0, 0, 0, 0.25);

          border-radius: 6px;
        }
      }

      @media (min-width: 768px) {
        .sticky-mobile-cta {
          display: none;
        }
      }

      /* === RESPONSIVE === */

      @media (max-width: 960px) {
        .partner-grid {
          grid-template-columns: repeat(3, 1fr);
        }

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

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

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

          gap: 32px;
        }

        .process-steps::before {
          display: none;
        }

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

.case-study-grid {
          grid-template-columns: 1fr;
        }

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

      @media (max-width: 640px) {
        .partner-grid {
          grid-template-columns: 1fr 1fr;
        }

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

        .edu-module {
          padding: 24px 20px;
        }

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

        .trustpilot-link {
          margin-left: 0;
        }

        .cs-metrics-row {
          grid-template-columns: repeat(3, 1fr);

          gap: 8px;
        }

        .cs-metric-value {
          font-size: 1.1rem;
        }

      }

.cms2026-btn-secondary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 15px 26px;
      border-radius: 8px;
      font-weight: 700;
      font-size: 0.9375rem;
      text-decoration: none;
      min-height: 50px;
      border: 1.5px solid var(--border);
      color: var(--off-black);
      background: var(--white);
      transition: background 0.18s ease;
    }

    .cms2026-btn-secondary:hover {
      background: var(--surface);
      text-decoration: none;
    }

    .cms2026-hero-trust {
      font-size: 0.8125rem;
      color: var(--off-black);
      margin: 0;
      max-width: none;
    }

    .cms2026-hero-trust a {
      color: var(--accent);
      text-decoration: none;
    }

    .cms2026-hero-trust a:hover {
      text-decoration: underline;
    }

    .cms2026-hero-trust .stars {
      color: #00b67a;
      letter-spacing: 1px;
    }

    .deck-hero.cms2026-hero {
      padding-bottom: 56px;
    }

    .deck-hero .cms2026-hero-inner {
      display: flex;
      flex-direction: column;
      gap: clamp(28px, 4vw, 40px);
      grid-template-columns: unset;
      max-width: var(--max-width);
    }

    .deck-hero .wd-hero-badge {
      width: 100%;
    }

    .deck-hero .wd-hero-badge .cms2026-badge {
      display: inline-flex;
      align-items: center;
      margin-bottom: 0;
    }

    .deck-hero .wd-hero-split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      column-gap: clamp(32px, 5vw, 56px);
      row-gap: clamp(16px, 2.5vw, 24px);
      align-items: stretch;
    }

    .deck-hero .wd-hero-copy {
      display: flex;
      flex-direction: column;
      gap: clamp(16px, 2.5vw, 24px);
      min-height: 100%;
    }

    .deck-hero .wd-hero-copy h1,
    .deck-hero .wd-hero-copy .cms2026-hero-lead {
      margin-bottom: 0;
      max-width: none;
    }

    .deck-hero .wd-hero-cta {
      padding-top: 4px;
    }

    .deck-hero .wd-hero-cta .cms2026-cta-row {
      margin-bottom: 0;
    }

    .deck-hero .wd-hero-split .cms2026-hero-figure {
      height: 100%;
      min-height: 100%;
      aspect-ratio: unset;
      align-self: stretch;
      margin: 0;
    }

    .deck-hero .wd-hero-split .cms2026-hero-figure img {
      height: 100%;
      object-fit: cover;
    }

    .deck-hero .wd-hero-meta {
      width: 100%;
      max-width: none;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 14px 20px;
      padding: 14px 18px;
      border: 1px solid var(--border);
      border-radius: 10px;
      background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
    }

    .deck-hero .wd-hero-meta .cms2026-author {
      max-width: none;
      border-top: none;
      margin-bottom: 0;
      padding: 0;
      gap: 10px;
      flex: 1 1 220px;
    }

    .deck-hero .wd-hero-meta .cms2026-avatar {
      width: 36px;
      height: 36px;
      font-size: 0.75rem;
    }

    .deck-hero .wd-hero-meta .cms2026-author-meta {
      font-size: 0.75rem;
      line-height: 1.45;
    }

    .deck-hero .wd-hero-meta .cms2026-author-meta strong {
      font-size: 0.8125rem;
      margin-bottom: 1px;
    }

    .deck-hero .wd-hero-meta .cms2026-author-meta span {
      color: var(--mid-grey);
    }

    .deck-hero .wd-hero-meta .cms2026-hero-trust {
      padding-left: 20px;
      border-left: 1px solid var(--border);
      font-size: 0.8125rem;
      line-height: 1.45;
      color: var(--mid-grey);
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 6px 8px;
      flex: 0 1 auto;
    }

    .deck-hero .wd-hero-meta .cms2026-hero-trust strong {
      color: var(--off-black);
    }

    .btn-primary {
      background-color: var(--accent);
      color: var(--white);
      font-weight: 700;
      font-size: 1rem;
      padding: 14px 28px;
      border-radius: 6px;
      text-decoration: none;
      transition: background-color 0.15s ease;
      min-height: 44px;
      display: inline-flex;
      align-items: center;
    }

    .btn-primary:hover {
      background-color: var(--accent-dark);
    }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      background: transparent;
      color: var(--off-black);
      font-weight: 600;
      font-size: 1rem;
      padding: 13px 27px;
      border-radius: 6px;
      border: 2px solid var(--off-black);
      text-decoration: none;
      transition: border-color 0.15s ease, color 0.15s ease;
      min-height: 44px;
    }

    .btn-secondary:hover {
      border-color: var(--accent);
      color: var(--accent);
    }

    /* ── SPLIT LAYOUTS ── */
    .split-band {
      padding: clamp(48px, 6vw, 72px) 0;
    }

    .split-band--surface {
      background: var(--surface);
      border-block: 1px solid var(--border);
    }

    .split-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      gap: clamp(28px, 4vw, 48px);
      align-items: stretch;
    }

    .split-grid--media-left .split-media {
      order: -1;
    }

    .split-content {
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-width: 0;
    }

    .split-eyebrow {
      font-size: 0.8125rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 10px;
    }

    .split-content h2 {
      font-size: clamp(1.35rem, 2.8vw, 1.875rem);
      line-height: 1.2;
      letter-spacing: -0.02em;
      margin-bottom: 18px;
      max-width: 22ch;
    }

    .split-lead {
      font-size: 1.0625rem;
      font-weight: 600;
      line-height: 1.65;
      color: var(--off-black);
      margin-bottom: 14px;
      max-width: 100%;
    }

    .split-content p {
      font-size: 0.9875rem;
      line-height: 1.72;
      color: #3a3a3a;
      max-width: 100%;
      margin-bottom: 0;
    }

    .split-content p strong,
    .split-content p b {
      color: var(--off-black);
      font-weight: 700;
    }

    .split-media {
      display: flex;
      flex-direction: column;
      min-width: 0;
    }

    .split-figure {
      flex: 1 1 auto;
      margin: 0;
      border-radius: 14px;
      overflow: hidden;
      border: 1px solid var(--border);
      background: var(--white);
      box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
      min-height: 0;
    }

    .split-figure img {
      width: 100%;
      height: 100%;
      min-height: 100%;
      object-fit: cover;
      display: block;
    }

    .split-caption {
      margin-top: 12px;
      font-size: 0.75rem;
      color: var(--mid-grey);
      line-height: 1.45;
      max-width: 100%;
    }

    @media (min-width: 992px) {
      .split-media {
        min-height: 100%;
      }

      .split-figure {
        min-height: 320px;
      }
    }

    @media (max-width: 991px) {
      .split-grid {
        grid-template-columns: 1fr;
      }

      .split-grid--media-left .split-media {
        order: 0;
      }

      .split-content h2 {
        max-width: none;
      }

      .split-figure img {
        aspect-ratio: 16 / 10;
        min-height: 260px;
      }
    }

    /* ── PARTNER GRID — SaaS-style letterform ── */
    .partner-section {
      background: var(--white);
      border-bottom: 1px solid var(--border);
      padding-block: 52px;
    }

    .partner-section__label {
      display: block;
      width: 100%;
      max-width: none;
      text-align: center;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.6px;
      text-transform: uppercase;
      color: var(--mid-grey);
      margin: 0 auto 32px;
    }

    .partner-section .partner-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .partner-grid__item {
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 18px 14px;
      background: var(--surface);
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 68px;
      transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
    }

    .partner-grid__item:hover {
      border-color: rgba(232, 83, 10, 0.28);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }

    .partner-grid__name {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 0.4em;
      font-size: 13px;
      font-weight: 700;
      line-height: 1.3;
      text-align: center;
      margin: 0;
    }

    .partner-grid__brand {
      display: inline-flex;
      align-items: center;
      flex-wrap: wrap;
      justify-content: center;
      white-space: nowrap;
    }

    .partner-grid__suffix {
      white-space: nowrap;
    }

    .lf-blue { color: #1a73e8; }
    .lf-red { color: #ea4335; }
    .lf-yellow { color: #fbbc05; }
    .lf-green { color: #34a853; }
    .lf-orange { color: var(--accent); }
    .lf-navy { color: #003087; }
    .lf-teal { color: #00b5ad; }
    .lf-dark { color: var(--off-black); }
    .lf-black { color: #000000; }
    .lf-pink { color: #e1306c; }

    /* ── CONTENT SECTIONS ── */
    .section-padded {
      padding: 72px 0;
    }

    .section-surface {
      background-color: var(--surface);
    }

    .section-dark {
      background-color: var(--off-black);
      color: var(--white);
    }

    .section-heading {
      margin-bottom: 16px;
    }

    .section-subheading {
      font-size: 1.0625rem;
      color: var(--mid-grey);
      max-width: 600px;
      margin-bottom: 48px;
    }

    /* ── PROBLEM / STAKES ── */
    .problem-section {
      padding: clamp(48px, 6vw, 72px) 0;
    }

    .problem-split {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      gap: clamp(28px, 4vw, 48px);
      align-items: stretch;
      margin-bottom: clamp(28px, 4vw, 40px);
    }

    .problem-split__media {
      display: flex;
      flex-direction: column;
      min-width: 0;
    }

    .problem-split__figure {
      flex: 1 1 auto;
      margin: 0;
      border-radius: 14px;
      overflow: hidden;
      border: 1px solid var(--border);
      background: var(--surface);
      box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
      min-height: 0;
    }

    .problem-split__figure img {
      width: 100%;
      height: 100%;
      min-height: 100%;
      object-fit: cover;
      display: block;
    }

    .problem-split__copy {
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-width: 0;
    }

    .problem-lead {
      font-size: 1.0625rem;
      font-weight: 600;
      line-height: 1.65;
      color: var(--off-black);
      margin-bottom: 0;
      max-width: 100%;
    }

    @media (min-width: 992px) {
      .problem-split__media {
        min-height: 100%;
      }

      .problem-split__figure {
        min-height: 320px;
      }
    }

    @media (max-width: 991px) {
      .problem-split {
        grid-template-columns: 1fr;
      }

      .problem-split__figure img {
        aspect-ratio: 16 / 10;
        min-height: 260px;
      }
    }

    /* ── PRACTITIONER EDUCATION MODULE ── */
    .edu-module {
      background: var(--surface);
      border-block: 1px solid var(--border);
      padding: clamp(40px, 5vw, 64px) 0;
      margin: 0;
    }

    .edu-split {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      gap: clamp(28px, 4vw, 48px);
      align-items: stretch;
    }

    .edu-split__copy {
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-width: 0;
    }

    .edu-split__media {
      display: flex;
      flex-direction: column;
      min-width: 0;
    }

    .edu-split__figure {
      flex: 1 1 auto;
      margin: 0;
      border-radius: 14px;
      overflow: hidden;
      border: 1px solid var(--border);
      background: var(--white);
      box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
      min-height: 0;
    }

    .edu-split__figure img {
      width: 100%;
      height: 100%;
      min-height: 100%;
      object-fit: cover;
      display: block;
    }

    @media (min-width: 992px) {
      .edu-split__media {
        min-height: 100%;
      }

      .edu-split__figure {
        min-height: 320px;
      }
    }

    @media (max-width: 991px) {
      .edu-split {
        grid-template-columns: 1fr;
      }

      .edu-split__figure img {
        aspect-ratio: 16 / 10;
        min-height: 260px;
      }
    }

    .edu-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 8px;
    }

    .edu-module h2,
    .edu-split__copy h2 {
      font-size: clamp(1.5rem, 3vw, 2.1rem);
      font-weight: 800;
      line-height: 1.2;
      letter-spacing: -0.025em;
      color: var(--off-black);
      margin-bottom: 24px;
      max-width: 100%;
    }

    /* ── WHY / SPLIT CTA ── */
    .why-section {
      padding: clamp(48px, 6vw, 72px) 0;
      background: var(--white);
    }

    .why-split {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      gap: clamp(28px, 4vw, 48px);
      align-items: stretch;
    }

    .why-split__media {
      display: flex;
      flex-direction: column;
      min-width: 0;
    }

    .why-split__figure {
      flex: 1 1 auto;
      margin: 0;
      border-radius: 14px;
      overflow: hidden;
      border: 1px solid var(--border);
      background: var(--surface);
      box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
      min-height: 0;
    }

    .why-split__figure img {
      width: 100%;
      height: 100%;
      min-height: 100%;
      object-fit: cover;
      display: block;
    }

    .why-split__copy {
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-width: 0;
    }

    .why-split__copy h2 {
      margin-bottom: 16px;
    }

    .why-split__copy p {
      font-size: 1.0625rem;
      color: var(--mid-grey);
      margin-bottom: 0;
      max-width: 100%;
    }

    @media (min-width: 992px) {
      .why-split__media {
        min-height: 100%;
      }

      .why-split__figure {
        min-height: 320px;
      }
    }

    @media (max-width: 991px) {
      .why-split {
        grid-template-columns: 1fr;
      }

      .why-split__figure img {
        aspect-ratio: 16 / 10;
        min-height: 260px;
      }
    }

    @media (max-width: 991px) {
      .deck-hero .wd-hero-split {
        grid-template-columns: 1fr;
      }

      .deck-hero .wd-hero-split .cms2026-hero-figure {
        min-height: clamp(260px, 52vw, 380px);
      }

      .deck-hero .wd-hero-meta {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 10px;
        padding: 12px 14px;
        border-radius: 12px;
        box-shadow: 0 4px 18px rgba(20, 18, 14, 0.07);
      }

      .deck-hero .wd-hero-meta .cms2026-author {
        width: 100%;
        flex: 0 0 auto;
        gap: 8px;
      }

      .deck-hero .wd-hero-meta .cms2026-hero-trust {
        width: 100%;
        flex: 0 0 auto;
        padding-left: 0;
        padding-top: 10px;
        border-left: none;
        border-top: 1px solid var(--border);
      }
    }

    @media (max-width: 767px) {
      .deck-hero .wd-hero-meta {
        padding: 10px 12px;
        gap: 0;
        background: #fff;
        box-shadow:
          0 1px 2px rgba(20, 18, 14, 0.04),
          0 6px 20px rgba(20, 18, 14, 0.06);
      }

      .deck-hero .wd-hero-meta .cms2026-author {
        align-items: center;
        gap: 10px;
      }

      .deck-hero .wd-hero-meta .cms2026-avatar {
        width: 34px;
        height: 34px;
        font-size: 0.6875rem;
      }

      .deck-hero .wd-hero-meta .cms2026-author-meta {
        font-size: 0.6875rem;
        line-height: 1.35;
      }

      .deck-hero .wd-hero-meta .cms2026-author-meta strong {
        font-size: 0.8125rem;
        margin-bottom: 0;
      }

      .deck-hero .wd-hero-meta .cms2026-hero-trust {
        margin-top: 8px;
        padding: 8px 0 0 44px;
        border-top: none;
        font-size: 0.6875rem;
        line-height: 1.4;
        gap: 3px 5px;
      }

      .deck-hero .wd-hero-meta .cms2026-hero-trust .stars {
        font-size: 0.625rem;
        letter-spacing: 0;
      }

      .partner-section .partner-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    
    .cs-screenshot { margin-bottom: 20px; border-radius: 10px; overflow: hidden; border: 1px solid var(--border); box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
    .cs-screenshot img { width: 100%; height: auto; display: block; }
    .services-section .service-card { display: flex; flex-direction: column; }

    .cta-band:not(.cta-band--surface) {
      background: linear-gradient(135deg, var(--accent) 0%, #c44208 100%);
      padding: clamp(52px, 7vw, 72px) 0;
      text-align: center;
    }

    .cta-band-inner {
      max-width: 720px;
      margin: 0 auto;
      text-align: center;
    }

    .cta-band:not(.cta-band--surface) h2 {
      color: var(--white);
      max-width: 640px;
      margin: 0 auto 18px;
      line-height: 1.15;
      letter-spacing: -0.025em;
    }

    .cta-band:not(.cta-band--surface) p {
      color: rgba(255, 255, 255, 0.88);
      font-size: 1.0625rem;
      line-height: 1.7;
      max-width: 560px;
      margin: 0 auto 32px;
    }

    .cta-band .btn-white {
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .cta-band--surface { background: var(--surface); border-block: 1px solid var(--border); text-align: center; padding: clamp(48px, 6vw, 64px) 0; }
    .cta-band--surface h2, .cta-band--surface p { color: var(--off-black); max-width: 640px; margin-left: auto; margin-right: auto; }
    .cta-band--surface p { color: var(--mid-grey); }
    .cta-band.cta-band--surface:has(+ .lg-podcast-section) {
      padding-bottom: clamp(24px, 3.5vw, 36px);
    }
    .lg-podcast-section + .faq-section {
      padding-top: clamp(28px, 4vw, 44px);
    }
    
      /* === REDUCED MOTION === */

      @media (prefers-reduced-motion: reduce) {
        *,
        *::before,
        *::after {
          animation-duration: 0.01ms !important;

          animation-iteration-count: 1 !important;

          transition-duration: 0.01ms !important;

          scroll-behavior: auto !important;
        }
      }
