    /* All design tokens now live in global.css :root — no duplicates needed here. */

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--ink);
      background: var(--page);
      line-height: 1.5;
      overflow-x: hidden;
    }

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

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

    button,
    select,
    input {
      font: inherit;
    }

    .site_shell {
      min-height: 100vh;
      background:
        radial-gradient(circle at 12% 8%, rgba(134,94,191,0.08), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f8f7fb 34%, #ffffff 100%);
    }

    .top_nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 50;
      background: rgba(255,255,255,0.84);
      border-bottom: 1px solid rgba(229,231,235,0.72);
      backdrop-filter: blur(18px);
      transition: box-shadow 0.18s ease, background 0.18s ease;
    }

    .top_nav.scrolled {
      background: rgba(255,255,255,0.94);
      box-shadow: 0 8px 30px rgba(26,16,64,0.08);
    }

    .top_nav_inner {
      width: min(var(--max), calc(100% - 40px));
      margin: 0 auto;
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .brand_mark {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-width: 190px;
    }

    .brand_mark img {
      width: 34px;
      height: 34px;
      object-fit: contain;
    }

    .brand_text {
      font-weight: 800;
      color: var(--brand_deep);
      font-size: 1.08rem;
      letter-spacing: 0;
    }

    .nav_links {
      display: flex;
      align-items: center;
      gap: 4px;
      color: var(--muted);
      font-size: 0.86rem;
      font-weight: 600;
    }

    .nav_links a {
      padding: 9px 12px;
      border-radius: 7px;
      transition: background 0.15s ease, color 0.15s ease;
    }

    .nav_links a:hover {
      background: var(--brand_soft);
      color: var(--brand);
    }

    .nav_actions {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    /*
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 42px;
      border-radius: 7px;
      padding: 0 16px;
      font-weight: 700;
      font-size: 0.88rem;
      border: 1px solid transparent;
      cursor: pointer;
      white-space: nowrap;
      transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
    }

    .btn:hover {
      transform: translateY(-1px);
    }
    */

    .btn_primary {
      background: var(--brand);
      color: white;
      box-shadow: 0 10px 22px rgba(134,94,191,0.22);
    }

    .btn_primary:hover {
      background: var(--brand_dark);
      color: white;
    }

    .btn_secondary {
      background: white;
      color: var(--brand_deep);
      border-color: var(--line);
      box-shadow: 0 1px 2px rgba(15,23,42,0.04);
    }

    .btn_secondary:hover {
      border-color: #d8c6ee;
      color: var(--brand);
      box-shadow: var(--shadow_small);
    }

    .mobile_menu_btn {
      display: none;
      width: 42px;
      height: 42px;
      border: 1px solid var(--line);
      background: white;
      border-radius: 7px;
      color: var(--ink);
      cursor: pointer;
    }

    .mobile_menu_btn span {
      width: 17px;
      height: 2px;
      border-radius: 2px;
      background: currentColor;
      display: block;
      position: relative;
    }

    .mobile_menu_btn span::before,
    .mobile_menu_btn span::after {
      content: "";
      position: absolute;
      left: 0;
      width: 17px;
      height: 2px;
      border-radius: 2px;
      background: currentColor;
    }

    .mobile_menu_btn span::before {
      top: -6px;
    }

    .mobile_menu_btn span::after {
      top: 6px;
    }

    .hero_section {
      min-height: 100vh;
      min-height: 100dvh;
      height: 100vh;
      height: 100dvh;
      display: grid;
      align-items: center;
      padding: 96px 0 56px;
      position: relative;
      overflow: hidden;
    }

    .hero_bg_image {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.9) 36%, rgba(255,255,255,0.22) 60%, rgba(255,255,255,0) 100%),
        url("../mockups/assets/nextdaydoctor_hero_telehealth_clean.png") center / cover no-repeat;
      transform: scale(1.02);
      z-index: 0;
    }

    .hero_inner {
      position: relative;
      z-index: 1;
      width: min(var(--max), calc(100% - 40px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(0, 680px);
      gap: 28px;
      align-items: stretch;
      height: 100%;
      min-height: 0;
    }

    .hero_copy_block {
      min-height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding-top: 4dvh;
      padding-bottom: 8dvh;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 10px;
      border-radius: 999px;
      background: rgba(243,232,255,0.82);
      border: 1px solid #e8d9f8;
      color: var(--brand);
      font-size: 0.76rem;
      font-weight: 800;
      margin-bottom: 20px;
    }

    .status_dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 0 5px rgba(28,157,87,0.12);
    }

    .hero_title {
      margin: 0;
      margin-block: 0;
      font-size: clamp(2.6rem, 6vw, 5.8rem);
      font-weight: 700;
      line-height: 0.95;
      letter-spacing: 0;
      color: var(--brand_deep);
      max-width: 790px;
    }

    .hero_title span {
      color: var(--brand);
    }

    .hero_copy {
      max-width: 610px;
      margin: 22px 0 0;
      color: #4b5563;
      font-size: clamp(1.02rem, 1.5vw, 1.24rem);
    }

    .hero_copy_mobile {
      display: none;
    }

    .hero_cta_row {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: clamp(34px, 8dvh, 82px);
    }

    .hero_cta_row .btn {
      min-width: 162px;
      text-align: center;
    }

    .section_band {
      padding: 88px 0;
    }

    .section_band.white {
      background: white;
    }

    .section_band.tint {
      background: #faf9fd;
    }

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

    .section_header {
      max-width: 690px;
      margin-bottom: 32px;
    }

    .section_kicker {
      color: var(--brand);
      font-size: 0.76rem;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 9px;
    }

    .section_title {
      margin: 0;
      margin-block: 0;
      font-weight: 700;
      color: var(--ink);
      font-size: clamp(2rem, 3.5vw, 3.3rem);
      line-height: 1.04;
      letter-spacing: 0;
    }

    .section_copy {
      margin: 14px 0 0;
      color: var(--muted);
      font-size: 1rem;
      max-width: 620px;
    }

    .local_care_section {
      min-height: 100vh;
      min-height: 100dvh;
      display: flex;
      align-items: center;
      background:
        radial-gradient(circle at 18% 20%, rgba(134,94,191,0.1), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #faf9fd 100%);
      border-top: 1px solid rgba(229,231,235,0.72);
      border-bottom: 1px solid rgba(229,231,235,0.9);
      padding: 80px 0;
      overflow: hidden;
    }

    .local_care_inner {
      width: min(var(--max), calc(100% - 40px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: 0.92fr 1.08fr;
      gap: 52px;
      align-items: center;
    }

    .local_care_kicker {
      color: var(--brand);
      font-size: 0.76rem;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .local_care_title {
      margin: 0;
      margin-block: 0;
      font-weight: 700;
      color: var(--brand_deep);
      font-size: clamp(2.4rem, 4.8vw, 5rem);
      line-height: 0.98;
      letter-spacing: 0;
    }

    .local_care_title span {
      color: var(--brand);
    }

    .local_care_copy {
      color: var(--muted);
      font-size: clamp(1rem, 1.4vw, 1.16rem);
      margin: 20px 0 0;
      max-width: 560px;
    }

    .local_care_pills {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 26px;
    }

    .local_care_pill {
      padding: 7px 10px;
      border-radius: 999px;
      background: white;
      border: 1px solid #e8d9f8;
      color: var(--brand_deep);
      font-size: 0.78rem;
      font-weight: 800;
      box-shadow: 0 1px 2px rgba(15,23,42,0.04);
    }

    .local_care_visual {
      position: relative;
      min-height: 560px;
      border-radius: var(--radius);
      background:
        linear-gradient(135deg, #ffffff 0%, #f5f0ff 100%);
      border: 1px solid #e8d9f8;
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .local_map_shape {
      position: absolute;
      left: 38px;
      right: 38px;
      top: 52px;
      bottom: 54px;
      border-radius: 34% 66% 44% 56% / 52% 38% 62% 48%;
      background:
        linear-gradient(135deg, rgba(134,94,191,0.16) 0%, rgba(134,94,191,0.06) 100%);
      border: 1px solid rgba(134,94,191,0.18);
    }

    .local_map_shape::before,
    .local_map_shape::after {
      content: "";
      position: absolute;
      border-radius: 999px;
      border: 1px dashed rgba(134,94,191,0.25);
    }

    .local_map_shape::before {
      left: 15%;
      right: 18%;
      top: 30%;
      height: 1px;
      transform: rotate(-14deg);
    }

    .local_map_shape::after {
      left: 40%;
      top: 14%;
      bottom: 16%;
      width: 1px;
      transform: rotate(18deg);
    }

    .local_pin {
      position: absolute;
      width: 22px;
      height: 22px;
      border-radius: 50% 50% 50% 6px;
      transform: rotate(45deg);
      background: var(--brand);
      box-shadow: 0 12px 26px rgba(134,94,191,0.24);
    }

    .local_pin::before {
      content: "";
      position: absolute;
      left: 6px;
      top: 6px;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: white;
    }

    .local_pin.one { left: 28%; top: 30%; }
    .local_pin.two { right: 28%; top: 40%; background: var(--green); }
    .local_pin.three { left: 48%; bottom: 24%; background: var(--brand_deep); }

    .local_provider_card {
      position: absolute;
      right: 28px;
      bottom: 30px;
      width: min(320px, calc(100% - 56px));
      padding: 16px;
      border-radius: var(--radius);
      background: rgba(255,255,255,0.94);
      border: 1px solid rgba(229,231,235,0.9);
      box-shadow: 0 18px 46px rgba(26,16,64,0.14);
    }

    .local_provider_head {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 13px;
    }

    .local_provider_avatar {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--brand), #a07de0);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: 900;
    }

    .local_provider_name {
      color: var(--ink);
      font-size: 0.92rem;
      font-weight: 900;
      line-height: 1.2;
    }

    .local_provider_meta {
      color: var(--muted);
      font-size: 0.76rem;
      margin-top: 2px;
    }

    .local_provider_rows {
      display: grid;
      gap: 8px;
    }

    .local_provider_row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      padding: 9px 10px;
      border-radius: 7px;
      background: #fbfbfd;
      border: 1px solid #f0ecf8;
      color: var(--muted);
      font-size: 0.78rem;
      font-weight: 700;
    }

    .local_provider_row strong {
      color: var(--ink);
      font-size: 0.8rem;
    }

    .local_state_badge {
      position: absolute;
      left: 30px;
      top: 32px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 9px 12px;
      border-radius: 999px;
      background: white;
      border: 1px solid #e8d9f8;
      color: var(--brand_deep);
      font-size: 0.78rem;
      font-weight: 900;
      box-shadow: 0 10px 28px rgba(26,16,64,0.08);
    }

    .local_state_badge::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 0 5px rgba(28,157,87,0.12);
    }

    .visit_formats_section {
      background: white;
      min-height: 100vh;
      min-height: 100dvh;
      display: flex;
      align-items: center;
      padding: 80px 0;
      border-top: 1px solid rgba(229,231,235,0.72);
      border-bottom: 1px solid rgba(229,231,235,0.9);
    }

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

    .visit_formats_header {
      max-width: 780px;
      margin: 0 auto 34px;
      text-align: center;
    }

    .visit_formats_title {
      margin: 0;
      margin-block: 0;
      font-weight: 700;
      font-size: clamp(2rem, 3.2vw, 3.2rem);
      line-height: 1.04;
      letter-spacing: 0;
      color: var(--brand_deep);
    }

    .visit_formats_copy {
      color: var(--muted);
      font-size: 1rem;
      margin: 14px auto 0;
      max-width: 660px;
    }

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

    .visit_format_card {
      min-height: 330px;
      display: grid;
      grid-template-rows: 168px 1fr;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: white;
      box-shadow: 0 1px 3px rgba(15,23,42,0.05);
      transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
    }

    .visit_format_card.video_visit_card {
      grid-template-rows: 252px 1fr;
    }

    .visit_format_card.phone_visit_card {
      grid-template-rows: 252px 1fr;
    }

    .visit_format_card.live_visit_card {
      grid-template-rows: 252px 1fr;
    }

    .visit_format_card.messaging_visit_card {
      grid-template-rows: 252px 1fr;
    }

    .visit_format_card:hover {
      transform: translateY(-3px);
      border-color: #e8d9f8;
      box-shadow: var(--shadow_small);
    }

    .visit_format_visual {
      position: relative;
      overflow: hidden;
      background:
        linear-gradient(135deg, #ffffff 0%, #f5f0ff 100%);
      border-bottom: 1px solid #f0ecf8;
    }

    .visit_format_visual.image_visual {
      background: linear-gradient(180deg, #ffffff 0%, #f5f0ff 100%);
    }

    .visit_format_visual.image_visual::before {
      display: none;
    }

    .visit_format_image {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
      padding: 0;
    }

    .visit_format_visual::before {
      content: "";
      position: absolute;
      inset: 16px;
      border-radius: 50%;
      background: rgba(134,94,191,0.08);
      filter: blur(1px);
      animation: vf_soft_pulse 4.5s ease-in-out infinite;
    }

    .vf_orbit {
      position: absolute;
      inset: 20px;
      border: 1px solid rgba(134,94,191,0.12);
      border-radius: 999px;
      animation: vf_float 5s ease-in-out infinite;
    }

    .visit_format_body {
      padding: 18px 18px 0 18px;
      display: flex;
      flex-direction: column;
    }

    .btn_card_book {
      margin-top: auto;
      margin-left: -18px;
      margin-right: -18px;
      width: calc(100% + 36px);
      background: white;
      color: var(--brand);
      border-left: none;
      border-right: none;
      border-bottom: none;
      border-top: 1px solid var(--line);
      border-radius: 0 0 7px 7px;
      box-shadow: none;
      font-size: 0.84rem;
      font-weight: 700;
      min-height: 44px;
      padding: 0 18px;
      text-align: center;
    }

    .btn_card_book:hover {
      background: var(--brand_soft);
      color: var(--brand_dark);
      border-top-color: var(--brand);
      transform: none;
    }

    .visit_format_label {
      display: inline-flex;
      align-items: center;
      min-height: 24px;
      padding: 0 8px;
      border-radius: 999px;
      color: var(--brand);
      background: var(--brand_soft);
      font-size: 0.68rem;
      font-weight: 900;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .visit_format_title {
      font-size: 1.06rem;
      font-weight: 900;
      color: var(--ink);
      line-height: 1.18;
      margin-bottom: 8px;
    }

    .visit_format_text {
      color: var(--muted);
      font-size: 0.86rem;
      margin: 0 0 14px 0;
    }

    .video_visit_card .visit_format_body {
      padding-top: 16px;
    }

    .video_visit_card .visit_format_title,
    .phone_visit_card .visit_format_title,
    .live_visit_card .visit_format_title,
    .messaging_visit_card .visit_format_title {
      font-size: 1.16rem;
      margin-bottom: 7px;
    }

    .phone_visit_card .visit_format_body,
    .live_visit_card .visit_format_body,
    .messaging_visit_card .visit_format_body {
      padding-top: 16px;
    }

    .vf_screen {
      position: absolute;
      left: 26px;
      right: 26px;
      top: 36px;
      height: 96px;
      border-radius: 8px;
      background: white;
      border: 1px solid #e8d9f8;
      box-shadow: 0 14px 34px rgba(26,16,64,0.12);
      animation: vf_float 4.2s ease-in-out infinite;
    }

    .vf_screen::before {
      content: "";
      position: absolute;
      left: 12px;
      top: 12px;
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background: linear-gradient(135deg, #865EBF 0%, #a07de0 100%);
    }

    .vf_screen::after {
      content: "";
      position: absolute;
      left: 72px;
      top: 18px;
      width: 70px;
      height: 8px;
      border-radius: 999px;
      background: #e8d9f8;
      box-shadow: 0 20px 0 #f0ecf8, 0 40px 0 #f0ecf8;
    }

    .vf_video_controls {
      position: absolute;
      left: 50%;
      bottom: 22px;
      display: flex;
      gap: 7px;
      transform: translateX(-50%);
      z-index: 2;
    }

    .vf_video_controls span {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: white;
      box-shadow: 0 8px 18px rgba(26,16,64,0.12);
      border: 1px solid #e8d9f8;
    }

    .vf_video_controls span:nth-child(2) {
      background: var(--brand);
      border-color: var(--brand);
      animation: vf_button_pulse 2.2s ease-in-out infinite;
    }

    .vf_phone_body {
      position: absolute;
      left: 50%;
      top: 22px;
      width: 72px;
      height: 112px;
      transform: translateX(-50%) rotate(-7deg);
      border-radius: 18px;
      background: var(--brand_deep);
      box-shadow: 0 18px 36px rgba(26,16,64,0.18);
      animation: vf_phone_ring 2.6s ease-in-out infinite;
    }

    .vf_phone_body::before {
      content: "";
      position: absolute;
      inset: 9px 7px 14px;
      border-radius: 12px;
      background: linear-gradient(180deg, #ffffff 0%, #f3e8ff 100%);
    }

    .vf_phone_body::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: 6px;
      width: 18px;
      height: 3px;
      transform: translateX(-50%);
      border-radius: 999px;
      background: rgba(255,255,255,0.7);
    }

    .vf_call_lines {
      position: absolute;
      left: 50%;
      top: 56px;
      width: 38px;
      height: 8px;
      transform: translateX(-50%) rotate(-7deg);
      border-radius: 999px;
      background: var(--brand);
      box-shadow: 0 18px 0 #d8c6ee, 0 36px 0 #d8c6ee;
      z-index: 2;
    }

    .vf_signal {
      position: absolute;
      left: calc(50% + 48px);
      top: 48px;
      width: 18px;
      height: 18px;
      border-top: 2px solid var(--brand);
      border-right: 2px solid var(--brand);
      border-radius: 0 18px 0 0;
      opacity: 0;
      animation: vf_signal 1.8s ease-out infinite;
    }

    .vf_signal.two {
      width: 28px;
      height: 28px;
      animation-delay: 0.32s;
    }

    .vf_room {
      position: absolute;
      left: 24px;
      right: 24px;
      bottom: 22px;
      height: 76px;
      border-radius: 8px;
      background: white;
      border: 1px solid #e8d9f8;
      box-shadow: 0 14px 34px rgba(26,16,64,0.12);
      animation: vf_float 5s ease-in-out infinite;
    }

    .vf_room::before {
      content: "";
      position: absolute;
      left: 22px;
      bottom: 14px;
      width: 34px;
      height: 46px;
      border-radius: 18px 18px 10px 10px;
      background: var(--brand);
      box-shadow: 54px 0 0 #d8c6ee, 108px 0 0 #f0ecf8;
    }

    .vf_room::after {
      content: "";
      position: absolute;
      left: 18px;
      right: 18px;
      bottom: 9px;
      height: 2px;
      background: #f0ecf8;
    }

    .vf_location_pin {
      position: absolute;
      left: 50%;
      top: 20px;
      width: 34px;
      height: 34px;
      transform: translateX(-50%) rotate(45deg);
      border-radius: 50% 50% 50% 8px;
      background: var(--brand);
      box-shadow: 0 12px 24px rgba(134,94,191,0.24);
      animation: vf_pin_drop 3.5s ease-in-out infinite;
      z-index: 2;
    }

    .vf_location_pin::before {
      content: "";
      position: absolute;
      left: 9px;
      top: 9px;
      width: 16px;
      height: 16px;
      border-radius: 50%;
      background: white;
    }

    .vf_bubble {
      position: absolute;
      left: 28px;
      top: 30px;
      width: 104px;
      height: 42px;
      border-radius: 12px 12px 12px 3px;
      background: white;
      border: 1px solid #e8d9f8;
      box-shadow: 0 14px 34px rgba(26,16,64,0.12);
      animation: vf_message_left 4s ease-in-out infinite;
    }

    .vf_bubble::before {
      content: "";
      position: absolute;
      left: 16px;
      top: 15px;
      width: 64px;
      height: 6px;
      border-radius: 999px;
      background: #d8c6ee;
    }

    .vf_bubble_alt {
      position: absolute;
      right: 28px;
      bottom: 30px;
      width: 108px;
      height: 48px;
      border-radius: 12px 12px 3px 12px;
      background: var(--brand);
      box-shadow: 0 14px 34px rgba(134,94,191,0.2);
      animation: vf_message_right 4s ease-in-out infinite;
    }

    .vf_bubble_alt::before {
      content: "";
      position: absolute;
      left: 16px;
      top: 15px;
      width: 70px;
      height: 6px;
      border-radius: 999px;
      background: rgba(255,255,255,0.72);
      box-shadow: 0 14px 0 rgba(255,255,255,0.42);
    }

    .vf_typing {
      position: absolute;
      left: 46px;
      top: 54px;
      display: flex;
      gap: 4px;
    }

    .vf_typing span {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--brand);
      animation: vf_typing 1.2s ease-in-out infinite;
    }

    .vf_typing span:nth-child(2) { animation-delay: 0.16s; }
    .vf_typing span:nth-child(3) { animation-delay: 0.32s; }

    @keyframes vf_soft_pulse {
      0%, 100% { transform: scale(0.96); opacity: 0.72; }
      50% { transform: scale(1.05); opacity: 1; }
    }

    @keyframes vf_float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-7px); }
    }

    @keyframes vf_button_pulse {
      0%, 100% { box-shadow: 0 8px 18px rgba(134,94,191,0.16); }
      50% { box-shadow: 0 8px 18px rgba(134,94,191,0.16), 0 0 0 7px rgba(134,94,191,0.12); }
    }

    @keyframes vf_phone_ring {
      0%, 100% { transform: translateX(-50%) rotate(-7deg); }
      8% { transform: translateX(-50%) rotate(-10deg); }
      16% { transform: translateX(-50%) rotate(-4deg); }
      24% { transform: translateX(-50%) rotate(-8deg); }
    }

    @keyframes vf_signal {
      0% { transform: scale(0.65); opacity: 0; }
      30% { opacity: 0.65; }
      100% { transform: scale(1.45); opacity: 0; }
    }

    @keyframes vf_pin_drop {
      0%, 100% { transform: translateX(-50%) translateY(0) rotate(45deg); }
      45% { transform: translateX(-50%) translateY(-9px) rotate(45deg); }
      55% { transform: translateX(-50%) translateY(-7px) rotate(45deg); }
    }

    @keyframes vf_message_left {
      0%, 100% { transform: translateY(0); }
      40% { transform: translateY(-6px); }
    }

    @keyframes vf_message_right {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(6px); }
    }

    @keyframes vf_typing {
      0%, 80%, 100% { transform: translateY(0); opacity: 0.45; }
      40% { transform: translateY(-4px); opacity: 1; }
    }

    .press_trust_section {
      min-height: 100vh;
      min-height: 100dvh;
      display: flex;
      align-items: center;
      padding: 80px 0;
      background:
        radial-gradient(circle at 78% 16%, rgba(134,94,191,0.14), transparent 28%),
        linear-gradient(180deg, #faf9fd 0%, #ffffff 100%);
      border-bottom: 1px solid rgba(229,231,235,0.9);
      overflow: hidden;
    }

    .press_trust_inner {
      width: min(var(--max), calc(100% - 40px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 48px;
      align-items: center;
    }

    .press_trust_kicker {
      color: var(--brand);
      font-size: 0.76rem;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .press_trust_title {
      margin: 0;
      margin-block: 0;
      font-weight: 700;
      color: var(--brand_deep);
      font-size: clamp(2.4rem, 4.8vw, 5rem);
      line-height: 0.98;
      letter-spacing: 0;
      max-width: 560px;
    }

    .press_trust_title span {
      color: var(--brand);
    }

    .press_trust_copy {
      color: var(--muted);
      font-size: clamp(1rem, 1.35vw, 1.14rem);
      margin: 20px 0 0;
      max-width: 540px;
    }

    .press_trust_note {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 28px;
      padding: 9px 12px;
      border-radius: 999px;
      background: white;
      border: 1px solid #e8d9f8;
      color: var(--brand_deep);
      font-size: 0.78rem;
      font-weight: 800;
      box-shadow: 0 8px 24px rgba(26,16,64,0.06);
    }

    .press_trust_note::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--brand);
      box-shadow: 0 0 0 5px rgba(134,94,191,0.12);
    }

    .press_wall {
      position: relative;
      min-height: 560px;
      border-radius: var(--radius);
      background: rgba(255,255,255,0.94);
      border: 1px solid #e8d9f8;
      box-shadow: var(--shadow);
      padding: 24px;
      overflow: hidden;
    }

    .press_wall::before {
      content: "";
      position: absolute;
      inset: -120px -80px auto auto;
      width: 260px;
      height: 260px;
      border-radius: 50%;
      background: rgba(134,94,191,0.1);
    }

    .press_wall_header {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      margin-bottom: 18px;
      padding-bottom: 16px;
      border-bottom: 1px solid #f0ecf8;
    }

    .press_wall_label {
      color: var(--ink);
      font-weight: 900;
      font-size: 0.94rem;
    }

    .press_wall_meta {
      color: var(--muted);
      font-size: 0.74rem;
      font-weight: 700;
      text-align: right;
    }

    .press_logo_grid {
      position: relative;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }

    .press_logo_card {
      min-height: 112px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px 14px;
      border-radius: var(--radius);
      background:
        linear-gradient(180deg, #ffffff 0%, #fbfbfd 100%);
      border: 1px solid #f0ecf8;
      color: var(--brand_deep);
      text-align: center;
      box-shadow: 0 1px 2px rgba(15,23,42,0.04);
    }

    .press_logo_name {
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(1.08rem, 1.6vw, 1.55rem);
      line-height: 1.08;
      letter-spacing: 0;
      font-weight: 700;
    }

    .press_logo_card:nth-child(2n) .press_logo_name {
      font-family: Inter, ui-sans-serif, system-ui, sans-serif;
      font-size: clamp(1rem, 1.4vw, 1.36rem);
      font-weight: 900;
      text-transform: uppercase;
    }

    .press_quote_card {
      position: relative;
      margin-top: 14px;
      padding: 18px;
      border-radius: var(--radius);
      background: var(--brand_deep);
      color: white;
      box-shadow: 0 18px 46px rgba(26,16,64,0.18);
    }

    .press_quote_label {
      color: #d8c6ee;
      font-size: 0.68rem;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 8px;
    }

    .press_quote_text {
      margin: 0;
      color: rgba(255,255,255,0.86);
      font-size: 0.98rem;
      line-height: 1.55;
    }

    .care_paths_section {
      min-height: 100vh;
      min-height: 100dvh;
      display: flex;
      align-items: center;
      background:
        radial-gradient(circle at 82% 16%, rgba(134,94,191,0.28), transparent 30%),
        linear-gradient(135deg, #1a1040 0%, #2a1d54 52%, #f8f7fb 52.2%, #ffffff 100%);
      padding: 80px 0;
      overflow: hidden;
    }

    .care_paths_inner {
      width: min(var(--max), calc(100% - 40px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: 0.82fr 1.18fr;
      gap: 42px;
      align-items: center;
    }

    .care_paths_copy {
      color: white;
      max-width: 480px;
    }

    .care_paths_kicker {
      color: #d8c6ee;
      font-size: 0.76rem;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .care_paths_title {
      margin: 0;
      margin-block: 0;
      font-weight: 700;
      font-size: clamp(2.3rem, 4.4vw, 4.4rem);
      line-height: 1.02;
      letter-spacing: 0;
    }

    .care_paths_text {
      color: rgba(255,255,255,0.74);
      font-size: 1.02rem;
      margin: 18px 0 0;
      max-width: 430px;
    }

    .care_paths_note {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 28px;
      padding: 9px 12px;
      border-radius: 999px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.13);
      color: rgba(255,255,255,0.82);
      font-size: 0.82rem;
      font-weight: 700;
    }

    .care_paths_note::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 0 5px rgba(28,157,87,0.14);
    }

    .care_paths_panel {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
      align-items: stretch;
    }

    .care_path_card {
      min-height: 480px;
      border-radius: var(--radius);
      background: rgba(255,255,255,0.96);
      border: 1px solid rgba(229,231,235,0.92);
      box-shadow: var(--shadow);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
    }

    .care_path_card:hover {
      transform: translateY(-4px);
      border-color: #e8d9f8;
      box-shadow: 0 24px 70px rgba(26,16,64,0.17);
    }

    .care_path_visual {
      min-height: 210px;
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, #ffffff 0%, #f5f0ff 100%);
      border-bottom: 1px solid #f0ecf8;
    }

    .care_path_visual::before {
      content: "";
      position: absolute;
      inset: 22px;
      border-radius: 50%;
      background: rgba(134,94,191,0.08);
    }

    .cp_visit_card {
      position: absolute;
      left: 50%;
      top: 42px;
      width: 176px;
      height: 118px;
      transform: translateX(-50%);
      border-radius: 10px;
      background: white;
      border: 1px solid #e8d9f8;
      box-shadow: 0 18px 42px rgba(26,16,64,0.13);
    }

    .cp_visit_card::before {
      content: "";
      position: absolute;
      left: 18px;
      top: 18px;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--brand), #a07de0);
    }

    .cp_visit_card::after {
      content: "";
      position: absolute;
      left: 74px;
      top: 24px;
      width: 78px;
      height: 8px;
      border-radius: 999px;
      background: #d8c6ee;
      box-shadow: 0 24px 0 #f0ecf8, 0 48px 0 #f0ecf8;
    }

    .cp_check {
      position: absolute;
      right: 36px;
      bottom: 34px;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 12px 28px rgba(28,157,87,0.2);
    }

    .cp_check::before {
      content: "";
      position: absolute;
      left: 13px;
      top: 11px;
      width: 15px;
      height: 9px;
      border-left: 3px solid white;
      border-bottom: 3px solid white;
      transform: rotate(-45deg);
    }

    .cp_relationship {
      position: absolute;
      inset: 26px 24px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      align-items: center;
      gap: 8px;
    }

    .cp_person {
      height: 116px;
      border-radius: 14px;
      background: rgba(255,255,255,0.9);
      border: 1px solid #e8d9f8;
      box-shadow: 0 14px 34px rgba(26,16,64,0.08);
      position: relative;
    }

    .cp_person::before {
      content: "";
      position: absolute;
      left: 50%;
      top: 18px;
      width: 36px;
      height: 36px;
      transform: translateX(-50%);
      border-radius: 50%;
      background: linear-gradient(135deg, var(--brand), #a07de0);
    }

    .cp_person::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: 18px;
      width: 54px;
      height: 8px;
      transform: translateX(-50%);
      border-radius: 999px;
      background: #d8c6ee;
      box-shadow: 0 16px 0 #f0ecf8;
    }

    .cp_person.main {
      height: 138px;
      background: white;
      transform: translateY(-6px);
    }

    .cp_person.main::before {
      width: 44px;
      height: 44px;
      background: var(--brand_deep);
    }

    .care_path_body {
      padding: 22px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .care_path_label {
      color: var(--brand);
      font-size: 0.72rem;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .care_path_title {
      color: var(--ink);
      font-size: 1.28rem;
      line-height: 1.18;
      font-weight: 900;
      margin-bottom: 10px;
    }

    .care_path_text {
      color: var(--muted);
      font-size: 0.9rem;
      margin: 0;
    }

    .care_path_list {
      margin: 18px 0 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 8px;
      color: #4b5563;
      font-size: 0.84rem;
    }

    .care_path_list li {
      display: flex;
      gap: 8px;
    }

    .care_path_list li::before {
      content: "";
      width: 7px;
      height: 7px;
      margin-top: 7px;
      border-radius: 50%;
      background: var(--brand);
      flex: 0 0 auto;
    }

    .mission_section {
      min-height: 100vh;
      min-height: 100dvh;
      display: flex;
      align-items: center;
      padding: 80px 0;
      background:
        linear-gradient(180deg, rgba(243,232,255,0.7) 0%, rgba(255,255,255,0) 30%),
        #ffffff;
      overflow: hidden;
      border-bottom: 1px solid rgba(229,231,235,0.9);
    }

    .mission_inner {
      width: min(var(--max), calc(100% - 40px));
      margin: 0 auto;
      display: grid;
      gap: 34px;
    }

    .mission_copy {
      color: var(--brand_deep);
      max-width: 960px;
    }

    .mission_kicker {
      color: var(--brand);
      font-size: 0.76rem;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .mission_title {
      margin: 0;
      margin-block: 0;
      font-weight: 700;
      font-size: clamp(2.4rem, 4.8vw, 5rem);
      line-height: 0.98;
      letter-spacing: 0;
      max-width: 760px;
    }

    .mission_text {
      color: #4b5563;
      font-size: clamp(1rem, 1.35vw, 1.16rem);
      margin: 20px 0 0;
      max-width: 700px;
    }

    .mission_quote {
      margin-top: 28px;
      padding: 20px 22px;
      border-radius: var(--radius);
      background: var(--brand_deep);
      border: 1px solid rgba(26,16,64,0.08);
      color: rgba(255,255,255,0.82);
      font-size: 0.95rem;
      line-height: 1.55;
      max-width: 620px;
      box-shadow: 0 20px 50px rgba(26,16,64,0.14);
    }

    .mission_quote strong {
      color: white;
    }

    .mission_visual {
      position: relative;
      min-height: 300px;
      border-radius: var(--radius);
      background: #faf9fd;
      border: 1px solid rgba(229,231,235,0.95);
      box-shadow: 0 1px 3px rgba(15,23,42,0.05);
      padding: 22px;
    }

    .mission_visual_head {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      margin-bottom: 18px;
    }

    .mission_visual_title {
      color: var(--ink);
      font-size: 0.96rem;
      font-weight: 900;
    }

    .mission_visual_badge,
    .mission_wait_chip {
      padding: 7px 10px;
      border-radius: 999px;
      color: var(--brand);
      background: var(--brand_soft);
      font-size: 0.72rem;
      font-weight: 900;
      white-space: nowrap;
    }

    .mission_access_grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
    }

    .mission_access_item {
      min-height: 170px;
      border-radius: var(--radius);
      background: white;
      border: 1px solid #ececf2;
      padding: 18px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .mission_access_number {
      color: var(--brand);
      font-size: 2.4rem;
      line-height: 1;
      font-weight: 900;
    }

    .mission_access_item:nth-child(2) .mission_access_number {
      color: var(--brand_deep);
    }

    .mission_access_item:nth-child(3) {
      background: linear-gradient(135deg, var(--brand_deep) 0%, #2a1d54 100%);
      border-color: var(--brand_deep);
      color: white;
    }

    .mission_access_item:nth-child(3) .mission_access_number,
    .mission_access_item:nth-child(3) .mission_access_title {
      color: white;
    }

    .mission_access_item:nth-child(3) .mission_access_text {
      color: rgba(255,255,255,0.7);
    }

    .mission_access_title {
      color: var(--ink);
      font-size: 0.98rem;
      font-weight: 900;
      line-height: 1.2;
      margin-top: 14px;
    }

    .mission_access_text {
      color: var(--muted);
      font-size: 0.82rem;
      line-height: 1.45;
      margin: 8px 0 0;
    }

    .mission_founder_row {
      display: grid;
      grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
      gap: 16px;
      align-items: stretch;
    }

    .mission_founder_card {
      border-radius: var(--radius);
      background: white;
      border: 1px solid #e8d9f8;
      padding: 22px;
      box-shadow: var(--shadow_small);
    }

    .mission_founder_label {
      color: var(--brand);
      font-size: 0.72rem;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .mission_founder_text {
      color: #4b5563;
      font-size: 0.98rem;
      line-height: 1.6;
      margin: 0;
    }

    .mission_founder_signature {
      margin-top: 18px;
      color: var(--brand_deep);
      font-size: 0.82rem;
      font-weight: 900;
    }

    .mission_story_rule {
      display: grid;
      grid-template-columns: 1fr;
      gap: 10px;
      align-content: center;
      padding: 18px 0;
    }

    .mission_story_line {
      height: 1px;
      background: linear-gradient(90deg, rgba(134,94,191,0.1), rgba(134,94,191,0.5), rgba(28,157,87,0.36));
    }

    .mission_story_caption {
      color: var(--muted);
      font-size: 0.82rem;
      font-weight: 800;
    }

    .mission_path,
    .mission_problem_card,
    .mission_solution_card,
    .mission_er_icon,
    .mission_care_icon {
      display: none;
    }

    .care_examples_section {
      min-height: 100vh;
      min-height: 100dvh;
      display: flex;
      align-items: center;
      background:
        radial-gradient(circle at 12% 18%, rgba(134,94,191,0.08), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #faf9fd 100%);
      padding: 78px 0;
      border-top: 1px solid rgba(229,231,235,0.76);
      border-bottom: 1px solid rgba(229,231,235,0.9);
    }

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

    .care_examples_header {
      display: grid;
      grid-template-columns: 0.82fr 1.18fr;
      gap: 34px;
      align-items: end;
      margin-bottom: 28px;
    }

    .care_examples_kicker {
      color: var(--brand);
      font-size: 0.76rem;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .care_examples_title {
      margin: 0;
      margin-block: 0;
      font-weight: 700;
      color: var(--brand_deep);
      font-size: clamp(2.2rem, 4vw, 4rem);
      line-height: 1.03;
      letter-spacing: 0;
    }

    .care_examples_intro {
      color: var(--muted);
      font-size: 1rem;
      max-width: 620px;
      margin: 0;
    }

    .care_examples_layout {
      display: grid;
      grid-template-columns: 0.8fr 1.2fr;
      gap: 18px;
      align-items: start;
    }

    .care_examples_panel {
      background: white;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: 0 1px 3px rgba(15,23,42,0.05);
      overflow: hidden;
    }

    .care_examples_panel_head {
      padding: 18px 20px;
      border-bottom: 1px solid #f0ecf8;
      background: linear-gradient(135deg, #ffffff 0%, #f5f0ff 100%);
    }

    .care_examples_panel_title {
      color: var(--ink);
      font-size: 1rem;
      font-weight: 900;
      margin-bottom: 3px;
    }

    .care_examples_panel_sub {
      color: var(--muted);
      font-size: 0.82rem;
    }

    .care_action_list {
      display: grid;
      gap: 0;
    }

    .care_action_item {
      display: grid;
      grid-template-columns: 42px minmax(0, 1fr) auto;
      gap: 12px;
      align-items: center;
      padding: 14px 18px;
      border-bottom: 1px solid #f3f4f6;
    }

    .care_action_item:last-child {
      border-bottom: none;
    }

    .care_action_icon,
    .condition_icon {
      width: 42px;
      height: 42px;
      border-radius: 8px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--brand_soft);
      color: var(--brand);
      font-size: 0.75rem;
      font-weight: 900;
      letter-spacing: 0.02em;
      flex: 0 0 auto;
    }

    .care_action_title {
      color: var(--ink);
      font-size: 0.9rem;
      font-weight: 900;
      line-height: 1.25;
    }

    .care_action_text {
      color: var(--muted);
      font-size: 0.78rem;
      margin-top: 2px;
      line-height: 1.45;
    }

    .learn_more_link {
      color: var(--brand);
      font-size: 0.76rem;
      font-weight: 900;
      white-space: nowrap;
    }

    .conditions_grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
      padding: 14px;
    }

    .condition_card {
      min-height: 150px;
      display: flex;
      flex-direction: column;
      padding: 13px;
      border: 1px solid #ececf2;
      border-radius: var(--radius);
      background: #fbfbfd;
      transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
    }

    .condition_card:hover {
      background: white;
      border-color: #e8d9f8;
      box-shadow: var(--shadow_small);
      transform: translateY(-2px);
    }

    .condition_icon {
      width: 34px;
      height: 34px;
      margin-bottom: 10px;
      font-size: 0.66rem;
    }

    .condition_title {
      color: var(--ink);
      font-size: 0.85rem;
      font-weight: 900;
      line-height: 1.25;
      margin-bottom: 5px;
    }

    .condition_text {
      color: var(--muted);
      font-size: 0.75rem;
      line-height: 1.42;
      margin: 0 0 10px;
    }

    .condition_card .learn_more_link {
      margin-top: auto;
    }

    .service_icon,
    .step_num,
    .preview_icon,
    .provider_badge_icon {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-weight: 900;
    }

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

    .service_card {
      background: white;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 18px;
      min-height: 210px;
      box-shadow: 0 1px 2px rgba(15,23,42,0.04);
      transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
    }

    .service_card:hover {
      transform: translateY(-3px);
      border-color: #e8d9f8;
      box-shadow: var(--shadow_small);
    }

    .service_icon {
      background: var(--brand_soft);
      color: var(--brand);
      margin-bottom: 18px;
      font-size: 1.05rem;
    }

    .service_card.green .service_icon {
      background: var(--green_soft);
      color: var(--green);
    }

    .service_card.blue .service_icon {
      background: #eef4ff;
      color: var(--blue);
    }

    .service_card.gold .service_icon {
      background: #fff7e8;
      color: #b7791f;
    }

    .service_title {
      font-size: 1rem;
      font-weight: 800;
      margin-bottom: 8px;
      color: var(--ink);
    }

    .service_copy {
      color: var(--muted);
      font-size: 0.86rem;
      margin: 0;
    }

    .split_layout {
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      gap: 52px;
      align-items: center;
    }

    .how_it_works_section {
      min-height: 100vh;
      min-height: 100dvh;
      display: flex;
      align-items: center;
      background:
        radial-gradient(circle at 8% 14%, rgba(134,94,191,0.08), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #faf9fd 100%);
      border-top: 1px solid rgba(229,231,235,0.72);
      border-bottom: 1px solid rgba(229,231,235,0.9);
    }

    .how_it_works_layout {
      display: grid;
      grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
      gap: 36px;
      align-items: center;
    }

    .workflow_image_panel {
      border-radius: var(--radius);
      background: white;
      border: 1px solid #e8d9f8;
      box-shadow: var(--shadow);
      overflow: hidden;
      padding: 10px;
    }

    .workflow_image_panel img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 6px;
    }

    .image_panel {
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      min-height: 520px;
      box-shadow: var(--shadow);
      background: #ede8f5;
    }

    .image_panel img {
      width: 100%;
      height: 100%;
      min-height: 520px;
      object-fit: cover;
    }

    .image_caption {
      position: absolute;
      left: 18px;
      right: 18px;
      bottom: 18px;
      padding: 14px;
      border-radius: var(--radius);
      background: rgba(255,255,255,0.92);
      border: 1px solid rgba(255,255,255,0.7);
      box-shadow: 0 10px 32px rgba(15,23,42,0.12);
    }

    .image_caption strong {
      display: block;
      color: var(--ink);
      font-size: 0.88rem;
    }

    .image_caption span {
      display: block;
      color: var(--muted);
      font-size: 0.76rem;
      margin-top: 2px;
    }

    .step_list {
      display: grid;
      gap: 14px;
      margin-top: 28px;
    }

    .step_row {
      display: grid;
      grid-template-columns: 48px 1fr;
      gap: 14px;
      align-items: start;
      padding: 16px;
      background: white;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: 0 1px 2px rgba(15,23,42,0.04);
    }

    .step_num {
      width: 42px;
      height: 42px;
      background: var(--brand);
      color: white;
    }

    .step_title {
      font-weight: 800;
      color: var(--ink);
      margin-bottom: 4px;
    }

    .step_copy {
      color: var(--muted);
      font-size: 0.88rem;
      margin: 0;
    }

    .platform_preview {
      display: grid;
      grid-template-columns: 280px 1fr;
      background: white;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .preview_sidebar {
      background: var(--brand_deep);
      color: white;
      padding: 20px;
      min-height: 480px;
    }

    .preview_profile {
      display: flex;
      gap: 10px;
      align-items: center;
      padding-bottom: 18px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      margin-bottom: 18px;
    }

    .preview_avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--brand) 0%, #a07de0 100%);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
    }

    .preview_name {
      font-size: 0.84rem;
      font-weight: 800;
    }

    .preview_role {
      color: rgba(255,255,255,0.48);
      font-size: 0.72rem;
      margin-top: 2px;
    }

    .preview_nav_item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 12px;
      border-radius: 8px;
      color: rgba(255,255,255,0.66);
      font-size: 0.82rem;
      font-weight: 700;
      margin-bottom: 2px;
    }

    .preview_nav_item.active {
      background: var(--brand);
      color: white;
    }

    .preview_content {
      background: #fbfbfd;
      padding: 22px;
      min-width: 0;
    }

    .preview_topbar {
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 18px;
    }

    .preview_heading strong {
      display: block;
      font-size: 1rem;
    }

    .preview_heading span {
      display: block;
      color: var(--muted);
      font-size: 0.74rem;
      margin-top: 2px;
    }

    .preview_search {
      width: 220px;
      height: 34px;
      border-radius: 999px;
      border: 1px solid var(--line);
      background: #f5f4f8;
      color: var(--muted);
      display: flex;
      align-items: center;
      padding: 0 14px;
      font-size: 0.75rem;
    }

    .preview_grid {
      display: grid;
      grid-template-columns: 1.25fr 0.75fr;
      gap: 14px;
    }

    .preview_card,
    .provider_card,
    .pricing_card,
    .faq_item {
      background: white;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: 0 1px 3px rgba(15,23,42,0.05);
    }

    .preview_card {
      padding: 16px;
      min-height: 128px;
    }

    .preview_card.brand {
      background: linear-gradient(135deg, #ffffff 0%, #f5f0ff 100%);
      border-color: #e8d9f8;
    }

    .preview_card_header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 12px;
    }

    .preview_card_title {
      font-weight: 800;
      font-size: 0.88rem;
    }

    .preview_chip {
      display: inline-flex;
      align-items: center;
      border-radius: 999px;
      padding: 4px 9px;
      color: var(--green);
      background: var(--green_soft);
      border: 1px solid #bbf7d0;
      font-size: 0.68rem;
      font-weight: 800;
    }

    .preview_big_text {
      font-size: 1.5rem;
      font-weight: 900;
      color: var(--brand_deep);
      line-height: 1.1;
    }

    .preview_muted {
      color: var(--muted);
      font-size: 0.78rem;
      margin-top: 6px;
    }

    .preview_icon {
      background: var(--brand_soft);
      color: var(--brand);
    }

    .provider_grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
      align-items: stretch;
    }

    .provider_card {
      display: grid;
      grid-template-columns: 180px 1fr;
      overflow: hidden;
      min-height: 280px;
    }

    .provider_photo {
      background: #ede8f5;
      min-height: 280px;
    }

    .provider_photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .provider_body {
      padding: 20px;
      display: flex;
      flex-direction: column;
    }

    .provider_name {
      font-size: 1.1rem;
      font-weight: 900;
      margin-bottom: 3px;
    }

    .provider_meta {
      color: var(--muted);
      font-size: 0.82rem;
      margin-bottom: 14px;
    }

    .provider_badges {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: auto;
    }

    .provider_badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 9px;
      border-radius: 999px;
      background: #f8f7fb;
      border: 1px solid #ececf2;
      color: #4b5563;
      font-size: 0.72rem;
      font-weight: 700;
    }

    .provider_badge_icon {
      width: 18px;
      height: 18px;
      border-radius: 5px;
      background: var(--brand_soft);
      color: var(--brand);
      font-size: 0.7rem;
    }

    .pricing_grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 16px;
    }

    .pricing_card {
      padding: 22px;
      position: relative;
      min-height: 330px;
      display: flex;
      flex-direction: column;
    }

    .pricing_card.featured {
      border-color: var(--brand);
      background: linear-gradient(180deg, #f5f0ff 0%, white 58%);
    }

    .pricing_label {
      color: var(--brand);
      font-size: 0.76rem;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .pricing_name {
      font-size: 1.18rem;
      font-weight: 900;
      margin-bottom: 4px;
    }

    .pricing_price {
      font-size: 2.15rem;
      font-weight: 900;
      color: var(--brand_deep);
      margin: 14px 0 4px;
      line-height: 1;
    }

    .pricing_copy {
      color: var(--muted);
      font-size: 0.86rem;
      margin: 0 0 18px;
    }

    .pricing_list {
      list-style: none;
      padding: 0;
      margin: 0 0 20px;
      display: grid;
      gap: 9px;
      color: #4b5563;
      font-size: 0.84rem;
    }

    .pricing_list li {
      display: flex;
      gap: 8px;
    }

    .pricing_list li::before {
      content: "+";
      color: var(--brand);
      font-weight: 900;
    }

    .pricing_card .btn {
      margin-top: auto;
      width: 100%;
    }

    .provider_invite_section {
      min-height: 100vh;
      min-height: 100dvh;
      display: flex;
      align-items: center;
      padding: 80px 0;
      background:
        radial-gradient(circle at 78% 18%, rgba(134,94,191,0.12), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #faf9fd 100%);
      border-top: 1px solid rgba(229,231,235,0.76);
      border-bottom: 1px solid rgba(229,231,235,0.9);
      overflow: hidden;
    }

    .provider_invite_inner {
      width: min(var(--max), calc(100% - 40px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: 0.88fr 1.12fr;
      gap: 48px;
      align-items: center;
    }

    .provider_invite_kicker {
      color: var(--brand);
      font-size: 0.76rem;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .provider_invite_title {
      margin: 0;
      margin-block: 0;
      font-weight: 700;
      color: var(--brand_deep);
      font-size: clamp(2.4rem, 4.8vw, 5rem);
      line-height: 0.98;
      letter-spacing: 0;
      max-width: 640px;
    }

    .provider_invite_title span {
      color: var(--brand);
    }

    .provider_invite_copy {
      color: var(--muted);
      font-size: clamp(1rem, 1.35vw, 1.14rem);
      margin: 20px 0 0;
      max-width: 570px;
    }

    .provider_invite_actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 28px;
    }

    .provider_invite_visual {
      position: relative;
      border-radius: var(--radius);
      background: var(--brand_deep);
      box-shadow: var(--shadow);
      border: 1px solid rgba(134,94,191,0.28);
      padding: 20px;
      min-height: 540px;
      overflow: hidden;
    }

    .provider_invite_visual::before {
      content: "";
      position: absolute;
      inset: -90px -70px auto auto;
      width: 250px;
      height: 250px;
      border-radius: 50%;
      background: rgba(134,94,191,0.28);
    }

    .provider_console {
      position: relative;
      display: grid;
      grid-template-rows: auto 1fr;
      min-height: 500px;
      border-radius: var(--radius);
      background: rgba(255,255,255,0.96);
      overflow: hidden;
      z-index: 1;
    }

    .provider_console_top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 16px 18px;
      border-bottom: 1px solid #f0ecf8;
      background: linear-gradient(135deg, #ffffff 0%, #f5f0ff 100%);
    }

    .provider_console_title {
      color: var(--ink);
      font-size: 0.96rem;
      font-weight: 900;
    }

    .provider_console_status {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      color: var(--green);
      font-size: 0.74rem;
      font-weight: 900;
      white-space: nowrap;
    }

    .provider_console_status::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 0 5px rgba(28,157,87,0.12);
    }

    .provider_console_body {
      display: grid;
      grid-template-columns: 0.84fr 1.16fr;
      gap: 0;
      min-height: 0;
    }

    .provider_console_nav {
      background: #fbfbfd;
      border-right: 1px solid #f0ecf8;
      padding: 16px;
      display: grid;
      gap: 10px;
      align-content: start;
    }

    .provider_nav_item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px;
      border-radius: 7px;
      color: #4b5563;
      font-size: 0.82rem;
      font-weight: 800;
      background: white;
      border: 1px solid #ececf2;
    }

    .provider_nav_item.active {
      color: var(--brand);
      background: var(--brand_soft);
      border-color: #e8d9f8;
    }

    .provider_nav_icon {
      width: 28px;
      height: 28px;
      border-radius: 7px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--brand_soft);
      color: var(--brand);
      font-size: 0.68rem;
      font-weight: 900;
      flex: 0 0 auto;
    }

    .provider_console_main {
      padding: 16px;
      display: grid;
      gap: 12px;
      align-content: start;
    }

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

    .provider_metric {
      padding: 13px;
      border-radius: var(--radius);
      border: 1px solid #ececf2;
      background: #fbfbfd;
    }

    .provider_metric_value {
      color: var(--brand_deep);
      font-size: 1.42rem;
      font-weight: 900;
      line-height: 1;
    }

    .provider_metric_label {
      color: var(--muted);
      font-size: 0.72rem;
      font-weight: 800;
      margin-top: 5px;
    }

    .provider_feature_list {
      display: grid;
      gap: 9px;
    }

    .provider_feature_row {
      display: grid;
      grid-template-columns: 36px minmax(0, 1fr);
      gap: 10px;
      align-items: center;
      padding: 11px;
      border-radius: var(--radius);
      background: white;
      border: 1px solid #ececf2;
    }

    .provider_feature_icon {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      background: var(--brand_soft);
      color: var(--brand);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 0.68rem;
      font-weight: 900;
    }

    .provider_feature_title {
      color: var(--ink);
      font-size: 0.84rem;
      font-weight: 900;
      line-height: 1.2;
    }

    .provider_feature_text {
      color: var(--muted);
      font-size: 0.74rem;
      margin-top: 2px;
      line-height: 1.4;
    }

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

    .faq_item {
      padding: 18px;
    }

    .faq_question {
      font-weight: 900;
      color: var(--ink);
      margin-bottom: 8px;
    }

    .faq_answer {
      color: var(--muted);
      font-size: 0.9rem;
      margin: 0;
    }

    .final_cta {
      background:
        linear-gradient(90deg, rgba(26,16,64,0.94), rgba(26,16,64,0.74)),
        url("../images/homepage.jpg") center 35% / cover no-repeat;
      color: white;
      padding: 96px 0;
    }

    .final_cta_inner {
      width: min(var(--max), calc(100% - 40px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 24px;
      align-items: center;
    }

    .final_cta h2 {
      margin: 0;
      margin-block: 0;
      font-weight: 700;
      font-size: clamp(2rem, 4vw, 3.6rem);
      line-height: 1.02;
      letter-spacing: 0;
      max-width: 760px;
    }

    .final_cta p {
      color: rgba(255,255,255,0.76);
      margin: 14px 0 0;
      max-width: 590px;
      font-size: 1rem;
    }

    .final_cta .btn_secondary {
      background: white;
      color: var(--brand_deep);
      border-color: white;
    }

    .side_window_outer_container {
      position: relative;
      z-index: 1000;
    }

    .side_window_subcontainer {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 1000;
    }

   

    .side_window_subcontainer.open .underlayer {
      opacity: 1;
    }

    .left_sidewindow_class {
      position: fixed;
      right: -430px;
      top: 0;
      bottom: 0;
      width: min(430px, 100vw);
      height: 100vh;
      height: 100dvh;
      background: white;
      box-shadow: -24px 0 80px rgba(26,16,64,0.18);
      transition: right 0.22s cubic-bezier(0.4, 0, 0.2, 1);
      overflow: hidden;
      pointer-events: auto;
    }

    .side_window_subcontainer.open .left_sidewindow_class {
      right: 0;
    }

    .left_sidewindow_class.booking_sidewindow {
      right: -560px;
      width: min(560px, 100vw);
    }

    .left_sidewindow_class.login_sidewindow {
      right: -500px;
      width: min(500px, 100vw);
    }

    .mchat_container {
      width: 100%;
      min-height: 0;
      max-height: 100dvh;
      height: 100%;
      display: flex;
      flex-direction: column;
      background: #f8f7fb;
      color: var(--ink);
    }

    .landing_login_panel .mchat_header,
    .booking_drawer_card .mchat_header {
      flex: 0 0 auto;
      display: block;
      color: var(--ink);
      padding: calc(17px + env(safe-area-inset-top)) 20px 16px;
      background: white;
      border-bottom: 1px solid var(--line);
    }

    .login_drawer_header_row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
    }

    .login_drawer_title {
      color: var(--brand_deep);
      font-size: 1.18rem;
      font-weight: 900;
      line-height: 1.14;
      margin: 0;
    }

    .login_drawer_subtitle {
      color: var(--muted);
      font-size: 0.86rem;
      margin: 12px 0 0;
    }

    .login_drawer_subtitle button {
      border: none;
      background: transparent;
      color: var(--brand);
      font-weight: 900;
      padding: 0;
      cursor: pointer;
    }

    .close_landing_drawer_class {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      border: 1px solid var(--line);
      background: white;
      color: var(--muted);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
      flex: 0 0 auto;
    }

    .close_landing_drawer_class:hover {
      background: var(--brand_soft);
      border-color: #d8c6ee;
      color: var(--brand);
    }

    .mchat_messages {
      flex: 1 1 auto;
      overflow-y: auto;
      padding: 22px 20px;
    }

    .mchat_input {
      flex: 0 0 auto;
      display: block;
      padding: 14px 20px calc(14px + env(safe-area-inset-bottom));
      background: white;
      border-top: 1px solid var(--line);
      box-shadow: none;
    }

    .landing_login_panel .login_inner_container,
    .landing_login_panel .register_inner_container {
      display: grid;
      gap: 12px;
    }

    .login_drawer_panel {
      background: transparent;
      border: none;
      border-radius: var(--radius);
      padding: 0;
      box-shadow: none;
    }

    .login_register_email_input,
    .login_register_password_input,
    .login_register_name_input,
    .login_register_phone_input {
      width: 100%;
      min-height: 48px;
      border: 1.5px solid var(--line);
      border-radius: 10px;
      background: white;
      padding: 12px 14px;
      color: var(--ink);
      font-size: 0.93rem;
      outline: none;
      transition: border-color 0.15s ease, box-shadow 0.15s ease;
    }

    .login_register_email_input:focus,
    .login_register_password_input:focus,
    .login_register_name_input:focus,
    .login_register_phone_input:focus {
      border-color: var(--brand);
      box-shadow: 0 0 0 3px rgba(134,94,191,0.12);
    }

    .login_register_email_input::placeholder,
    .login_register_password_input::placeholder,
    .login_register_name_input::placeholder,
    .login_register_phone_input::placeholder {
      color: #b0b0be;
    }

    .login_continue,
    .register_continue {
      width: 100%;
      min-height: 46px;
    }

    .login_drawer_support {
      display: grid;
      gap: 8px;
      margin-top: 14px;
    }

    .login_drawer_support a,
    .login_drawer_support button {
      border: none;
      background: transparent;
      color: var(--brand);
      font-size: 0.82rem;
      font-weight: 800;
      text-align: left;
      padding: 0;
      cursor: pointer;
    }

    .login_drawer_note {
      margin-top: 14px;
      color: var(--muted);
      font-size: 0.78rem;
      line-height: 1.5;
    }

    .show_login_errors {
      display: none;
      padding: 10px 12px;
      border-radius: 7px;
      background: #fef2f2;
      border: 1px solid #fecaca;
      color: #991b1b;
      font-size: 0.82rem;
      font-weight: 700;
    }

    .continue_login_step {
      display: none;
      padding: 12px;
      border-radius: 7px;
      background: var(--brand_soft);
      border: 1px solid #e8d9f8;
      color: var(--brand_deep);
      font-size: 0.82rem;
    }

    .login_method_divider {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--muted);
      font-size: 0.74rem;
      font-weight: 800;
      margin: 16px 0;
    }

    .login_method_divider::before,
    .login_method_divider::after {
      content: "";
      height: 1px;
      background: var(--line);
      flex: 1;
    }

    .login_secondary_action {
      width: 100%;
      min-height: 42px;
      border-radius: 7px;
      border: 1px solid var(--line);
      background: white;
      color: var(--brand_deep);
      font-weight: 800;
      cursor: pointer;
    }

    .login_options_row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      margin-top: 2px;
    }

    .persistent_login_label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: #4b5563;
      font-size: 0.82rem;
      font-weight: 800;
      cursor: pointer;
      user-select: none;
    }

    .persistent_login_checkbox {
      width: 16px;
      height: 16px;
      accent-color: var(--brand);
    }

    .forgot_password_link {
      border: none;
      background: transparent;
      color: var(--brand);
      font-size: 0.82rem;
      font-weight: 900;
      padding: 0;
      cursor: pointer;
      white-space: nowrap;
    }

    .booking_drawer_card {
      height: 100%;
      display: flex;
      flex-direction: column;
      background: white;
      color: var(--ink);
    }

    .booking_drawer_card .mchat_header {
      position: relative;
    }

    .booking_card_title {
      margin: 0;
      color: var(--brand_deep);
      font-size: 1.34rem;
      font-weight: 900;
      line-height: 1.16;
      padding-right: 116px;
      transition: opacity 0.18s ease;
    }

    .booking_card_sub {
      margin: 6px 0 0;
      color: var(--muted);
      font-size: 0.88rem;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      transition: opacity 0.18s ease;
    }

    .booking_card_title.booking_title_fading,
    .booking_card_sub.booking_title_fading {
      opacity: 0;
    }

    .booking_header_close {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      margin-bottom: 8px;
    }

    .booking_header_actions {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      flex: 0 0 auto;
    }

    .booking_step_controls {
      display: none;
      align-items: center;
      gap: 8px;
    }

    .booking_icon_button {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      border: 1px solid var(--line);
      background: white;
      color: var(--muted);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
      padding: 0;
    }

    .booking_icon_button:hover {
      background: var(--brand_soft);
      border-color: #d8c6ee;
      color: var(--brand);
    }

    /* .lang_btn, .lang_popover, .lang_option, .lang_flag moved to global.css */

    .booking_drawer_card .mchat_messages {
      background: #f8f7fb;
      padding: 22px 20px;
      display: flex;
      flex-direction: column;
      min-height: 0;
    }

    .booking_drawer_card .mchat_input {
      background: #f8f7fb;
    }

    .steps_viewport {
      overflow: hidden;
      width: 100%;
      height: 100%;
      flex: 1 1 auto;
      min-height: 0;
    }

    /* Swiper replaces steps_viewport/steps_track inside the booking drawer */
    .booking_drawer_card .mchat_messages .mySwiper {
      width: 100%;
      height: 100%;
      flex: 1 1 auto;
      min-height: 0;
      overflow: hidden;
    }

    .booking_drawer_card .mchat_messages .swiper-wrapper {
      height: 100%;
    }

    .booking_drawer_card .mchat_messages .swiper-slide {
      height: 100%;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      padding: 2px 0 4px;
      box-sizing: border-box;
    }

    .steps_track {
      display: flex;
      flex-direction: column;
      width: 100%;
      height: 100%;
      transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .step_panel {
      width: 100%;
      flex-shrink: 0;
      height: 100%;
      overflow-y: auto;
      padding: 2px 0 4px;
    }

    .tile_row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin-bottom: 0;
    }

    .booking_login_prompt {
      text-align: center;
      color: var(--muted);
      font-size: 0.8rem;
      padding: 12px 0;
      margin-top: 20px;
    }

    .booking_login_prompt .booking_login_link_class {
      border: none;
      background: transparent;
      color: var(--brand);
      font-size: 0.8rem;
      font-weight: 700;
      padding: 0;
      cursor: pointer;
    }

    .booking_login_prompt .booking_login_link_class:hover {
      text-decoration: underline;
    }

    /* .patient_tile and tile sub-elements moved to global.css */

    .location_stack {
      display: grid;
      gap: 12px;
    }

    .location_tile {
      position: relative;
      display: grid;
      grid-template-columns: 92px minmax(0, 1fr);
      gap: 16px;
      align-items: center;
      min-height: 128px;
      padding: 16px 18px 16px 14px;
      border: 2px solid var(--line);
      border-radius: 12px;
      background: #fdfdff;
      cursor: pointer;
      transition: border-color 0.16s, background 0.16s, box-shadow 0.16s, transform 0.14s;
    }

    .location_tile:hover {
      border-color: #d8c6ee;
      background: #faf6ff;
      box-shadow: 0 8px 22px rgba(134,94,191,0.10);
    }

    .location_tile.selected {
      border-color: var(--brand);
      background: var(--brand_soft);
      box-shadow: 0 0 0 4px rgba(134,94,191,0.12), 0 8px 28px rgba(134,94,191,0.15);
    }

    .location_tile.selected .tile_check {
      opacity: 1;
      transform: scale(1);
    }

    .location_illustration {
      width: 84px;
      height: 84px;
      border-radius: 18px;
      background: white;
      border: 1px solid #f0ecf8;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .location_illustration img {
      width: 74px;
      height: 74px;
      object-fit: contain;
    }

    .location_tile_title {
      color: var(--brand_deep);
      font-size: 1.04rem;
      font-weight: 900;
      line-height: 1.2;
      margin-bottom: 5px;
    }

    .location_tile_text {
      color: var(--muted);
      font-size: 0.84rem;
      line-height: 1.45;
    }

    .location_tile.selected .location_tile_title {
      color: var(--brand_dark);
    }

    .booking_purpose_stack {
      display: grid;
      gap: 12px;
    }

    .booking_purpose_card {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: stretch;
      gap: 10px;
      padding: 16px;
      border: 2px solid var(--line);
      border-radius: 12px;
      background: #fdfdff;
      cursor: pointer;
      transition: border-color 0.16s, background 0.16s, box-shadow 0.16s, transform 0.14s;
    }

    .booking_purpose_card:hover {
      border-color: #d8c6ee;
      background: #faf6ff;
      box-shadow: 0 8px 22px rgba(134,94,191,0.10);
    }

    .booking_purpose_card.selected {
      border-color: var(--brand);
      background: var(--brand_soft);
      box-shadow: 0 0 0 4px rgba(134,94,191,0.12), 0 8px 28px rgba(134,94,191,0.15);
    }

    .booking_purpose_card.selected .tile_check {
      opacity: 1;
      transform: scale(1);
    }

    .booking_purpose_card_icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: white;
      border: 1px solid #f0ecf8;
      color: var(--brand);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin: 0;
      box-shadow: 0 10px 24px rgba(134,94,191,0.10);
    }

    .booking_purpose_card_icon svg {
      width: 24px;
      height: 24px;
    }

    .booking_purpose_card_title {
      color: var(--brand_deep);
      font-size: 1.08rem;
      font-weight: 900;
      line-height: 1.2;
      text-align: left;
    }

    .booking_purpose_card_sub {
      color: var(--muted);
      font-size: 0.82rem;
      line-height: 1.4;
      text-align: left;
      margin: -4px 0 0;
    }

    .booking_purpose_card_rule {
      height: 1px;
      background: linear-gradient(90deg, rgba(134,94,191,0), rgba(134,94,191,0.22), rgba(134,94,191,0));
      margin: 2px 0 0;
    }

    .booking_purpose_card_features {
      display: grid;
      gap: 7px;
      margin-top: 0;
    }

    .booking_purpose_card_feature {
      display: flex;
      align-items: center;
      gap: 8px;
      color: #4b5563;
      font-size: 0.76rem;
      font-weight: 750;
      line-height: 1.35;
    }

    .booking_purpose_card_feature svg {
      flex: 0 0 auto;
      width: 16px;
      height: 16px;
      color: var(--brand);
    }

    .btn_next {
      min-height: 48px;
      width: 100%;
      padding: 0 28px;
      font-size: 0.95rem;
      border-radius: 10px;
      background: var(--brand);
      color: white;
      border: none;
      font-weight: 900;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      box-shadow: 0 10px 26px rgba(134,94,191,0.26);
      transition: background 0.15s, transform 0.15s, box-shadow 0.15s, opacity 0.15s;
    }

    .btn_next:hover:not(:disabled) {
      background: var(--brand_dark);
      transform: translateY(-2px);
      box-shadow: 0 14px 30px rgba(134,94,191,0.32);
    }

    .btn_next:disabled {
      opacity: 0.38;
      cursor: not-allowed;
      box-shadow: none;
      transform: none;
    }

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

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

    .reveal.delay_1 {
      transition-delay: 0.08s;
    }

    .reveal.delay_2 {
      transition-delay: 0.16s;
    }

    .reveal.delay_3 {
      transition-delay: 0.24s;
    }

    @media (max-width: 1040px) {
      .nav_links {
        display: none;
      }

      .top_nav.mobile_open .nav_links {
        position: absolute;
        top: calc(100% + 8px);
        left: 50%;
        display: grid;
        width: min(360px, calc(100vw - 28px));
        padding: 8px;
        border: 1px solid rgba(229,231,235,0.92);
        border-radius: 8px;
        background: rgba(255,255,255,0.98);
        box-shadow: 0 22px 60px rgba(26,16,64,0.16);
        transform: translateX(-50%);
        backdrop-filter: blur(18px);
      }

      .top_nav.mobile_open .nav_links a {
        padding: 12px 13px;
        color: var(--brand_deep);
      }

      .mobile_menu_btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
      }

      .hero_inner,
      .split_layout,
      .platform_preview,
      .final_cta_inner {
        grid-template-columns: 1fr;
      }

      .hero_inner {
        gap: 28px;
      }

      .hero_bg_image {
        background:
          linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.93) 44%, rgba(255,255,255,0.5) 68%, rgba(255,255,255,0.1) 100%),
          url("../mockups/assets/nextdaydoctor_hero_telehealth_clean.png") 64% center / cover no-repeat;
      }

      .hero_copy_block {
        max-width: 570px;
        padding-top: 2dvh;
        padding-bottom: 12dvh;
      }

      .hero_title {
        font-size: clamp(3rem, 8vw, 4.9rem);
        line-height: 0.98;
        max-width: 560px;
      }

      .hero_copy {
        max-width: 520px;
        font-size: clamp(1rem, 2vw, 1.14rem);
      }

      .hero_cta_row {
        margin-top: clamp(34px, 7dvh, 68px);
      }

      .local_care_section {
        min-height: auto;
      }

      .local_care_inner {
        grid-template-columns: 1fr;
        gap: 34px;
      }

      .local_care_copy {
        max-width: 680px;
      }

      .local_care_visual {
        min-height: 500px;
      }

      .visit_formats_header {
        max-width: 720px;
      }

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

      .press_trust_section {
        min-height: auto;
      }

      .press_trust_inner {
        grid-template-columns: 1fr;
        gap: 34px;
      }

      .press_wall {
        min-height: 500px;
      }

      .care_paths_section {
        min-height: auto;
        background:
          linear-gradient(180deg, #1a1040 0%, #2a1d54 42%, #f8f7fb 42.2%, #ffffff 100%);
      }

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

      .care_paths_copy {
        max-width: 720px;
      }

      .mission_copy {
        max-width: 720px;
      }

      .how_it_works_section {
        min-height: auto;
      }

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

      .care_examples_section {
        min-height: auto;
      }

      .care_examples_header,
      .care_examples_layout {
        grid-template-columns: 1fr;
      }

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

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

      .provider_grid,
      .pricing_grid {
        grid-template-columns: 1fr;
      }

      .provider_invite_section {
        min-height: auto;
      }

      .provider_invite_inner {
        grid-template-columns: 1fr;
        gap: 34px;
      }
    }

    @media (max-width: 720px) {
      .top_nav_inner {
        width: min(var(--max), calc(100% - 28px));
        height: 64px;
      }

      .brand_mark {
        min-width: 0;
      }

      .brand_text {
        font-size: 1rem;
      }

      .nav_actions .btn_secondary {
        display: none;
      }

      .nav_actions .btn_primary {
        min-height: 38px;
        padding: 0 12px;
        font-size: 0.8rem;
      }

      .hero_section {
        min-height: 100vh;
        min-height: 100dvh;
        min-height: 100svh;
        height: auto;
        align-items: start;
        padding: 64px 0 0;
        background: linear-gradient(180deg, #ffffff 0%, #ffffff 54%, #f6f1ff 100%);
      }

      .hero_bg_image {
        top: auto;
        bottom: 0;
        height: clamp(310px, 46svh, 430px);
        background:
          linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.32) 24%, rgba(255,255,255,0) 54%),
          linear-gradient(90deg, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0) 42%),
          url("../mockups/assets/nextdaydoctor_hero_telehealth_clean.png") 64% bottom / cover no-repeat;
        transform: none;
      }

      .hero_inner,
      .inner_container,
      .local_care_inner,
      .visit_formats_inner,
      .press_trust_inner,
      .care_paths_inner,
      .mission_inner,
      .care_examples_inner,
      .provider_invite_inner,
      .final_cta_inner {
        width: calc(100% - 28px);
      }

      .hero_copy_block {
        min-height: 0;
        height: auto;
        justify-content: flex-start;
        max-width: 100%;
        padding-top: clamp(38px, 8svh, 74px);
        padding-bottom: clamp(330px, 48svh, 450px);
      }

      .hero_title {
        font-size: clamp(2.25rem, 10vw, 3.7rem);
        line-height: 1.04;
        max-width: 560px;
        text-wrap: balance;
      }

      .hero_copy {
        max-width: 500px;
        margin-top: 14px;
        font-size: clamp(0.92rem, 2.8vw, 1.04rem);
        line-height: 1.5;
      }

      .hero_copy_desktop {
        display: none;
      }

      .hero_copy_mobile {
        display: block;
      }

      .hero_cta_row {
        align-items: stretch;
        margin-top: clamp(24px, 5svh, 42px);
        max-width: 420px;
      }

      .hero_cta_row .btn {
        flex: 1 1 0;
        width: auto;
        min-height: 42px;
        padding: 0 12px;
        font-size: 0.84rem;
      }

      .visit_formats_header,
      .services_grid,
      .preview_grid,
      .faq_grid {
        grid-template-columns: 1fr;
      }

      .local_care_section {
        padding: 64px 0;
      }

      .local_care_title {
        font-size: clamp(2.1rem, 9vw, 3rem);
      }

      .local_care_copy {
        font-size: 0.96rem;
      }

      .local_care_visual {
        min-height: 420px;
      }

      .local_provider_card {
        left: 18px;
        right: 18px;
        bottom: 18px;
        width: auto;
      }

      .local_state_badge {
        left: 18px;
        top: 18px;
      }

      .local_map_shape {
        left: 22px;
        right: 22px;
        top: 62px;
        bottom: 98px;
      }

      .visit_formats_section {
        min-height: auto;
        padding: 64px 0;
      }

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

      .visit_format_card {
        min-height: 0;
        grid-template-rows: 156px auto;
      }

      .visit_format_card.video_visit_card {
        grid-template-rows: 260px auto;
      }

      .visit_format_card.phone_visit_card {
        grid-template-rows: 260px auto;
      }

      .visit_format_card.live_visit_card {
        grid-template-rows: 260px auto;
      }

      .visit_format_card.messaging_visit_card {
        grid-template-rows: 260px auto;
      }

      .press_trust_section {
        min-height: auto;
        padding: 64px 0;
      }

      .press_trust_title {
        font-size: clamp(2.1rem, 9vw, 3rem);
      }

      .press_wall {
        min-height: 0;
        padding: 18px;
      }

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

      .press_logo_card {
        min-height: 86px;
      }

      .care_paths_section {
        padding: 64px 0;
        min-height: auto;
        background:
          linear-gradient(180deg, #1a1040 0%, #2a1d54 34%, #f8f7fb 34.2%, #ffffff 100%);
      }

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

      .care_path_card {
        min-height: 0;
      }

      .care_path_visual {
        min-height: 190px;
      }

      .mission_section {
        min-height: auto;
        padding: 64px 0;
      }

      .mission_title {
        font-size: clamp(2.1rem, 9vw, 3rem);
      }

      .mission_founder_row,
      .mission_access_grid {
        grid-template-columns: 1fr;
      }

      .care_examples_section {
        min-height: auto;
        padding: 64px 0;
      }

      .care_action_item {
        grid-template-columns: 42px minmax(0, 1fr);
      }

      .care_action_item .learn_more_link {
        grid-column: 2;
      }

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

      .condition_card {
        min-height: 0;
      }

      .section_band {
        padding: 64px 0;
      }

      .image_panel,
      .image_panel img {
        min-height: 360px;
      }

      .how_it_works_section {
        padding: 64px 0;
      }

      .workflow_image_panel {
        order: -1;
      }

      .preview_sidebar {
        min-height: 0;
      }

      .preview_search {
        display: none;
      }

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

      .provider_invite_section {
        min-height: auto;
        padding: 64px 0;
      }

      .provider_invite_title {
        font-size: clamp(2.1rem, 9vw, 3rem);
      }

      .provider_invite_visual {
        min-height: 0;
        padding: 14px;
      }

      .provider_console {
        min-height: 0;
      }

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

      .provider_console_nav {
        border-right: none;
        border-bottom: 1px solid #f0ecf8;
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .provider_photo,
      .provider_photo img {
        min-height: 260px;
      }

      .final_cta {
        padding: 72px 0;
      }
    }

    @media (max-width: 430px) {
      .top_nav_inner {
        width: calc(100% - 22px);
        height: 58px;
        gap: 8px;
      }

      .brand_mark {
        gap: 7px;
      }

      .brand_mark img {
        width: 29px;
        height: 29px;
      }

      .brand_text {
        font-size: 0.9rem;
      }

      .nav_actions {
        gap: 6px;
      }

      .nav_actions .btn_primary {
        min-height: 34px;
        padding: 0 10px;
        font-size: 0.74rem;
        border-radius: 6px;
      }

      .mobile_menu_btn {
        display: inline-flex;
        width: 34px;
        height: 34px;
        flex: 0 0 34px;
        border-radius: 6px;
        box-shadow: 0 1px 2px rgba(15,23,42,0.05);
      }

      .mobile_menu_btn span,
      .mobile_menu_btn span::before,
      .mobile_menu_btn span::after {
        width: 15px;
      }

      .mobile_menu_btn span::before {
        top: -5px;
      }

      .mobile_menu_btn span::after {
        top: 5px;
      }

      .hero_section {
        padding-top: 58px;
        min-height: 100svh;
      }

      .hero_bg_image {
        height: clamp(300px, 45svh, 390px);
        background-position: 61% bottom;
      }

      .hero_inner {
        width: calc(100% - 24px);
        height: auto;
      }

      .hero_copy_block {
        padding-top: clamp(36px, 8svh, 64px);
        padding-bottom: clamp(318px, 47svh, 410px);
      }

      .hero_title {
        max-width: 100%;
        font-size: clamp(2.12rem, 10.5vw, 2.8rem);
        line-height: 1.02;
        text-wrap: balance;
      }

      .hero_copy {
        max-width: 345px;
        margin-top: 16px;
        font-size: 0.94rem;
        line-height: 1.58;
      }

      .hero_copy_desktop {
        display: none;
      }

      .hero_copy_mobile {
        display: block;
      }

      .hero_cta_row {
        max-width: 100%;
        gap: 8px;
        margin-top: clamp(24px, 4svh, 34px);
      }

      .hero_cta_row .btn {
        flex: 1 1 0;
        width: auto;
        min-height: 38px;
        padding: 0 9px;
        font-size: 0.76rem;
      }

      .local_care_section {
        padding: 56px 0;
      }

      .local_care_inner {
        width: calc(100% - 24px);
        gap: 28px;
      }

      .local_care_title {
        font-size: clamp(2rem, 10vw, 2.65rem);
        line-height: 1.04;
      }

      .local_care_pills {
        gap: 7px;
        margin-top: 22px;
      }

      .local_care_pill {
        font-size: 0.72rem;
        padding: 6px 8px;
      }

      .local_care_visual {
        min-height: 380px;
      }

      .local_provider_card {
        padding: 14px;
      }

      .local_provider_row {
        align-items: flex-start;
        flex-direction: column;
        gap: 2px;
      }

      .press_trust_section {
        padding: 56px 0;
      }

      .press_trust_inner {
        width: calc(100% - 24px);
        gap: 28px;
      }

      .press_trust_title {
        font-size: clamp(2rem, 10vw, 2.65rem);
        line-height: 1.04;
      }

      .press_trust_copy {
        font-size: 0.94rem;
      }

      .press_trust_note {
        align-items: flex-start;
        border-radius: 8px;
      }

      .press_wall_header {
        align-items: flex-start;
        flex-direction: column;
      }

      .press_wall_meta {
        text-align: left;
      }

      .mission_section {
        padding: 56px 0;
      }

      .mission_inner {
        width: calc(100% - 24px);
        gap: 28px;
      }

      .mission_title {
        font-size: clamp(2rem, 10vw, 2.65rem);
        line-height: 1.04;
      }

      .mission_text,
      .mission_quote {
        font-size: 0.94rem;
      }

      .mission_visual {
        padding: 18px;
      }

      .mission_visual_head {
        align-items: flex-start;
        flex-direction: column;
      }

      .provider_invite_section {
        padding: 56px 0;
      }

      .provider_invite_inner {
        width: calc(100% - 24px);
        gap: 28px;
      }

      .provider_invite_title {
        font-size: clamp(2rem, 10vw, 2.65rem);
        line-height: 1.04;
      }

      .provider_invite_copy {
        font-size: 0.94rem;
      }

      .provider_invite_actions .btn {
        width: 100%;
      }

      .provider_console_top {
        align-items: flex-start;
        flex-direction: column;
      }

      .provider_console_nav,
      .provider_metric_grid {
        grid-template-columns: 1fr;
      }

      .left_sidewindow_class {
        right: -100vw;
        width: 100vw;
      }

      .left_sidewindow_class.booking_sidewindow {
        right: -100vw;
        width: 100vw;
      }

      .booking_card_title,
      .booking_card_sub {
        padding-right: 0;
      }

      .booking_card_sub {
        font-size: 0.82rem;
      }

      /* .lang_btn and .lang_popover responsive overrides moved to global.css */

      .location_tile {
        grid-template-columns: 74px minmax(0, 1fr);
        padding: 14px;
      }

      .location_illustration {
        width: 68px;
        height: 68px;
        border-radius: 14px;
      }

      .location_illustration img {
        width: 60px;
        height: 60px;
      }

      .visit_formats_title {
        font-size: clamp(1.85rem, 9vw, 2.55rem);
      }

      .visit_formats_copy {
        font-size: 0.92rem;
      }

      .care_paths_title {
        font-size: clamp(2rem, 9.5vw, 2.7rem);
      }

      .care_paths_text {
        font-size: 0.94rem;
      }

      .care_paths_note {
        border-radius: 8px;
        align-items: flex-start;
      }
    }

    @media (max-width: 340px) {
      .hero_cta_row .btn {
        flex: 1 1 100%;
        width: 100%;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      .reveal,
      .btn,
      .service_card,
      .visit_format_card,
      .top_nav {
        transition: none;
      }

      .visit_format_visual::before,
      .vf_orbit,
      .vf_screen,
      .vf_video_controls span,
      .vf_phone_body,
      .vf_signal,
      .vf_room,
      .vf_location_pin,
      .vf_bubble,
      .vf_bubble_alt,
      .vf_typing span {
        animation: none;
      }
    }

    /* Site Footer */

    .site_footer {
      background: var(--brand_deep);
      color: rgba(255,255,255,0.72);
    }

    .footer_main {
      width: min(var(--max), calc(100% - 40px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.5fr 1fr 0.7fr 1.1fr 1.4fr;
      gap: 32px;
      padding: 72px 0 56px;
    }

    .footer_logo {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 14px;
    }

    .footer_logo img {
      width: 30px;
      height: 30px;
      object-fit: contain;
    }

    .footer_logo_text {
      font-weight: 800;
      color: white;
      font-size: 1rem;
    }

    .footer_tagline {
      color: rgba(255,255,255,0.46);
      font-size: 0.88rem;
      margin: 0 0 26px;
    }

    .footer_social {
      display: flex;
      gap: 8px;
      align-items: center;
      flex-wrap: wrap;
    }

    .footer_social_link {
      width: 34px;
      height: 34px;
      border-radius: 7px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.09);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.6);
      transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
    }

    .footer_social_link:hover {
      background: var(--brand);
      color: white;
      border-color: var(--brand);
    }

    .footer_col_head {
      color: rgba(255,255,255,0.34);
      font-size: 0.67rem;
      font-weight: 900;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 16px;
      padding-bottom: 10px;
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }

    .footer_links {
      display: grid;
      gap: 9px;
    }

    .footer_link {
      color: rgba(255,255,255,0.54);
      font-size: 0.84rem;
      text-decoration: none;
      transition: color 0.15s ease;
      display: block;
    }

    .footer_link:hover {
      color: white;
    }

    .footer_contact_item {
      display: flex;
      gap: 11px;
      align-items: flex-start;
      margin-bottom: 20px;
    }

    .footer_contact_icon {
      width: 32px;
      height: 32px;
      border-radius: 7px;
      background: rgba(134,94,191,0.18);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #b89fe8;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .footer_contact_label {
      font-weight: 700;
      color: rgba(255,255,255,0.9);
      font-size: 0.82rem;
      margin-bottom: 4px;
    }

    .footer_contact_text {
      color: rgba(255,255,255,0.48);
      font-size: 0.82rem;
      line-height: 1.6;
    }

    .footer_contact_text a {
      color: rgba(255,255,255,0.56);
      text-decoration: none;
      transition: color 0.15s ease;
    }

    .footer_contact_text a:hover {
      color: white;
    }

    .footer_mid_strip {
      border-top: 1px solid rgba(255,255,255,0.07);
    }

    .footer_cta_strip {
      width: min(var(--max), calc(100% - 40px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      padding: 28px 0 26px;
    }

    .footer_cta_box {
      background: rgba(255,255,255,0.035);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: var(--radius);
      padding: 18px 22px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      transition: border-color 0.15s ease, background 0.15s ease;
    }

    .footer_cta_box:hover {
      background: rgba(255,255,255,0.055);
      border-color: rgba(134,94,191,0.3);
    }

    .footer_cta_label {
      font-weight: 800;
      color: white;
      font-size: 0.96rem;
      margin-bottom: 3px;
    }

    .footer_cta_copy {
      color: rgba(255,255,255,0.44);
      font-size: 0.82rem;
    }

    .footer_cta_box .btn {
      flex-shrink: 0;
    }

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

    .footer_copyright {
      border-top: 1px solid rgba(255,255,255,0.06);
      background: rgba(0,0,0,0.18);
      text-align: center;
      padding: 18px;
      color: rgba(255,255,255,0.26);
      font-size: 0.71rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    @media (max-width: 1040px) {
      .footer_main {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 26px;
        padding: 60px 0 48px;
      }

      .footer_brand_col {
        grid-column: span 3;
      }
    }

    @media (max-width: 720px) {
      .footer_main {
        grid-template-columns: 1fr 1fr;
        padding: 52px 0 40px;
        gap: 22px;
      }

      .footer_brand_col {
        grid-column: span 2;
      }

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

    @media (max-width: 430px) {
      .footer_main {
        grid-template-columns: 1fr;
        padding: 48px 0 36px;
      }

      .footer_brand_col {
        grid-column: 1;
      }
    }
