:root {
      --bg: #f7fbfb;
      --bg-2: #eef7f6;
      --surface: rgba(255,255,255,0.92);
      --surface-strong: rgba(255,255,255,0.96);
      --text: #0b1314;
      --muted: #556468;
      --line: rgba(11,19,20,0.08);
      --primary: #14ebd5;
      --primary-deep: #448283;
      --primary-soft: #cbe6e0;
      --shadow: 0 16px 40px rgba(32, 65, 72, 0.08);
      --radius-xl: 32px;
      --radius-lg: 24px;
      --radius-md: 18px;
      --max: 1200px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 10% 20%, rgba(20,235,213,0.08), transparent 0 22%),
        radial-gradient(circle at 90% 15%, rgba(68,130,131,0.08), transparent 0 18%),
        linear-gradient(180deg, #fcffff 0%, var(--bg) 45%, var(--bg-2) 100%);
      line-height: 1.5;
      overflow-x: hidden;
    }

    .ambient {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: -1;
      opacity: 0.55;
      overflow: hidden;
    }

    .orb {
      position: absolute;
      border-radius: 50%;
      will-change: transform;
      animation: drift 26s ease-in-out infinite;
      filter: blur(24px);
    }

    .orb.one {
      width: 18rem;
      height: 18rem;
      left: -4rem;
      top: 8rem;
      background: rgba(20,235,213,0.16);
    }

    .orb.two {
      width: 14rem;
      height: 14rem;
      right: -3rem;
      top: 22rem;
      background: rgba(68,130,131,0.12);
      animation-delay: -8s;
    }

    .orb.three {
      width: 16rem;
      height: 16rem;
      left: 40%;
      bottom: -4rem;
      background: rgba(203,230,224,0.4);
      animation-delay: -14s;
    }

    @keyframes drift {
      0%, 100% { transform: translate3d(0,0,0); }
      50% { transform: translate3d(0,-10px,0); }
    }

    .container {
      width: min(calc(100% - 40px), var(--max));
      margin: 0 auto;
    }

    .nav-wrap {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(247, 251, 251, 0.88);
      border-bottom: 1px solid rgba(11,19,20,0.05);
      backdrop-filter: saturate(140%) blur(8px);
    }

    nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 76px;
      gap: 18px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      color: inherit;
      font-weight: 700;
      letter-spacing: -0.02em;
    }

    .brand-mark {
      width: 38px;
      height: 38px;
      border-radius: 14px;
      background: linear-gradient(135deg, var(--primary), var(--primary-deep));
      box-shadow: 0 10px 24px rgba(20,235,213,0.20);
    }

    .menu-toggle {
      display: none;
      width: 48px;
      height: 48px;
      border: 1px solid rgba(11,19,20,0.08);
      border-radius: 14px;
      background: rgba(255,255,255,0.86);
      padding: 0;
      cursor: pointer;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
    }

    .menu-toggle span {
      display: block;
      width: 18px;
      height: 2px;
      background: var(--text);
      border-radius: 999px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 22px;
      flex-wrap: wrap;
    }

    .nav-links a {
      color: var(--muted);
      text-decoration: none;
      font-size: 0.95rem;
      transition: color 0.2s ease;
    }

    .nav-links a:hover,
    .nav-links a.active { color: var(--text); }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 52px;
      padding: 0 24px;
      border-radius: 999px;
      border: 1px solid transparent;
      text-decoration: none;
      font-weight: 600;
      transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
      cursor: pointer;
    }
    .btn:hover { transform: translateY(-1px); }
    .btn-primary {
      background: linear-gradient(135deg, var(--primary), #8ff7ea);
      color: #072221;
      box-shadow: 0 14px 30px rgba(20,235,213,0.18);
    }
    .btn-secondary {
      background: rgba(255,255,255,0.86);
      color: var(--text);
      border-color: rgba(11,19,20,0.08);
    }

    .founder-panel {
      padding: 60px 20px;
    }

    .founder-container {
      position: relative;
      max-width: 1200px;
      min-height: 460px;
      margin: 0 auto;
      border-radius: 24px;
      overflow: hidden;
      background: #f7f7f7;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }

    /* background image layer */
    .founder-bg {
      position: absolute;
      inset: 0;
      z-index: 1;
    }

    .founder-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 18% left center;
      display: block;
    }

    /* fade / readability layer */
    .founder-overlay {
      position: absolute;
      inset: 0;
      z-index: 2;
      background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.18) 32%,
        rgba(247, 247, 247, 0.82) 52%,
        rgba(247, 247, 247, 0.96) 68%,
        rgba(247, 247, 247, 1) 100%
      );
    }

    /* text content */
    .founder-content {
      position: relative;
      z-index: 3;
      max-width: 560px;
      margin-left: auto;
      padding: 70px 56px 70px 56px;
    }

    .founder-label {
      margin: 0 0 16px;
      font-size: 14px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--primary-deep);
      font-weight: 600;
    }

    .founder-content h2 {
      margin: 0 0 24px;
      font-size: 3rem;
      line-height: 1.05;
      color: #111;
    }

    .founder-description {
      margin: 0 0 28px;
      font-size: 1.15rem;
      line-height: 1.5;
      color: #4f4f4f;
    }


    .founder-button:hover {
      background: #10d4c0;
    }

    .founder-note {
      margin-top: 22px;
      font-size: 1rem;
      color: #7a7a7a;
    }

    /* mobile */
    @media (max-width: 900px) {
      .founder-container {
        min-height: auto;
      }

      .founder-bg {
        position: relative;
        height: 260px;
      }

      .founder-overlay {
        background: linear-gradient(
          to bottom,
          rgba(255, 255, 255, 0.05) 0%,
          rgba(247, 247, 247, 0.78) 70%,
          rgba(247, 247, 247, 1) 100%
        );
      }

      .founder-content {
        max-width: none;
        margin-left: 0;
        padding: 28px 24px 32px;
      }

      .founder-content h2 {
        font-size: 2rem;
      }

      .founder-description {
        font-size: 1rem;
      }
    }

    .hero {
      padding: 72px 0 48px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0,1.15fr) minmax(0,0.85fr);
      gap: 34px;
      align-items: stretch;
    }

    .glass {
      background: var(--surface);
      border: 1px solid rgba(255,255,255,0.6);
      box-shadow: var(--shadow);
      border-radius: var(--radius-xl);
    }

    .hero-copy {
      padding: 56px;
      min-height: 640px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 14px;
      border-radius: 999px;
      background: rgba(255,255,255,0.82);
      border: 1px solid rgba(11,19,20,0.06);
      width: fit-content;
      color: var(--primary-deep);
      font-size: 0.92rem;
      font-weight: 600;
      margin-bottom: 22px;
    }

    h1 {
      margin: 0;
      font-size: clamp(3rem, 7vw, 5.6rem);
      line-height: 0.98;
      letter-spacing: -0.06em;
      max-width: 12ch;
    }

    .hero-copy p {
      font-size: clamp(1.06rem, 1.5vw, 1.28rem);
      color: var(--muted);
      max-width: 44ch;
      margin: 24px 0 0;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 32px;
    }

    .hero-points {
      display: grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap: 14px;
      margin-top: 42px;
    }

    .hero-point {
      padding: 18px;
      border-radius: var(--radius-md);
      background: rgba(255,255,255,0.7);
      border: 1px solid rgba(11,19,20,0.05);
    }
    .hero-point strong {
      display: block;
      font-size: 0.95rem;
      letter-spacing: -0.02em;
    }
    .hero-point span {
      display: block;
      margin-top: 6px;
      color: var(--muted);
      font-size: 0.92rem;
    }

    .hero-side {
      padding: 22px;
      display: grid;
      gap: 18px;
      grid-template-rows: 1.1fr 0.9fr;
      min-height: 560px;
    }

    .hero-visual {
      padding: 22px;
      min-height: 640px;
      display: grid;
      gap: 18px;
      grid-template-rows: 1.1fr 0.9fr;
    }

    .panel {
      border-radius: calc(var(--radius-xl) - 8px);
      background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.82));
      border: 1px solid rgba(11,19,20,0.06);
      padding: 24px;
      position: relative;
      overflow: hidden;
      box-shadow: 0 6px 18px rgba(32, 65, 72, 0.05);
    }

    .photo-panel {
      position: relative;
      padding: 0;
      min-height: 280px;
      overflow: hidden;
      background: linear-gradient(180deg, #f8fbfb 0%, #eef7f6 100%);
      display: flex;
      align-items: flex-end;
      justify-content: center;
    }

    .photo-panel img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 15%;
    }

    .photo-panel::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 90px;
      background: linear-gradient(to bottom, rgba(238,247,246,0) 0%, #eef7f6 100%);
      pointer-events: none;
    }

    .clinic-address {
      font-style: normal; /* removes italic default */
      color: var(--muted);
      line-height: 1.6;
      margin-top: 12px;
    }

    .clinic-address strong {
      color: var(--text);
      display: block;
      margin-bottom: 6px;
    }

    .footer-actions {
      display: flex;
      gap: 12px;
      align-items: center;
      flex-wrap: wrap;
    }

    .social-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 48px;
      height: 48px;
      border-radius: 14px;
      border: 1px solid rgba(11,19,20,0.08);
      background: rgba(255,255,255,0.86);
      transition: transform 0.18s ease, box-shadow 0.18s ease;
    }

    .social-icon svg {
      width: 20px;
      height: 20px;
      fill: var(--text);
    }

    .social-icon:hover {
      transform: translateY(-1px);
      box-shadow: 0 8px 18px rgba(32, 65, 72, 0.08);
    }

    .gradient-card {
      min-height: 280px;
      background:
        radial-gradient(circle at 20% 30%, rgba(20,235,213,0.36), transparent 0 18%),
        radial-gradient(circle at 70% 25%, rgba(68,130,131,0.22), transparent 0 20%),
        radial-gradient(circle at 50% 75%, rgba(203,230,224,0.8), transparent 0 28%),
        linear-gradient(180deg, #ffffff 0%, #eef8f7 100%);
    }

    .mini-stack {
      display: grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap: 18px;
    }

    .metric {
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      min-height: 210px;
    }

    .metric .label {
      color: var(--muted);
      font-weight: 500;
      margin-bottom: 8px;
    }

    .metric .value {
      font-size: clamp(2.3rem, 4vw, 3.8rem);
      font-weight: 800;
      letter-spacing: -0.06em;
      line-height: 0.9;
    }

    section {
      padding: 44px 0;
    }

    .section-head {
      max-width: 760px;
      margin-bottom: 28px;
    }

    .kicker {
      color: var(--primary-deep);
      font-weight: 700;
      letter-spacing: 0.02em;
      text-transform: uppercase;
      font-size: 0.82rem;
      margin-bottom: 12px;
    }

    h2 {
      font-size: clamp(2rem, 4.5vw, 4rem);
      line-height: 1.02;
      letter-spacing: -0.05em;
      margin: 0 0 12px;
    }

    .section-head p,
    .copy,
    .copy p,
    .copy li,
    .timeline-text,
    .price-meta,
    .package-list li,
    .note {
      color: var(--muted);
      font-size: 1.08rem;
      max-width: 60ch;
      margin: 0;
    }

     .personal-copy p {
      color: var(--muted);
      font-size: 1.08rem;
      margin: 0;
    }

    .story-grid,
    .services-grid,
    .credentials-grid,
    .values-grid,
    .timeline-grid,
    .proof-grid,
    .fees-grid,
    .support-grid,
    .note-grid,
    .contact-grid {
      display: grid;
      gap: 20px;
    }

    .story-grid,
    .timeline-grid {
      grid-template-columns: minmax(0,1.1fr) minmax(0,0.9fr);
    }

    .fees-grid,
    .contact-grid {
      grid-template-columns: repeat(2, minmax(0,1fr));
    }

    .story-grid.full-width {
        grid-template-columns: 1fr;
    }

    .credentials-grid,
    .values-grid {
      grid-template-columns: repeat(3, minmax(0,1fr));
    }

    .support-grid,
    .note-grid {
      grid-template-columns: minmax(0,1.05fr) minmax(0,0.95fr);
    }

    .story-card,
    .service-card,
    .credential-card,
    .value-card,
    .timeline-card,
    .contact-card,
    .proof-card,
    .booking-card,
    .fee-card,
    .info-card,
    .footer-card {
      padding: 28px;
      background: var(--surface-strong);
      border: 1px solid rgba(255,255,255,0.66);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow);
    }

    .fee-card.featured {
      border-color: rgba(20,235,213,0.35);
      box-shadow: 0 20px 50px rgba(20,235,213,0.10);
    }

    .fee-card h3,
    .info-card h3,
    .story-card h3,
    .credential-card h3,
    .value-card h3,
    .timeline-card h3,
    .contact-card h3,
    .footer-card h3 {
      margin: 0 0 12px;
      font-size: 1.22rem;
      letter-spacing: -0.03em;
    }
    .fee-top {
      display: flex;
      justify-content: space-between;
      align-items: start;
      gap: 16px;
      margin-bottom: 16px;
    }

    .price {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800;
      line-height: 0.9;
      letter-spacing: -0.06em;
    }

    .price-tag {
      display: inline-flex;
      padding: 8px 12px;
      border-radius: 999px;
      background: linear-gradient(180deg, rgba(20,235,213,0.18), rgba(68,130,131,0.10));
      border: 1px solid rgba(20,235,213,0.24);
      color: var(--primary-deep);
      font-weight: 700;
      font-size: 0.86rem;
    }

    .package-list {
      list-style: none;
      margin: 18px 0 0;
      padding: 0;
      display: grid;
      gap: 14px;
    }

    .package-list li {
      padding-left: 24px;
      position: relative;
    }

    .package-list li::before {
      content: "";
      width: 10px;
      height: 10px;
      border-radius: 999px;
      position: absolute;
      left: 0;
      top: 0.5em;
      background: linear-gradient(135deg, var(--primary), var(--primary-deep));
    }

    .about-card h2 {
        font-size: clamp(28px, 3.2vw, 60px);
        line-height: 1.1;
    }

    .info-card strong {
      color: var(--text);
    }

    .info-card .subtle {
      display: block;
      margin-top: 8px;
      color: var(--muted);
      font-size: 0.95rem;
    }
    .bio-list,
    .focus-list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      gap: 16px;
    }

    .bio-list li,
    .focus-list li {
      padding-left: 24px;
      position: relative;
      color: var(--muted);
    }

    .bio-list li::before,
    .focus-list li::before {
      content: "";
      width: 10px;
      height: 10px;
      border-radius: 999px;
      position: absolute;
      left: 0;
      top: 0.5em;
      background: linear-gradient(135deg, var(--primary), var(--primary-deep));
    }

    .story-card p,
    .service-card p,
    .proof-card p,
    .booking-card p,
    .footer-card p,
    .story-list li,
    .note {
      color: var(--muted);
    }

    .story-list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      gap: 16px;
    }

    .story-list li {
      padding-left: 24px;
      position: relative;
    }
    .story-list li::before {
      content: "";
      width: 10px;
      height: 10px;
      border-radius: 999px;
      position: absolute;
      left: 0;
      top: 0.5em;
      background: linear-gradient(135deg, var(--primary), var(--primary-deep));
    }

    /*---------------------------------*/
    /*          APPLY MODAL            */
    /*---------------------------------*/
    .apply-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    }

    .apply-modal.hidden {
    display: none;
    }

    .apply-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(6, 18, 20, 0.58);
    backdrop-filter: blur(14px);
    }

    .apply-modal-card {
    position: relative;
    width: min(100%, 760px);
    max-height: calc(100vh - 48px);
    overflow-y: auto;

    border-radius: 32px;
    background:
        radial-gradient(circle at top left, rgba(20, 235, 213, 0.12), transparent 38%),
        rgba(255, 255, 255, 0.92);

    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 28px 90px rgba(15, 35, 38, 0.35);
    color: var(--text);
    }

    .apply-modal-close {
    position: absolute;
    top: 18px;
    right: 20px;
    z-index: 2;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--text);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    backdrop-filter: blur(8px);
    }

    .apply-founder img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    object-position: center 28%;
    display: block;
    }

    .apply-founder-content {
    padding: 30px 32px 18px;
    }

    .apply-founder-content h2 {
    margin: 8px 0 10px;
    font-size: clamp(2rem, 5vw, 3rem);
    letter-spacing: -0.06em;
    color: var(--text);
    }

    .apply-founder-content .founder-description {
    max-width: 58ch;
    color: var(--muted);
    }

    .apply-remote {
    margin-top: 18px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(20, 235, 213, 0.12);
    color: #256f70;
    font-weight: 700;
    font-size: 0.95rem;
    }

    .apply-form {
    padding: 8px 32px 32px;
    }

    .apply-form .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    }

    .apply-form .field-group {
    margin-bottom: 14px;
    }

    .apply-form label {
    display: block;
    margin-bottom: 7px;
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--text);
    }

    .apply-form input {
    width: 100%;
    border: 1px solid rgba(68, 130, 131, 0.24);
    background: rgba(255, 255, 255, 0.78);
    color: var(--text);
    border-radius: 16px;
    padding: 14px 15px;
    font: inherit;
    }

    .apply-form input:focus {
    outline: none;
    border-color: rgba(20, 235, 213, 0.9);
    box-shadow: 0 0 0 4px rgba(20, 235, 213, 0.16);
    }

    .apply-form .btn {
    margin-top: 4px;
    }

    .apply-form .form-note {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 0.92rem;
    }

    /* MOBILE */
    @media (max-width: 640px) {
    .apply-modal {
        padding: 12px;
        align-items: flex-start;
    }

    .apply-modal-card {
        max-height: calc(100vh - 24px);
        border-radius: 26px;
    }

    .apply-founder img {
        height: 180px;
    }

    .apply-founder-content {
        padding: 24px 22px 14px;
    }

    .apply-form {
        padding: 6px 22px 26px;
    }

    .apply-form .form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .apply-modal-close {
        top: 12px;
        right: 12px;
    }
    }

    .apply-success {
        padding: 8px 32px 34px;
        }

        .apply-success.hidden {
        display: none;
        }

        .success-icon {
        width: 48px;
        height: 48px;
        border-radius: 999px;
        display: grid;
        place-items: center;
        margin-bottom: 16px;
        background: linear-gradient(135deg, var(--primary), #8ff7ea);
        color: #072221;
        font-weight: 800;
        font-size: 1.35rem;
        box-shadow: 0 14px 30px rgba(20,235,213,0.18);
        }

        .apply-success h2 {
        font-size: clamp(1.7rem, 4vw, 2.4rem);
        margin: 0 0 12px;
        }

        .apply-success p {
        color: var(--muted);
        font-size: 1.02rem;
        max-width: 56ch;
        margin: 0 0 12px;
        }

        .apply-success .btn {
        margin-top: 12px;
        }

        .apply-form.hidden,
        .apply-success.hidden {
        display: none;
        }

        #apply-modal-intro.hidden {
        display: none;
        }

        .apply-modal button.btn {
            font-family: inherit;
            font-size: 1rem;
            font-weight: 600;
            border: 1px solid transparent;
            appearance: none;
            -webkit-appearance: none;
        }

    /*---------------------------------*/
    /*        APPLY MODAL STOP         */
    /*---------------------------------*/

  /* Fix button font consistency across mobile + desktop */
    button.btn,
    a.btn {
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
    }

    button.btn {
    appearance: none;
    -webkit-appearance: none;
    }


    .services-grid {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .service-card {
      min-height: 230px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .service-card h3,
    .proof-card h3,
    .booking-card h3,
    .footer-card h3 {
      margin: 0 0 10px;
      font-size: 1.22rem;
      letter-spacing: -0.03em;
    }

    .service-badge {
      width: 50px;
      height: 50px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      font-weight: 700;
      color: var(--primary-deep);
      background: linear-gradient(180deg, rgba(20,235,213,0.18), rgba(68,130,131,0.10));
      border: 1px solid rgba(20,235,213,0.24);
      margin-bottom: 18px;
    }
    .value-badge,
    .credential-badge {
      width: 50px;
      height: 50px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      font-weight: 700;
      color: var(--primary-deep);
      background: linear-gradient(180deg, rgba(20,235,213,0.18), rgba(68,130,131,0.10));
      border: 1px solid rgba(20,235,213,0.24);
      margin-bottom: 18px;
    }

    .timeline-card {
      display: grid;
      gap: 18px;
    }

    .timeline-item {
      padding: 18px;
      border-radius: 18px;
      background: rgba(255,255,255,0.76);
      border: 1px solid rgba(11,19,20,0.06);
    }

    .timeline-item strong {
      display: block;
      margin-bottom: 6px;
    }

    .portrait-placeholder {
      min-height: 100%;
      display: flex;
      align-items: end;
      justify-content: start;
      padding: 26px;
    }

    .portrait-frame {
      width: 100%;
      min-height: 340px;
      border-radius: 28px;
      background:
        linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.0)),
        radial-gradient(circle at 50% 30%, rgba(255,255,255,0.85), transparent 0 18%),
        linear-gradient(135deg, rgba(20,235,213,0.35), rgba(68,130,131,0.18), rgba(203,230,224,0.85));
      border: 1px solid rgba(255,255,255,0.54);
      display: flex;
      align-items: end;
      justify-content: start;
      padding: 24px;
    }

    .portrait-frame span {
      display: inline-flex;
      padding: 10px 14px;
      border-radius: 999px;
      background: rgba(255,255,255,0.82);
      border: 1px solid rgba(11,19,20,0.06);
      color: var(--primary-deep);
      font-weight: 600;
      font-size: 0.92rem;
    }

    .contact-card .btn {
      margin-top: 10px;
    }

    .proof-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    blockquote {
      margin: 0;
      font-size: 1.06rem;
      line-height: 1.65;
      letter-spacing: -0.01em;
    }

    .quote-by {
      display: block;
      margin-top: 14px;
      color: var(--primary-deep);
      font-size: 0.95rem;
      font-weight: 600;
    }

    .contact-grid {
      grid-template-columns: minmax(0,0.9fr) minmax(0,1.1fr);
      align-items: start;
    }

    .contact-form-wrap {
      border-radius: 22px;
      overflow: hidden;
      border: 1px solid rgba(11,19,20,0.07);
      background: linear-gradient(180deg, #ffffff 0%, #f6fbfb 100%);
      padding: 28px;
      min-height: 100%;
    }

    .booking-form {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .field-group {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .field-group label {
      font-size: 0.92rem;
      font-weight: 600;
      color: var(--text);
    }

    .booking-form input,
    .booking-form textarea {
      width: 100%;
      padding: 14px 16px;
      border-radius: 14px;
      border: 1px solid rgba(11,19,20,0.1);
      font-family: inherit;
      font-size: 0.95rem;
      background: rgba(255,255,255,0.92);
      color: var(--text);
      transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }

    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .booking-form input::placeholder,
    .booking-form textarea::placeholder {
      color: #7b8a8f;
    }

    .booking-form input:focus,
    .booking-form textarea:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(20,235,213,0.16);
      background: rgba(255,255,255,0.98);
    }

    .booking-form textarea {
      resize: vertical;
      min-height: 180px;
    }

    .form-note {
      margin: 0;
      font-size: 0.92rem;
      color: var(--muted);
    }

    .form-actions {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 4px;
    }

    footer {
      padding: 14px 0 52px;
    }

    .footer-card {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .fade-up {
      opacity: 0;
      transform: translateY(8px);
      transition: opacity 0.22s ease-out, transform 0.22s ease-out;
    }

    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 1120px) {
      .hero-grid,
      .story-grid,
      .fees-grid,
      .support-grid,
      .note-grid,
      .timeline-grid,
      .contact-grid,
      .services-grid,
      .credentials-grid,
      .values-grid,
      .proof-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 860px) {
      nav {
        padding: 12px 0;
        align-items: center;
        flex-wrap: wrap;
      }

      .menu-toggle {
        display: inline-flex;
        margin-left: auto;
      }

      .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding-top: 14px;
      }

      .nav-links.open {
        display: flex;
      }

      .nav-links a:not(.btn) {
        display: block;
      }

      .nav-links .btn {
        width: 100%;
        justify-content: center;
        margin-top: 6px;
      }

      .hero-grid,
      .story-grid,
      .timeline-grid,
      .contact-grid,
      .credentials-grid,
      .values-grid,
      .services-grid,
      .proof-grid,
      .mini-stack {
        grid-template-columns: 1fr;
      }

      .hero-copy,
      .hero-side,
      .hero-visual {
        min-height: auto;
      }

      .hero-copy {
        padding: 28px 20px;
      }

      .hero-copy p {
        font-size: 1rem;
      }

      .panel,
      .story-card,
      .service-card,
      .credential-card,
      .value-card,
      .timeline-card,
      .fee-card,
      .info-card,
      .contact-card,
      .proof-card,
      .booking-card,
      .footer-card,
      .contact-form-wrap {
        padding: 22px;
      }

      .hero-points,
      .form-grid {
        grid-template-columns: 1fr;
      }
      .mini-stack { grid-template-columns: 1fr; }

      h1 {
        font-size: 2.4rem;
        max-width: 100%;
      }

      .service-card {
        min-height: auto;
        padding: 18px;
      }

      section {
        padding: 24px 0;
      }

      .fade-up {
        transition: opacity 0.18s ease, transform 0.18s ease;
        transform: translateY(6px);
      }
      .fee-top {
        flex-direction: column;
        align-items: start;
      }
    }
/* Privacy modal styles */
    .footer-link,
    .site-footer a {
    color: var(--muted);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.2s ease;
    }

    .footer-link:hover,
    .site-footer a:hover {
    opacity: 1;
    }
    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      .orb { animation: none; }
      .fade-up,
      .fade-up.visible {
        opacity: 1;
        transform: none;
        transition: none;
      }
    }
    .privacy-modal {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(10, 20, 22, 0.55);
        backdrop-filter: blur(8px);
        z-index: 9999;
        align-items: center;
        justify-content: center;
        padding: 24px;
        }

    .privacy-modal.is-open {
        display: flex;
        }

    .privacy-modal-content {
        position: relative;

        width: 100%;
        max-width: 520px;
        max-height: 85vh;
        overflow-y: auto;
        background: rgba(20,20,20,0.92);

        border: 1px solid rgba(16, 32, 34, 0.08);

        border-radius: 28px;

        padding: 32px;

        color: white;

        box-shadow: 0 24px 80px rgba(16, 32, 34, 0.18);
        }

    .privacy-modal-content h2 {
            margin-top: 0;
            line-height: 1.2;
        }

    .privacy-modal-content p {
            line-height: 1.5;
            color: rgba(255,255,255,0.78);
        }

    .privacy-close {
        position: absolute;
        top: 18px;
        right: 18px;

        background: none;
        border: none;

        color: white;

        font-size: 1.4rem;
        cursor: pointer;
        }

/* ------------------------------------------------------
   Back to You campaign landing page V2
   Namespaced with .bty-* to avoid disrupting existing pages
   ------------------------------------------------------ */

.bty-nav-wrap {
  background: rgba(247, 251, 251, 0.92);
}

.bty-nav {
  min-height: 72px;
}

.bty-nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.bty-home-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
}

.bty-home-link:hover { color: var(--text); }

.bty-page {
  overflow: hidden;
}

.bty-page section {
  padding: 56px 0;
}

.bty-hero {
  padding: 74px 0 56px !important;
}

.bty-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: 34px;
  align-items: stretch;
}

.bty-hero-copy,
.bty-hero-visual,
.bty-whole-card,
.bty-aspiration-card,
.bty-meet-card,
.bty-final-card,
.bty-comparison-card,
.bty-next-steps {
  background: var(--surface-strong);
  border: 1px solid rgba(255,255,255,0.68);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.bty-hero-copy {
  padding: clamp(30px, 5vw, 58px);
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.bty-hero-copy::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -120px;
  top: -130px;
  border-radius: 999px;
  background: rgba(20,235,213,0.14);
  filter: blur(18px);
  pointer-events: none;
}

.bty-hero-copy h1 {
  max-width: 10ch;
  font-size: clamp(3.2rem, 7.4vw, 6.4rem);
}

.bty-hero-subtitle {
  margin: 26px 0 0;
  max-width: 52ch;
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  color: var(--muted);
}

.bty-outcome-strip {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.bty-outcome-strip li {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(20,235,213,0.10);
  border: 1px solid rgba(20,235,213,0.18);
  color: var(--primary-deep);
  font-weight: 800;
  font-size: 0.88rem;
}

.bty-cta-block {
  margin-top: 32px;
  display: grid;
  gap: 12px;
  justify-items: start;
}

.bty-cta-block p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.bty-trust-strip {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: flex;
  gap: 10px 18px;
  flex-wrap: wrap;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.92rem;
}

.bty-trust-strip li::before {
  content: "✓";
  color: var(--primary-deep);
  margin-right: 7px;
}

.bty-hero-visual {
  min-height: 620px;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 22px;
  background:
    radial-gradient(circle at 20% 20%, rgba(20,235,213,0.18), transparent 0 30%),
    radial-gradient(circle at 88% 78%, rgba(68,130,131,0.12), transparent 0 28%),
    rgba(255,255,255,0.68);
}

.bty-photo-frame {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: 500px;
  border-radius: calc(var(--radius-xl) - 10px);
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff, #eef7f6);
  border: 1px solid rgba(255,255,255,0.8);
}

.bty-photo-frame img,
.bty-meet-image img,
.bty-aspiration-image img,
.bty-whole-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Hero portrait crop for user-supplied landscape image: images/hollyB2YHero.png */
.bty-hero-photo img {
	width: 550px;
	object: cover;
	object-position: -20px -100px;
}

.bty-photo-frame::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(to bottom, rgba(238,247,246,0), rgba(238,247,246,0.88));
  pointer-events: none;
}

.bty-floating-card {
  position: absolute;
  z-index: 4;
  right: 44px;
  bottom: 44px;
  width: min(280px, calc(100% - 88px));
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(255,255,255,0.75);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 40px rgba(32,65,72,0.12);
}

.bty-floating-card span {
  display: block;
  color: var(--primary-deep);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.bty-floating-card strong {
  font-size: 1.1rem;
  letter-spacing: -0.03em;
}

.bty-visual-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(20px);
  animation: drift 28s ease-in-out infinite;
  pointer-events: none;
}

.bty-visual-orb-one {
  width: 220px;
  height: 220px;
  background: rgba(20,235,213,0.18);
  top: 44px;
  left: 34px;
}

.bty-visual-orb-two {
  width: 180px;
  height: 180px;
  background: rgba(68,130,131,0.12);
  right: 24px;
  bottom: 70px;
  animation-delay: -12s;
}

.bty-section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 28px;
  align-items: center;
}

.bty-section-copy h2,
.bty-centered-head h2,
.bty-whole-copy h2,
.bty-aspiration-copy h2,
.bty-meet-copy h2,
.bty-final-card h2 {
  max-width: 13ch;
}

.bty-section-copy p,
.bty-centered-head p,
.bty-whole-copy p,
.bty-aspiration-copy p,
.bty-meet-copy p,
.bty-final-card p,
.bty-faq-list p,
.bty-next-steps li,
.bty-testimonial-note {
  color: var(--muted);
  font-size: 1.05rem;
}

.bty-section-copy p + p,
.bty-whole-copy p + p,
.bty-aspiration-copy p + p,
.bty-meet-copy p + p {
  margin-top: 14px;
}

.bty-insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.bty-insight-card,
.bty-process-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.66);
  box-shadow: var(--shadow);
}

.bty-card-icon {
  width: 54px;
  height: 54px;
  display: block;
  margin-bottom: 16px;
}

.bty-insight-card h3,
.bty-process-card h3,
.bty-next-steps h3 {
  margin: 0 0 10px;
  font-size: 1.12rem;
  letter-spacing: -0.03em;
}

.bty-insight-card p,
.bty-process-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.bty-whole-card,
.bty-aspiration-card,
.bty-meet-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: center;
  padding: 28px;
}

.bty-whole-visual,
.bty-aspiration-art,
.bty-meet-image {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 360px;
  padding: 24px 22px 0;
  background:
    radial-gradient(circle at 50% 32%, rgba(255,255,255,0.95), rgba(255,255,255,0.55) 0 22%, transparent 44%),
    radial-gradient(circle at 78% 16%, rgba(20,235,213,0.18), transparent 0 26%),
    radial-gradient(circle at 18% 88%, rgba(68,130,131,0.10), transparent 0 28%),
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(225,249,246,0.72));
}


.bty-v3-page .bty-meet-image::before {
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  bottom: 22%;
  height: 34%;
  border-bottom: 2px solid rgba(20,235,213,0.24);
  border-radius: 50%;
  transform: rotate(-5deg);
  opacity: 0.75;
  pointer-events: none;
}

.bty-v3-page .bty-meet-image::after {
  content: "";
  position: absolute;
  inset: auto 8% 0;
  height: 28%;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(238,247,246,0.96));
  pointer-events: none;
  z-index: 3;
}

.bty-v3-page .bty-meet-image img {
  position: relative;
  z-index: 2;
  display: block;
  width: min(82%, 390px);
  max-height: 350px;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 22px 34px rgba(32,65,72,0.16));
	transform: translateY(-35px) scale(1.2)
}

.bty-whole-copy,
.bty-aspiration-copy,
.bty-meet-copy {
  padding: clamp(8px, 2vw, 26px);
}

.bty-centered-head {
  max-width: 720px;
  margin: 0 auto 24px;
  text-align: center;
}

.bty-centered-head h2 {
  margin-left: auto;
  margin-right: auto;
}

.bty-centered-head p {
  margin: 0 auto;
  max-width: 56ch;
}

.bty-comparison-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 18px;
}

.bty-comparison-col {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.bty-comparison-col h3 {
  margin: 0 0 16px;
  letter-spacing: -0.03em;
}

.bty-comparison-col p {
  margin: 0;
  padding: 14px 0;
  border-top: 1px solid rgba(11,19,20,0.07);
  color: var(--muted);
  font-weight: 600;
}

.bty-muted-col {
  background: rgba(247,251,251,0.78);
}

.bty-primary-col {
  background: linear-gradient(180deg, rgba(20,235,213,0.14), rgba(203,230,224,0.24));
}

.bty-primary-col p {
  color: #285f61;
}

.bty-process-grid,
.bty-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.bty-process-card span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-deep);
  font-weight: 800;
  margin-bottom: 12px;
}

.bty-next-steps {
  margin-top: 20px;
  padding: 22px;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 20px;
  align-items: center;
  background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(238,247,246,0.82));
}

.bty-next-steps ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
}

.bty-next-steps li {
    padding: 14px;
    border-radius: 18px;
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(11,19,20,0.05);
    font-weight: 700;
    align-content: center;
}

.bty-mid-cta {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

.bty-meet-card {
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
}

.bty-meet-copy blockquote {
  margin-top: 22px;
  padding: 20px;
  border-left: 4px solid var(--primary);
  border-radius: 0 20px 20px 0;
  background: rgba(20,235,213,0.08);
  font-weight: 700;
  color: var(--text);
}

.bty-testimonial-note {
  margin: 16px auto 0;
  text-align: center;
  max-width: 68ch;
  font-size: 0.92rem;
}

.bty-faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 28px;
  align-items: start;
}

.bty-faq-list {
  display: grid;
  gap: 12px;
}

.bty-faq-list details {
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(255,255,255,0.66);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 18px 20px;
}

.bty-faq-list summary {
  cursor: pointer;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.bty-faq-list p {
  margin: 12px 0 0;
  max-width: 64ch;
}

.bty-final-card {
  text-align: center;
  padding: clamp(34px, 6vw, 76px);
  background:
    radial-gradient(circle at 20% 20%, rgba(20,235,213,0.16), transparent 0 30%),
    radial-gradient(circle at 85% 90%, rgba(68,130,131,0.10), transparent 0 28%),
    rgba(255,255,255,0.94);
}

.bty-final-card h2 {
  margin-left: auto;
  margin-right: auto;
  max-width: 15ch;
}

.bty-final-card p {
  max-width: 58ch;
  margin: 0 auto 24px;
}

.bty-final-card span {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-weight: 600;
}

.bty-optional {
  color: var(--muted);
  font-weight: 500;
}

.apply-form textarea {
  width: 100%;
  border: 1px solid rgba(68, 130, 131, 0.24);
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  border-radius: 16px;
  padding: 14px 15px;
  font: inherit;
  resize: vertical;
}

.apply-form textarea:focus {
  outline: none;
  border-color: rgba(20, 235, 213, 0.9);
  box-shadow: 0 0 0 4px rgba(20, 235, 213, 0.16);
}

#bty-modal-intro.hidden {
  display: none;
}

@media (max-width: 1040px) {
  .bty-hero-grid,
  .bty-section-grid,
  .bty-whole-card,
  .bty-aspiration-card,
  .bty-meet-card,
  .bty-faq-grid {
    grid-template-columns: 1fr;
  }

  .bty-hero-copy,
  .bty-hero-visual {
    min-height: auto;
  }

  .bty-photo-frame {
    min-height: 460px;
  }

  .bty-insight-grid,
  .bty-process-grid,
  .bty-proof-grid {
    grid-template-columns: 1fr;
  }

  .bty-whole-card,
  .bty-aspiration-card {
    gap: 14px;
  }

  .bty-next-steps,
  .bty-next-steps ol {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .bty-page section {
    padding: 32px 0;
  }

  .bty-hero {
    padding: 34px 0 28px !important;
  }

  .bty-nav {
    gap: 12px;
  }

  .bty-nav .brand span {
    display: none;
  }

  .bty-nav-actions {
    gap: 10px;
  }

  .bty-home-link {
    display: none;
  }

  .bty-nav-cta {
    min-height: 44px;
    padding: 0 16px;
    font-size: 0.9rem;
  }

  .bty-hero-copy,
  .bty-whole-card,
  .bty-aspiration-card,
  .bty-meet-card,
  .bty-comparison-card,
  .bty-final-card,
  .bty-next-steps {
    border-radius: 24px;
  }

  .bty-hero-copy {
    padding: 26px 20px;
  }

  .bty-hero-copy h1 {
    font-size: clamp(2.7rem, 14vw, 4rem);
  }

  .bty-hero-subtitle {
    font-size: 1.02rem;
  }

  .bty-photo-frame,
  .bty-whole-visual,
  .bty-aspiration-art,
  .bty-meet-image {
    min-height: 300px;
  }

  .bty-floating-card {
    right: 24px;
    bottom: 24px;
    width: min(260px, calc(100% - 48px));
  }

  .bty-comparison-card {
    grid-template-columns: 1fr;
  }

  .bty-comparison-col,
  .bty-insight-card,
  .bty-process-card {
    padding: 18px;
  }

  .bty-whole-card,
  .bty-aspiration-card,
  .bty-meet-card {
    padding: 18px;
  }

  .bty-section-copy h2,
  .bty-centered-head h2,
  .bty-whole-copy h2,
  .bty-aspiration-copy h2,
  .bty-meet-copy h2,
  .bty-final-card h2 {
    max-width: 100%;
  }

  .bty-trust-strip,
  .bty-outcome-strip {
    gap: 8px;
  }

  .bty-outcome-strip li {
    min-height: 32px;
    padding: 0 12px;
  }
}


/* ------------------------------------------------------
   Back to You campaign landing page V3 refinements
   Keep this section in styles.css beneath existing site styles
   ------------------------------------------------------ */

.bty-v3-page .bty-hero {
  padding-top: 64px !important;
}

.bty-v3-page .bty-programme-label {
  display: inline-grid;
  gap: 4px;
  width: fit-content;
  max-width: 100%;
  padding: 12px 16px;
  margin-bottom: 24px;
  border-radius: 18px;
  background: rgba(255,255,255,0.76);
  border: 1px solid rgba(20,235,213,0.20);
  box-shadow: 0 12px 28px rgba(32,65,72,0.06);
  position: relative;
  z-index: 1;
}

.bty-v3-page .bty-programme-label::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 10px;
  width: 82px;
  height: 36px;
  border-top: 1px solid rgba(20,235,213,0.20);
  border-radius: 999px;
  opacity: 0.55;
  pointer-events: none;
}

.bty-v3-page .bty-programme-label span {
  color: var(--primary-deep);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.bty-v3-page .bty-programme-label strong {
  color: var(--text);
  font-size: 0.96rem;
  letter-spacing: -0.02em;
}

.bty-v3-page .bty-hero-copy h1 {
  max-width: 11ch;
}

.bty-v3-page .bty-section {
  padding: 48px 0;
}

.bty-v3-page .bty-centered-head h2 {
  max-width: 14ch;
}

.bty-v3-page .bty-compare .bty-centered-head h2,
.bty-v3-page .bty-process .bty-centered-head h2 {
  max-width: 17ch;
}

.bty-v3-page .bty-whole-copy h2,
.bty-v3-page .bty-meet-copy h2 {
  max-width: 15ch;
}

.bty-v3-page .bty-next-section .bty-next-steps {
  margin-top: 0;
}

.bty-v3-page .bty-next-steps h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.8rem);
  line-height: 1.06;
  letter-spacing: -0.05em;
  margin: 0;
  max-width: 13ch;
}

.bty-v3-page .bty-next-steps ol {
  counter-reset: btynext;
}

.bty-v3-page .bty-next-steps li {
    position: relative;
    padding-left: 44px;
    align-content: flex-start;
}

.bty-v3-page .bty-next-steps li::before {
  counter-increment: btynext;
  content: counter(btynext);
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(20,235,213,0.14);
  color: var(--primary-deep);
  font-size: 0.78rem;
  font-weight: 800;
}

.bty-v3-page .bty-testimonial-note {
  color: var(--muted);
  opacity: 0.86;
}

@media (max-width: 720px) {
  .bty-v3-page .bty-programme-label {
    width: 100%;
    padding: 11px 13px;
  }

  .bty-v3-page .bty-programme-label strong {
    font-size: 0.9rem;
  }

  .bty-v3-page .bty-section {
    padding: 30px 0;
  }

  .bty-v3-page .bty-next-steps h2 {
    max-width: 100%;
  }
}


/* ------------------------------------------------------
   Back to You campaign landing page V3.1 mobile polish
   ------------------------------------------------------ */

.bty-nav .brand img {
  height: 42px !important;
}

.bty-low-key-cta {
  background: rgba(255,255,255,0.86) !important;
  color: var(--text) !important;
  border-color: rgba(11,19,20,0.08) !important;
  box-shadow: 0 10px 24px rgba(32, 65, 72, 0.06) !important;
}

@media (max-width: 720px) {
  .bty-nav .brand img {
    height: 40px !important;
  }

  .bty-v3-page .bty-hero {
    padding: 22px 0 22px !important;
  }

  .bty-v3-page .bty-hero-copy {
    padding: 22px 20px 24px;
  }

  .bty-v3-page .bty-programme-label {
    padding: 10px 12px;
    margin-bottom: 18px;
    border-radius: 17px;
  }

  .bty-v3-page .bty-programme-label span {
    font-size: 0.74rem;
  }

  .bty-v3-page .bty-programme-label strong {
    font-size: 0.88rem;
    line-height: 1.32;
  }

  .bty-v3-page .bty-hero-copy h1 {
    font-size: clamp(2.45rem, 12vw, 3.45rem);
    line-height: 0.98;
  }

  .bty-v3-page .bty-hero-subtitle {
    margin-top: 20px;
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .bty-v3-page .bty-outcome-strip {
    margin-top: 20px;
    gap: 7px;
  }

  .bty-v3-page .bty-outcome-strip li {
    min-height: 30px;
    padding: 0 11px;
    font-size: 0.82rem;
  }

  .bty-v3-page .bty-cta-block {
    margin-top: 24px;
    gap: 10px;
  }

  .bty-v3-page .bty-cta-block .btn {
    width: 100%;
    min-height: 48px;
    padding: 0 18px;
  }

  .bty-v3-page .bty-trust-strip {
    margin-top: 22px;
    gap: 8px 14px;
    font-size: 0.9rem;
  }

  .bty-v3-page .bty-section-copy h2,
  .bty-v3-page .bty-centered-head h2,
  .bty-v3-page .bty-whole-copy h2,
  .bty-v3-page .bty-aspiration-copy h2,
  .bty-v3-page .bty-meet-copy h2,
  .bty-v3-page .bty-final-card h2 {
    font-size: clamp(1.85rem, 8.8vw, 2.65rem);
    line-height: 1.04;
  }

  .bty-v3-page .bty-process .bty-centered-head h2,
  .bty-v3-page .bty-proof .bty-centered-head h2 {
    font-size: clamp(1.75rem, 8vw, 2.35rem);
  }

  .bty-v3-page .bty-photo-frame,
  .bty-v3-page .bty-whole-visual,
  .bty-v3-page .bty-aspiration-art,
  .bty-v3-page .bty-meet-image {
    min-height: 250px;
  }

  .bty-v3-page .bty-hero-visual {
    padding: 16px;
  }

  .bty-v3-page .bty-floating-card {
    right: 18px;
    bottom: 18px;
    width: min(240px, calc(100% - 36px));
  }

  .bty-v3-page .bty-mid-cta {
    margin-top: 18px;
  }

  .bty-v3-page .bty-mid-cta .btn {
    min-height: 46px;
    width: auto;
    max-width: 100%;
  }
}


/* Back to You V3.2 — hero image crop overrides
   The hero image should be uploaded to: images/hollyB2YHero.png
   Tune object-position if the portrait crop needs adjustment after upload. */
.bty-v3-page .bty-hero-photo img {
  object-position: 72% 32%;
}

@media (max-width: 1040px) {
  .bty-v3-page .bty-hero-photo img {
    object-position: 72% 30%;
  }
}

@media (max-width: 640px) {
  .bty-v3-page .bty-hero-photo img {
    object-position: 72% 28%;
  }
}


/* ------------------------------------------------------
   Back to You V3.3 — coded whole-picture health map
   Replaces the placeholder image in the doctor-led section
   ------------------------------------------------------ */

.bty-health-map-wrap {
  display: grid;
  place-items: center;
  padding: 18px;
  background:
    radial-gradient(circle at 48% 45%, rgba(20,235,213,0.14), transparent 0 36%),
    radial-gradient(circle at 20% 85%, rgba(203,230,224,0.54), transparent 0 30%),
    linear-gradient(180deg, #ffffff 0%, #eef7f6 100%);
}

.bty-health-map {
  position: relative;
  width: min(100%, 620px);
  min-height: 390px;
  border-radius: 28px;
  overflow: hidden;
}

.bty-map-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.72;
}

.bty-map-lines path {
  fill: none;
  stroke: rgba(68,130,131,0.22);
  stroke-width: 2;
  stroke-linecap: round;
}

.bty-map-lines .bty-map-orbit {
  stroke: rgba(20,235,213,0.28);
  stroke-width: 2.5;
}

.bty-map-glow {
  position: absolute;
  inset: 18% 20%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(20,235,213,0.18), transparent 62%);
  filter: blur(8px);
  pointer-events: none;
}

.bty-map-node {
  position: absolute;
  transform: translate(-50%, -50%);
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(20,235,213,0.20);
  box-shadow: 0 12px 26px rgba(32,65,72,0.07);
  color: var(--primary-deep);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
  z-index: 2;
}

.bty-map-centre {
  left: 50%;
  top: 50%;
  width: 132px;
  min-height: 132px;
  padding: 18px;
  border-radius: 999px;
  color: var(--text);
  background:
    radial-gradient(circle at 28% 22%, rgba(255,255,255,0.95), rgba(255,255,255,0.76)),
    linear-gradient(135deg, rgba(20,235,213,0.20), rgba(203,230,224,0.38));
  border-color: rgba(20,235,213,0.28);
  box-shadow: 0 18px 44px rgba(32,65,72,0.12);
  font-size: 1.02rem;
  line-height: 1.1;
}

.bty-map-centre span {
  max-width: 6ch;
}

.bty-map-sleep { left: 50%; top: 16%; }
.bty-map-stress { left: 18%; top: 28%; }
.bty-map-mood { left: 82%; top: 28%; }
.bty-map-hormones { left: 14%; top: 55%; }
.bty-map-medication { left: 86%; top: 55%; }
.bty-map-pain { left: 28%; top: 82%; }
.bty-map-blood { left: 50%; top: 88%; }
.bty-map-habits { left: 72%; top: 82%; }

@media (max-width: 720px) {
  .bty-health-map-wrap {
    padding: 10px;
  }

  .bty-health-map {
    min-height: 275px;
  }

  .bty-map-node {
    min-height: 31px;
    padding: 0 10px;
    font-size: 0.72rem;
  }

  .bty-map-centre {
    width: 102px;
    min-height: 102px;
    font-size: 0.88rem;
    padding: 14px;
  }

  .bty-map-sleep { top: 15%; }
  .bty-map-stress { left: 20%; top: 30%; }
  .bty-map-mood { left: 80%; top: 30%; }
  .bty-map-hormones { left: 19%; top: 58%; }
  .bty-map-medication { left: 81%; top: 58%; }
  .bty-map-pain { left: 27%; top: 82%; }
  .bty-map-blood { left: 50%; top: 88%; }
  .bty-map-habits { left: 73%; top: 82%; }
}

@media (max-width: 420px) {
  .bty-map-node {
    font-size: 0.66rem;
    padding: 0 8px;
  }

  .bty-map-centre {
    width: 90px;
    min-height: 90px;
    font-size: 0.8rem;
  }

  .bty-map-hormones { left: 21%; }
  .bty-map-medication { left: 79%; }
  .bty-map-blood { top: 89%; }
}

/* ------------------------------------------------------
   Back to You V3.4 — simplified whole-picture visual
   Replaces the node map with a clearer conversion-focused card
   ------------------------------------------------------ */

.bty-v3-page .bty-beyond-visual {
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    radial-gradient(circle at 34% 24%, rgba(20,235,213,0.16), transparent 0 34%),
    radial-gradient(circle at 80% 78%, rgba(203,230,224,0.62), transparent 0 30%),
    linear-gradient(180deg, #ffffff 0%, #eef7f6 100%);
}

.bty-v3-page .bty-beyond-card {
    position: relative;
    width: min(100%, 520px);
    min-height: 330px;
    padding: 42px 36px;
    border-radius: 30px;
    overflow: hidden;
    background: rgba(255,255,255,0.68);
    border: 1px solid rgba(20,235,213,0.16);
    box-shadow: 0 20px 54px rgba(32,65,72,0.08);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.bty-v3-page .bty-beyond-glow {
  position: absolute;
  inset: 12% 8% auto auto;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(20,235,213,0.18), transparent 62%);
  filter: blur(10px);
  pointer-events: none;
}

.bty-v3-page .bty-beyond-layer {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(68,130,131,0.12);
  background: rgba(203,230,224,0.15);
  pointer-events: none;
}

.bty-v3-page .bty-layer-one {
  width: 420px;
  height: 160px;
  right: -150px;
  top: 40px;
  transform: rotate(-22deg);
}

.bty-v3-page .bty-layer-two {
  width: 500px;
  height: 190px;
  left: -190px;
  bottom: -52px;
  transform: rotate(12deg);
  border-color: rgba(20,235,213,0.16);
}

.bty-v3-page .bty-beyond-kicker,
.bty-v3-page .bty-beyond-title,
.bty-v3-page .bty-beyond-chips,
.bty-v3-page .bty-beyond-card p {
  position: relative;
  z-index: 2;
}

.bty-v3-page .bty-beyond-kicker {
    width: fit-content;
    margin-bottom: 14px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(20,235,213,0.10);
    border: 1px solid rgba(20,235,213,0.18);
    color: var(--primary-deep);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.bty-v3-page .bty-beyond-title {
  max-width: 9ch;
  margin: 0 0 42px;
  color: var(--text);
  font-size: clamp(2.5rem, 4.6vw, 4.25rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
  font-weight: 850;
}

.bty-v3-page .bty-beyond-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 390px;
    margin-bottom: 22px;
    justify-content: center;
}

.bty-v3-page .bty-beyond-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(20,235,213,0.20);
  box-shadow: 0 10px 22px rgba(32,65,72,0.05);
  color: var(--primary-deep);
  font-size: 0.88rem;
  font-weight: 800;
}

.bty-v3-page .bty-beyond-card p {
  max-width: 32ch;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  font-weight: 650;
}

@media (max-width: 720px) {
  .bty-v3-page .bty-beyond-visual {
    padding: 18px;
  }

  .bty-v3-page .bty-beyond-card {
    min-height: 300px;
    padding: 32px 24px;
    border-radius: 26px;
  }

  .bty-v3-page .bty-beyond-title {
    max-width: 10ch;
    font-size: clamp(2.25rem, 11vw, 3.4rem);
    margin-bottom: 18px;
  }

  .bty-v3-page .bty-beyond-chips {
    gap: 8px;
    margin-bottom: 18px;
  }

  .bty-v3-page .bty-beyond-chips span {
    min-height: 32px;
    padding: 0 11px;
    font-size: 0.78rem;
  }

  .bty-v3-page .bty-beyond-card p {
    font-size: 0.95rem;
  }
}


/* ------------------------------------------------------
   Back to You V3.5 — whole-picture background person layer + safer wording support
   ------------------------------------------------------ */

.bty-v3-page .bty-beyond-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.88) 42%, rgba(238,247,246,0.54) 100%),
    radial-gradient(circle at 24% 28%, rgba(20,235,213,0.12), transparent 0 42%);
  pointer-events: none;
}

.bty-v3-page .bty-beyond-person-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 50%;
  opacity: 0.32;
  filter: saturate(0.88) contrast(0.92) brightness(1.05);
  pointer-events: none;
}

.bty-v3-page .bty-beyond-glow,
.bty-v3-page .bty-beyond-layer {
  z-index: 2;
}

.bty-v3-page .bty-beyond-kicker,
.bty-v3-page .bty-beyond-title,
.bty-v3-page .bty-beyond-chips,
.bty-v3-page .bty-beyond-card p {
    z-index: 3;
    margin-bottom: 0px;
}

@media (max-width: 720px) {
  .bty-v3-page .bty-beyond-person-bg {
    object-position: 76% 50%;
    opacity: 0.24;
  }

  .bty-v3-page .bty-beyond-card::after {
    background:
      linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.88) 54%, rgba(238,247,246,0.60) 100%),
      radial-gradient(circle at 30% 24%, rgba(20,235,213,0.12), transparent 0 42%);
  }
}
