    :root {
      --primary: #5271FF;
      --primary-dark: #2E45D4;
      --blue-deep: #0008FC;
      --dark: #151515;
      --dark-soft: #1F1F1F;
      --cream: #FAF4E8;
      --light: #ECF2FE;
      --white: #FFFFFF;
      --accent: #E40E49;
      --text: #151515;
      --muted: #5C5C66;
      --border: #E7E2D6;
      --shadow: 0 4px 24px rgba(21, 21, 21, 0.06);
      --shadow-strong: 0 16px 44px rgba(21, 21, 21, 0.12);
      --radius-card: 14px;
      --radius-button: 10px;
      --max-width: 1140px;
      --font: 'Sofia Sans', 'Helvetica Neue', Arial, sans-serif;
      --font-display: 'Sofia Sans', 'Helvetica Neue', Arial, sans-serif;
      --transition: 240ms ease;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      min-width: 320px;
      font-family: var(--font);
      color: var(--text);
      background: var(--white);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    body.menu-open {
      overflow: hidden;
    }

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

    a {
      color: inherit;
      text-decoration: none;
    }

    button {
      font: inherit;
    }

    .container {
      width: min(100% - 40px, var(--max-width));
      margin: 0 auto;
    }

    section {
      position: relative;
      padding: 76px 0;
      overflow: hidden;
    }

    .section-light {
      background: var(--light);
    }

    .section-cream {
      background: var(--cream);
    }

    .section-white {
      background: var(--white);
    }

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

    .eyebrow {
      display: inline-block;
      margin-bottom: 14px;
      color: var(--primary);
      font-size: 0.74rem;
      font-weight: 800;
      line-height: 1.3;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .section-kicker {
      color: var(--primary);
      font-size: 0.76rem;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    h1,
    h2,
    h3 {
      line-height: 1.12;
      letter-spacing: 0;
    }

    h1 {
      max-width: 870px;
      color: var(--text);
      font-family: var(--font-display);
      font-size: clamp(2.3rem, 10vw, 4.75rem);
      font-weight: 800;
      line-height: 1.05;
    }

    h2 {
      color: inherit;
      font-family: var(--font-display);
      font-size: clamp(2rem, 7vw, 3.2rem);
      font-weight: 800;
    }

    h3 {
      font-size: 1.2rem;
      font-weight: 800;
    }

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

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

    .section-sub {
      margin-top: 14px;
      color: var(--muted);
      font-size: 1.04rem;
    }

    .section-dark .section-sub,
    .section-dark .muted-on-dark {
      color: rgba(255, 255, 255, 0.70);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 13px 22px;
      border: 1px solid transparent;
      border-radius: var(--radius-button);
      font-weight: 800;
      line-height: 1;
      white-space: nowrap;
      cursor: pointer;
      transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
    }

    .btn:hover,
    .btn:focus-visible {
      transform: translateY(-1px);
    }

    .btn-primary {
      color: var(--white);
      background: var(--primary);
    }

    .btn-primary:hover,
    .btn-primary:focus-visible {
      background: var(--primary-dark);
      box-shadow: 0 10px 30px rgba(82, 113, 255, 0.25);
    }

    .btn-secondary {
      color: var(--white);
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(255, 255, 255, 0.22);
    }

    .btn-secondary:hover,
    .btn-secondary:focus-visible {
      background: rgba(255, 255, 255, 0.14);
    }

    .btn-large {
      min-height: 56px;
      padding: 16px 30px;
      font-size: 1.04rem;
    }

    .site-header {
      position: fixed;
      inset: 0 0 auto 0;
      z-index: 50;
      padding: 16px 0;
      color: var(--text);
      transition: background var(--transition), box-shadow var(--transition), color var(--transition), padding var(--transition);
    }

    .site-header.is-scrolled {
      padding: 10px 0;
      color: var(--text);
      background: rgba(255, 255, 255, 0.96);
      box-shadow: var(--shadow);
      backdrop-filter: blur(14px);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .logo {
      font-size: 1.05rem;
      font-weight: 800;
      letter-spacing: 0;
    }

    .header-btn {
      min-height: 44px;
      padding: 12px 18px;
      font-size: 0.94rem;
    }

    .hero {
      position: relative;
      padding: 132px 0 0;
      color: var(--text);
      background:
        radial-gradient(circle at 86% 12%, rgba(82, 113, 255, 0.16), transparent 44%),
        radial-gradient(circle at 4% 92%, rgba(82, 113, 255, 0.10), transparent 42%),
        linear-gradient(180deg, var(--cream), #FBF7EF);
    }

    .hero .container {
      width: min(100% - 40px, var(--max-width));
    }

    .hero-content {
      max-width: 920px;
      padding: 42px 0 60px;
    }

    .hero h1 {
      max-width: 100%;
      color: var(--text);
    }

    .hero h1 .hl {
      color: var(--primary);
    }

    .hero-sub {
      max-width: 780px;
      margin-top: 22px;
      color: #3A3A42;
      font-size: clamp(1.05rem, 4vw, 1.22rem);
      line-height: 1.72;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 16px;
      margin-top: 32px;
    }

    .hero-note {
      margin-top: 14px;
      color: var(--muted);
      font-size: 0.95rem;
      font-weight: 600;
    }

    .trust-line {
      display: flex;
      flex-wrap: wrap;
      gap: 10px 18px;
      margin-top: 34px;
      color: var(--muted);
      font-size: 0.92rem;
      font-weight: 600;
    }

    .trust-line span {
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }

    .trust-line span + span::before {
      content: "";
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: rgba(21, 21, 21, 0.28);
    }

    .stats-strip {
      width: 100%;
      background: var(--dark);
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1px;
      background: rgba(255, 255, 255, 0.08);
    }

    .stat {
      min-height: 112px;
      padding: 22px 18px;
      background: #181818;
    }

    .stat-value {
      color: var(--white);
      font-size: clamp(1.7rem, 7vw, 2.35rem);
      font-weight: 800;
      line-height: 1;
    }

    .stat-label {
      margin-top: 8px;
      color: rgba(255, 255, 255, 0.64);
      font-size: 0.88rem;
      font-weight: 700;
    }

    .proof-bar {
      padding: 32px 0;
      background: var(--white);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      overflow: hidden;
    }

    .proof-inner {
      display: block;
    }

    .proof-label {
      margin-bottom: 22px;
      color: var(--muted);
      font-size: 0.70rem;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-align: center;
      text-transform: uppercase;
    }

    .marquee-wrap {
      overflow: hidden;
      user-select: none;
      mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
    }

    .marquee-track {
      display: flex;
      align-items: center;
      gap: 96px;
      width: max-content;
      animation: marquee 40s linear infinite;
    }

    .marquee-logo {
      display: block;
      width: auto;
      height: 100px;
      max-width: 260px;
      object-fit: contain;
      flex-shrink: 0;
      opacity: 0.45;
      filter: invert(1) grayscale(1);
      transition: opacity var(--transition), filter var(--transition);
    }

    .marquee-logo:hover {
      opacity: 0.85;
      filter: invert(1) grayscale(0);
    }

    @keyframes marquee {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    .audience-grid,
    .offer-grid,
    .pricing-grid,
    .testimonial-grid {
      display: grid;
      gap: 18px;
    }

    .card {
      border: 1px solid var(--border);
      border-radius: var(--radius-card);
      background: var(--white);
      box-shadow: var(--shadow);
      transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    }

    .card:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-strong);
    }

    .audience-card {
      padding: 28px;
    }

    .line-icon {
      width: 42px;
      height: 42px;
      margin-bottom: 22px;
      color: var(--primary);
    }

    .audience-card p,
    .case-card p,
    .testimonial-card p {
      margin-top: 12px;
      color: var(--muted);
    }

    .fit-note {
      max-width: 780px;
      margin: 28px auto 0;
      color: #44464F;
      font-size: 1.02rem;
      font-style: italic;
      text-align: center;
    }

    .offer-card {
      position: relative;
      padding: 28px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: var(--radius-card);
      background: var(--dark-soft);
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.16);
      transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    }

    .offer-card:hover {
      transform: translateY(-2px);
      border-color: rgba(82, 113, 255, 0.55);
      box-shadow: 0 18px 44px rgba(0, 0, 0, 0.20);
    }

    .offer-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 18px;
    }

    .offer-card h3 {
      max-width: 420px;
      color: var(--white);
    }

    .value-badge {
      flex: 0 0 auto;
      max-width: 170px;
      padding: 8px 10px;
      border: 1px solid rgba(82, 113, 255, 0.36);
      border-radius: 999px;
      color: #D9E2FF;
      background: rgba(82, 113, 255, 0.10);
      font-size: 0.78rem;
      font-weight: 800;
      line-height: 1.25;
      text-align: center;
    }

    .offer-list {
      display: grid;
      gap: 12px;
      list-style: none;
    }

    .offer-list li {
      position: relative;
      padding-left: 22px;
      color: rgba(255, 255, 255, 0.74);
    }

    .offer-list li::before {
      content: "";
      position: absolute;
      top: 0.72em;
      left: 0;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--primary);
    }

    .offer-list strong {
      color: rgba(255, 255, 255, 0.92);
    }

    .card-note {
      margin-top: 18px;
      color: rgba(255, 255, 255, 0.56);
      font-size: 0.92rem;
    }

    .total-value {
      margin-top: 28px;
      padding: 24px;
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: var(--radius-card);
      color: var(--white);
      background: rgba(255, 255, 255, 0.05);
      font-size: clamp(1.4rem, 6vw, 2.2rem);
      font-weight: 800;
      text-align: center;
    }

    .guarantee {
      padding: 48px 0;
      color: var(--white);
      background: var(--primary);
    }

    .guarantee-inner {
      display: grid;
      gap: 18px;
      align-items: start;
    }

    .shield {
      width: 48px;
      height: 48px;
      color: var(--white);
    }

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

    .guarantee p {
      max-width: 880px;
      color: rgba(255, 255, 255, 0.88);
      font-size: 1.08rem;
      line-height: 1.78;
    }

    .strategist-grid {
      display: grid;
      gap: 20px;
    }

    .founder-card {
      overflow: hidden;
      border: 1px solid var(--border);
      border-radius: var(--radius-card);
      background: var(--white);
      box-shadow: var(--shadow);
    }

    .founder-media {
      position: relative;
      min-height: 280px;
      overflow: hidden;
      background: var(--primary);
    }

    .founder-media.salina {
      min-height: 230px;
      background: var(--primary);
    }

    .founder-media img {
      width: 100%;
      height: 100%;
      min-height: inherit;
      object-fit: cover;
    }

    .founder-label {
      position: absolute;
      left: 18px;
      bottom: 18px;
      padding: 8px 10px;
      border-radius: 999px;
      color: var(--white);
      background: rgba(21, 21, 21, 0.78);
      font-size: 0.78rem;
      font-weight: 800;
      letter-spacing: 0.08em;
    }

    .founder-body {
      padding: 28px;
    }

    .founder-title {
      margin: 8px 0 18px;
      color: var(--primary);
      font-weight: 800;
    }

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

    .founder-body p + p {
      margin-top: 16px;
    }

    .team-line {
      max-width: 820px;
      margin: 28px auto 0;
      color: #44464F;
      font-weight: 700;
      text-align: center;
    }

    .case-carousel {
      display: grid;
      grid-auto-columns: minmax(268px, 86%);
      grid-auto-flow: column;
      gap: 16px;
      margin: 0 -20px;
      padding: 0 20px 10px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
    }

    .case-carousel::-webkit-scrollbar {
      display: none;
    }

    .case-card {
      min-height: 100%;
      padding: 26px;
      scroll-snap-align: start;
    }

    .case-logo {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      width: 100%;
      min-height: 52px;
      margin-bottom: 22px;
    }

    .case-logo img {
      width: auto;
      max-width: 170px;
      max-height: 48px;
      object-fit: contain;
    }

    .case-logo-text {
      color: var(--text);
      font-size: 1.35rem;
      font-weight: 800;
      line-height: 1;
    }

    .case-label {
      color: var(--primary);
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .case-company {
      margin-top: 18px;
      color: var(--text);
      font-size: 1.14rem;
      font-weight: 800;
    }

    .case-role {
      margin-top: 4px;
      color: var(--muted);
      font-size: 0.94rem;
      font-weight: 700;
    }

    .case-link {
      display: inline-flex;
      margin-top: 18px;
      color: var(--primary);
      font-size: 0.94rem;
      font-weight: 800;
    }

    .case-link:hover,
    .case-link:focus-visible {
      color: var(--primary-dark);
    }

    .testimonial-grid {
      margin-top: 22px;
    }

    .testimonial-card {
      padding: 22px;
    }

    .testimonial-card blockquote {
      color: var(--text);
      font-size: 1.02rem;
      font-weight: 700;
      line-height: 1.55;
    }

    .testimonial-card cite {
      display: block;
      margin-top: 16px;
      color: var(--muted);
      font-style: normal;
      font-weight: 800;
    }

    .pricing-card {
      position: relative;
      padding: 30px;
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: var(--radius-card);
      color: var(--white);
      background: var(--dark-soft);
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.16);
    }

    .pricing-grid {
      max-width: 520px;
      margin-right: auto;
      margin-left: auto;
    }

    .pricing-card.recommended {
      border-color: var(--primary);
      box-shadow: 0 18px 52px rgba(82, 113, 255, 0.18);
    }

    .recommended-badge {
      display: inline-flex;
      margin-bottom: 18px;
      padding: 7px 10px;
      border-radius: 999px;
      color: var(--white);
      background: var(--primary);
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 0.10em;
      text-transform: uppercase;
    }

    .price-label {
      color: rgba(255, 255, 255, 0.62);
      font-size: 0.82rem;
      font-weight: 800;
      letter-spacing: 0.10em;
      text-transform: uppercase;
    }

    .price {
      margin: 12px 0;
      font-size: clamp(2.4rem, 12vw, 4rem);
      font-weight: 800;
      line-height: 1;
    }

    .pricing-card p {
      color: rgba(255, 255, 255, 0.70);
    }

    .pricing-card .btn {
      width: 100%;
      margin-top: 24px;
    }

    .pricing-footer {
      margin-top: 26px;
      color: rgba(255, 255, 255, 0.72);
      text-align: center;
    }

    .pricing-footer strong {
      color: var(--white);
    }

    .faq-list {
      display: grid;
      gap: 12px;
      max-width: 860px;
      margin: 0 auto;
    }

    .faq-item {
      border: 1px solid var(--border);
      border-radius: var(--radius-card);
      background: var(--white);
      box-shadow: var(--shadow);
    }

    .faq-question {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      min-height: 64px;
      gap: 18px;
      padding: 20px;
      border: 0;
      color: var(--text);
      background: transparent;
      font-weight: 800;
      text-align: left;
      cursor: pointer;
    }

    .faq-chevron {
      flex: 0 0 auto;
      width: 20px;
      height: 20px;
      color: var(--primary);
      transition: transform var(--transition);
    }

    .faq-item.is-open .faq-chevron {
      transform: rotate(180deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 260ms ease;
    }

    .faq-answer-inner {
      padding: 0 20px 22px;
      color: var(--muted);
    }

    .final-cta {
      text-align: center;
    }

    .final-cta h2,
    .final-cta p {
      max-width: 780px;
      margin-right: auto;
      margin-left: auto;
    }

    .final-cta .btn {
      margin-top: 28px;
    }

    .cta-trust {
      margin-top: 18px;
      color: rgba(255, 255, 255, 0.62);
      font-size: 0.94rem;
      font-weight: 700;
    }

    .footer {
      padding: 34px 0;
      color: rgba(255, 255, 255, 0.76);
      background: #0E0E0E;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-inner {
      display: grid;
      gap: 22px;
    }

    .footer-logo {
      color: var(--white);
      font-weight: 800;
    }

    .footer-nav {
      display: flex;
      flex-wrap: wrap;
      gap: 14px 20px;
      font-size: 0.94rem;
      font-weight: 700;
    }

    .footer-nav a:hover,
    .footer-nav a:focus-visible {
      color: var(--white);
    }

    .footer-meta {
      display: grid;
      gap: 4px;
      font-size: 0.92rem;
    }

    .reveal {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity 600ms ease, transform 600ms ease;
    }

    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    :focus-visible {
      outline: 3px solid rgba(82, 113, 255, 0.45);
      outline-offset: 3px;
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        scroll-behavior: auto;
        animation-duration: 1ms;
        animation-iteration-count: 1;
        transition-duration: 1ms;
      }

      .reveal {
        opacity: 1;
        transform: none;
      }
    }

    @media (min-width: 640px) {
      .stats-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
      }

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

    @media (min-width: 768px) {
      .container {
        width: min(100% - 64px, var(--max-width));
      }

      section {
        padding: 96px 0;
      }

      .hero {
        padding-top: 148px;
      }

      .hero .container {
        width: min(100% - 64px, var(--max-width));
      }

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

      .pricing-grid {
        grid-template-columns: minmax(0, 1fr);
        align-items: stretch;
      }

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

      .strategist-grid {
        grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
        align-items: stretch;
      }

      .case-carousel {
        grid-auto-flow: initial;
        grid-auto-columns: initial;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        margin: 0;
        padding: 0;
        overflow: visible;
      }

      .guarantee-inner {
        grid-template-columns: auto minmax(0, 1fr);
      }

      .footer-inner {
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
      }

      .footer-meta {
        justify-items: end;
        text-align: right;
      }
    }

    @media (min-width: 1280px) {
      .container {
        width: min(100% - 80px, var(--max-width));
      }

      h1 {
        font-size: 4.7rem;
      }
    }

    @media (max-width: 767px) {
      h1 {
        max-width: 100%;
        font-size: 2rem;
      }

      .site-header {
        padding: 12px 0;
      }

      .header-inner {
        gap: 12px;
      }

      .logo {
        font-size: 0.98rem;
      }

      .header-btn {
        padding: 12px 14px;
        font-size: 0.88rem;
      }

      .hero-content {
        padding-top: 24px;
      }

      .trust-line {
        display: grid;
      }

      .trust-line span + span::before {
        display: none;
      }

      .offer-top {
        display: grid;
      }

      .value-badge {
        max-width: 100%;
        justify-self: start;
      }

      .btn-large,
      .hero-actions .btn {
        width: 100%;
      }

      .testimonial-grid {
        grid-auto-columns: minmax(268px, 86%);
        grid-auto-flow: column;
        grid-template-columns: none;
        margin-right: -20px;
        margin-left: -20px;
        padding: 0 20px 10px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
      }

      .testimonial-grid::-webkit-scrollbar {
        display: none;
      }

      .testimonial-card {
        scroll-snap-align: start;
      }
    }

    /* ---------------------------------------------------------------------
       Application form — the inline card in the closing section of the
       homepage, and the standalone /apply/ page. Both use .apply-card.
       --------------------------------------------------------------------- */

    .btn-ghost {
      color: var(--text);
      background: transparent;
      border-color: var(--border);
    }

    .btn-ghost:hover,
    .btn-ghost:focus-visible {
      border-color: var(--primary);
      color: var(--primary);
    }

    .page-apply .site-header {
      background: var(--white);
      box-shadow: var(--shadow);
    }

    .apply-section {
      padding: 116px 0 72px;
      background: var(--cream);
    }

    .apply-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
      gap: 48px;
      align-items: start;
    }

    .apply-intro h1 {
      margin-top: 10px;
    }

    .apply-sub {
      margin-top: 16px;
      max-width: 52ch;
      color: var(--muted);
      font-size: 1.06rem;
    }

    .apply-steps {
      margin-top: 32px;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 20px;
    }

    .apply-steps li {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      text-align: left;
    }

    .apply-step-num {
      flex: 0 0 28px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 28px;
      height: 28px;
      margin-top: 2px;
      border-radius: 50%;
      background: var(--primary);
      color: var(--white);
      font-size: 0.85rem;
      font-weight: 800;
      line-height: 1;
    }

    .apply-steps strong {
      display: block;
      font-size: 1.02rem;
    }

    .apply-steps p {
      margin-top: 4px;
      color: var(--muted);
      font-size: 0.96rem;
    }

    .apply-reassure {
      margin-top: 32px;
      padding: 20px 22px;
      border: 1px solid var(--border);
      border-left: 3px solid var(--primary);
      border-radius: var(--radius-card);
      background: var(--white);
    }

    .apply-guarantee-title {
      margin-bottom: 6px;
      font-weight: 800;
    }

    .apply-reassure p:last-child {
      color: var(--muted);
      font-size: 0.96rem;
    }

    /* --- The card ------------------------------------------------------- */

    .apply-card {
      padding: 30px;
      border: 1px solid var(--border);
      border-radius: var(--radius-card);
      background: var(--white);
      box-shadow: var(--shadow-strong);
      text-align: left;
      color: var(--text);
    }

    .apply-card-inline {
      max-width: 620px;
      margin: 32px auto 0;
    }

    .apply-card-badge {
      display: inline-block;
      padding: 6px 12px;
      border-radius: 999px;
      background: var(--light);
      color: var(--primary-dark);
      font-size: 0.78rem;
      font-weight: 800;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .apply-card-title {
      margin: 14px 0 22px;
      font-size: 1.32rem;
      font-weight: 800;
      line-height: 1.25;
    }

    /* --- Fields --------------------------------------------------------- */

    .apply-form {
      display: grid;
      gap: 16px;
    }

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

    .apply-field {
      display: grid;
      gap: 6px;
      min-width: 0;
    }

    .apply-field > span {
      font-size: 0.9rem;
      font-weight: 700;
    }

    .apply-field input,
    .apply-field select,
    .apply-field textarea {
      width: 100%;
      min-height: 48px;
      padding: 12px 14px;
      border: 1px solid var(--border);
      border-radius: var(--radius-button);
      background: var(--white);
      font: inherit;
      font-size: 1rem; /* 16px minimum stops iOS zooming on focus */
      color: var(--text);
      transition: border-color var(--transition), box-shadow var(--transition);
    }

    .apply-field textarea {
      min-height: auto;
      resize: vertical;
    }

    .apply-field input:focus-visible,
    .apply-field select:focus-visible,
    .apply-field textarea:focus-visible {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(82, 113, 255, 0.16);
    }

    .apply-field input::placeholder,
    .apply-field textarea::placeholder {
      color: rgba(92, 92, 102, 0.62);
    }

    .apply-submit {
      width: 100%;
      margin-top: 4px;
    }

    .apply-fineprint {
      color: var(--muted);
      font-size: 0.86rem;
      text-align: center;
    }

    /* --- Thank-you page -------------------------------------------------- */

    .thanks-inner {
      max-width: 620px;
      margin: 0 auto;
      text-align: center;
    }

    .thanks-check {
      width: 56px;
      height: 56px;
      margin: 0 auto 20px;
      color: var(--primary);
    }

    .thanks-inner .apply-sub {
      margin-right: auto;
      margin-left: auto;
    }

    .thanks-steps {
      margin: 36px 0;
      padding: 26px;
      border: 1px solid var(--border);
      border-radius: var(--radius-card);
      background: var(--white);
    }

    .thanks-note {
      margin-bottom: 18px;
      color: var(--muted);
      font-size: 0.96rem;
    }

    @media (max-width: 900px) {
      .apply-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 36px;
      }

      .apply-section {
        padding: 100px 0 56px;
      }
    }

    @media (max-width: 640px) {
      .apply-card {
        padding: 22px;
      }

      .apply-row {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    /* ---------------------------------------------------------------------
       Done For You additions — service cards, the "how we work together"
       cards, and the monthly price line. Built from
       the same tokens as the rest of the page so it stays in step with
       bootcamp and webinar.
       --------------------------------------------------------------------- */

    .service-grid,
    .agreement-grid {
      display: grid;
      gap: 18px;
    }

    .service-card {
      padding: 28px;
    }

    .service-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 18px;
    }

    .service-top .line-icon {
      margin-bottom: 0;
    }

    .service-badge {
      flex: 0 0 auto;
      padding: 6px 12px;
      border-radius: 999px;
      color: var(--primary-dark);
      background: var(--light);
      font-size: 0.76rem;
      font-weight: 800;
      line-height: 1.25;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .service-text {
      margin-top: 10px;
      color: var(--muted);
    }

    .service-list {
      display: grid;
      gap: 10px;
      margin-top: 16px;
      list-style: none;
    }

    .service-list li {
      position: relative;
      padding-left: 20px;
      color: var(--muted);
    }

    .service-list li::before {
      content: "";
      position: absolute;
      top: 0.68em;
      left: 0;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--primary);
    }

    /* The lead-generation card: the core of the offer, so it gets the full
       row and the dark treatment. */
    .service-card-featured {
      padding: 34px 30px;
      border-radius: var(--radius-card);
      color: var(--white);
      background: var(--dark);
      box-shadow: 0 18px 52px rgba(82, 113, 255, 0.18);
      border: 1px solid var(--primary);
    }

    .service-card-featured h3 {
      font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .service-card-featured .service-badge {
      color: var(--white);
      background: var(--primary);
    }

    .service-card-featured .service-text {
      color: rgba(255, 255, 255, 0.86);
      font-size: 1.08rem;
    }

    .service-card-featured .service-list {
      margin-top: 22px;
    }

    .service-card-featured .service-list li {
      color: rgba(255, 255, 255, 0.76);
    }

    .agreement-card {
      padding: 28px;
    }

    .agreement-card:hover {
      transform: none;
      box-shadow: var(--shadow);
    }

    .agreement-card h3 {
      margin-bottom: 18px;
    }

    .agreement-card-accent {
      border-color: transparent;
      color: var(--white);
      background: var(--dark);
    }

    .check-list {
      display: grid;
      gap: 12px;
      list-style: none;
    }

    .check-list li {
      position: relative;
      padding-left: 30px;
      color: #3A3A42;
    }

    .agreement-card-accent .check-list li {
      color: rgba(255, 255, 255, 0.78);
    }

    .check-list li::before {
      content: "";
      position: absolute;
      top: 0.3em;
      left: 0;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: var(--primary) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 12 4 4 8-9'/%3E%3C/svg%3E") center / 12px no-repeat;
    }

    .price-period {
      margin-left: 6px;
      color: rgba(255, 255, 255, 0.62);
      font-size: 1.1rem;
      font-weight: 700;
    }

    .pricing-terms {
      margin-top: 20px;
    }

    @media (min-width: 768px) {
      .service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .service-card-featured {
        grid-column: 1 / -1;
        padding: 40px;
      }

      .service-card-featured .service-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 36px;
      }

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