﻿/*
Theme Name: Todakwork
Theme URI: https://todakwork.com/
Author: Todakwork
Description: Custom WordPress theme for the Todakwork B2B landing page.
Version: 1.0.18
Text Domain: todakwork
*/
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard-dynamic-subset.min.css");
    @import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css");

    :root {
      --primary: #1fb462;
      --primary-hover: #15924d;
      --primary-light: #8ff0b4;
      --primary-surface: rgba(31, 180, 98, 0.1);
      --primary-border: rgba(31, 180, 98, 0.3);
      --charcoal: #202522;
      --charcoal-deep: #111611;
      --charcoal-soft: #2b332e;
      --text-heading: #172018;
      --text-body: #4f5c52;
      --text-secondary: #778478;
      --text-white: #ffffff;
      --bg-page: #fbfdf9;
      --bg-surface: #eef6ee;
      --bg-dark: var(--charcoal);
      --border-light: rgba(23, 32, 24, 0.08);
      --ff-primary: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
      --fs-hero: clamp(38px, 5vw + 16px, 72px);
      --fs-h1: clamp(34px, 4vw + 8px, 58px);
      --fs-h2: clamp(28px, 3vw + 4px, 42px);
      --fs-h3: clamp(20px, 2vw + 4px, 28px);
      --fs-body-lg: clamp(17px, 1.5vw + 2px, 20px);
      --fs-body: clamp(15px, 1vw + 4px, 17px);
      --section-py: clamp(80px, 10vw, 140px);
      --radius-md: 16px;
      --radius-lg: 24px;
      --radius-xl: 32px;
      --radius-full: 999px;
      --shadow-sm: 0 4px 14px rgba(20, 42, 24, 0.09);
      --shadow-md: 0 16px 40px rgba(20, 42, 24, 0.14);
      --glass-blur-sm: blur(40px) saturate(1.8);
      --glass-border-top: rgba(255, 255, 255, 0.9);
      --glass-border-bottom: rgba(0, 0, 0, 0.04);
      --glass-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78), inset 0 -1px 0 rgba(17, 22, 17, 0.06), 0 12px 32px rgba(20, 42, 24, 0.1);
      --glass-shadow-hover: inset 0 1px 0 rgba(255, 255, 255, 0.92), inset 0 -1px 0 rgba(17, 22, 17, 0.08), 0 20px 46px rgba(20, 42, 24, 0.16);
      --glass-green: linear-gradient(180deg, rgba(143, 240, 180, 0.82), rgba(31, 180, 98, 0.92));
      --glass-dark: linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055));
      --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
      --ease-default: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--text-body);
      background: var(--bg-page);
      font-family: var(--ff-primary);
      line-height: 1.6;
      word-break: keep-all;
      overflow-wrap: break-word;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      letter-spacing: 0;
    }

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

    button,
    input,
    select,
    textarea {
      font: inherit;
    }

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

    .mh-scope {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
    }

    .container {
      width: min(1200px, calc(100% - 48px));
      margin: 0 auto;
    }

    .t-tight {
      margin: 0;
      color: var(--text-heading);
      font-weight: 800;
      line-height: 1.28;
    }

    .t-center {
      text-align: center;
    }

    .highlight,
    .text-accent {
      color: var(--primary);
    }

    .reveal-up {
      opacity: 0;
      transform: translateY(18px);
      transition:
        opacity 820ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 820ms cubic-bezier(0.22, 1, 0.36, 1);
      will-change: opacity, transform;
    }

    .reveal-up.in-view {
      opacity: 1;
      transform: translateY(0);
    }

    .mobile-copy {
      display: none;
    }

    .delay-1 { transition-delay: 100ms; }
    .delay-2 { transition-delay: 200ms; }
    .delay-3 { transition-delay: 300ms; }

    .pill-badge,
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 18px;
      padding: 7px 16px;
      border: 1px solid var(--primary-border);
      border-radius: var(--radius-full);
      color: var(--primary);
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(31, 180, 98, 0.11));
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82), 0 10px 26px rgba(20, 42, 24, 0.08);
      backdrop-filter: blur(18px) saturate(1.4);
      font-size: 13px;
      font-weight: 800;
      line-height: 1.4;
    }

    .pill-badge.light {
      color: #fff;
      border-color: rgba(255, 255, 255, 0.2);
      background: rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(10px);
    }

    .btn-primary,
    .btn-ghost,
    .btn-white,
    .btn-ghost-white,
    .pkg-btn,
    .form-submit {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border: 0;
      border-radius: var(--radius-full);
      font-weight: 800;
      line-height: 1;
      cursor: pointer;
      transition: transform 280ms var(--ease-spring), box-shadow 280ms var(--ease-spring), background 180ms ease, color 180ms ease;
    }

    .btn-primary {
      min-height: 58px;
      padding: 0 34px;
      color: #06140a;
      border: 1px solid rgba(255, 255, 255, 0.42);
      background: var(--glass-green);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68), inset 0 -10px 22px rgba(17, 22, 17, 0.08), 0 14px 34px rgba(31, 180, 98, 0.28);
      backdrop-filter: blur(18px) saturate(1.45);
    }

    .btn-primary:hover {
      background: linear-gradient(180deg, rgba(171, 255, 203, 0.92), rgba(31, 180, 98, 0.98));
      transform: translateY(-3px);
    }

    .btn-ghost {
      min-height: 58px;
      padding: 0 34px;
      color: var(--primary);
      border: 1.5px solid rgba(31, 180, 98, 0.3);
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(31, 180, 98, 0.1));
      box-shadow: var(--glass-shadow);
      backdrop-filter: var(--glass-blur-sm);
    }

    .btn-ghost:hover {
      transform: translateY(-3px);
      box-shadow: var(--glass-shadow-hover);
    }

    .btn-white {
      min-height: 56px;
      padding: 0 30px;
      color: #07150b;
      border: 1px solid rgba(255, 255, 255, 0.4);
      background: var(--glass-green);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.64), 0 10px 26px rgba(0, 0, 0, 0.2);
    }

    .btn-ghost-white {
      min-height: 56px;
      padding: 0 30px;
      color: #fff;
      border: 1px solid rgba(255, 255, 255, 0.28);
      background: var(--glass-dark);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
      backdrop-filter: blur(16px);
    }

    .cta-buttons {
      display: flex;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    .cta-micro {
      margin: 14px 0 0;
      color: var(--text-secondary);
      font-size: 13px;
      font-weight: 600;
      text-align: center;
    }

    .section-header {
      max-width: 820px;
      margin: 0 auto 64px;
      text-align: center;
    }

    .section-title {
      margin-bottom: 16px;
      font-size: var(--fs-h2);
    }

    .section-desc,
    .hero-desc {
      margin: 0;
      color: var(--text-body);
      font-size: var(--fs-body-lg);
      font-weight: 500;
      line-height: 1.75;
    }

    .b2b-hero {
      position: relative;
      min-height: clamp(720px, 84svh, 820px);
      display: grid;
      align-items: center;
      padding: clamp(80px, 9vw, 110px) 0 clamp(54px, 7vw, 78px);
      text-align: center;
      background:
        linear-gradient(180deg, rgba(32, 37, 34, 0.72), rgba(17, 22, 17, 0.94)),
        url("assets/photos/hero-workshop-wide.jpg") center / cover;
      border-bottom: 1px solid var(--border-light);
      overflow: hidden;
    }

    .hero-video {
      position: absolute;
      top: 50%;
      left: 50%;
      z-index: 0;
      width: max(100%, 100svh);
      height: max(100%, 100vw);
      object-fit: cover;
      opacity: 0;
      filter: saturate(0.9) contrast(1.08) brightness(0.72);
      transform: translate(-50%, -57%) rotate(-90deg);
      transform-origin: center;
      pointer-events: none;
      transition: opacity 420ms ease;
    }

    .hero-video.is-ready {
      opacity: 0.74;
    }

    .hero-video-shade {
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        linear-gradient(180deg, rgba(32, 37, 34, 0.44), rgba(17, 22, 17, 0.9)),
        radial-gradient(circle at 50% 18%, rgba(31, 180, 98, 0.16), transparent 42%);
      pointer-events: none;
    }

    .hero-mesh {
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        radial-gradient(ellipse 60% 50% at 20% 28%, rgba(31, 180, 98, 0.24) 0%, transparent 70%),
        radial-gradient(ellipse 52% 60% at 82% 58%, rgba(143, 240, 180, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse 45% 45% at 50% 86%, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
      animation: meshFloat 12s ease-in-out infinite alternate;
    }

    .hero-glow {
      position: absolute;
      top: -24%;
      left: 50%;
      z-index: 1;
      width: 780px;
      height: 580px;
      transform: translateX(-50%);
      background: radial-gradient(circle, rgba(31, 180, 98, 0.28) 0%, transparent 70%);
      filter: blur(60px);
      pointer-events: none;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 1040px;
      margin: 0 auto;
    }

    .hero-brand {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      width: fit-content;
      margin: 0 auto 20px;
      color: #fff;
      font-weight: 900;
    }

    .brand-mark {
      display: grid;
      place-items: center;
      width: 42px;
      height: 42px;
      color: #fff;
      font-size: 0;
      line-height: 0;
    }

    .brand-mark img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: contain;
      filter: brightness(0) invert(1);
    }

    .hero-title {
      margin-bottom: 24px;
      color: #fff;
      font-size: clamp(42px, 4.8vw + 8px, 72px);
      max-width: 100%;
      overflow-wrap: break-word;
    }

    .hero-desc {
      max-width: 820px;
      margin: 0 auto 44px;
      color: rgba(255, 255, 255, 0.76);
      font-weight: 600;
    }

    .b2b-hero .highlight {
      color: var(--primary-light);
      text-shadow: 0 0 30px rgba(31, 180, 98, 0.34);
    }

    .b2b-hero .hero-badge {
      color: var(--primary-light);
      border-color: rgba(143, 240, 180, 0.28);
      background: var(--glass-dark);
    }

    .b2b-hero .btn-ghost {
      color: #fff;
      border-color: rgba(255, 255, 255, 0.22);
      background: var(--glass-dark);
    }

    .b2b-hero .cta-micro {
      color: rgba(255, 255, 255, 0.52);
    }

    .logo-farm {
      padding: clamp(58px, 6vw, 88px) 0 clamp(52px, 5.5vw, 76px);
      background: var(--bg-surface);
      border-bottom: 1px solid var(--border-light);
      overflow: hidden;
      text-align: center;
    }

    .logo-farm p {
      margin: 0;
      color: var(--text-secondary);
      font-size: 14px;
      font-weight: 800;
    }

    .proof-strip {
      display: grid;
      gap: 30px;
      align-items: center;
    }

    .proof-copy h2 {
      margin: 0 0 12px;
      color: var(--text-heading);
      font-size: clamp(32px, 3.4vw, 46px);
      font-weight: 900;
      line-height: 1.28;
    }

    .proof-copy p {
      max-width: 640px;
      margin: 0 auto;
      color: var(--text-body);
      font-size: 17px;
      font-weight: 650;
      line-height: 1.7;
    }

    .proof-points {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 8px;
      margin-top: 18px;
    }

    .proof-points span {
      display: inline-flex;
      align-items: center;
      min-height: 32px;
      padding: 0 12px;
      border: 1px solid rgba(31, 180, 98, 0.16);
      border-radius: var(--radius-full);
      color: var(--primary);
      background: rgba(255, 255, 255, 0.66);
      font-size: 13px;
      font-weight: 900;
    }

    .proof-logo-grid {
      display: flex;
      gap: 12px;
      width: max-content;
      animation: proofLogoDrift 18s linear infinite;
    }

    .proof-logo-track {
      width: min(940px, 100%);
      margin: 6px auto 0;
      overflow: hidden;
      mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0) 8%, black 24%, black 76%, rgba(0, 0, 0, 0) 92%, transparent 100%);
      -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0) 8%, black 24%, black 76%, rgba(0, 0, 0, 0) 92%, transparent 100%);
    }

    .proof-logo {
      display: grid;
      place-items: center;
      flex: 0 0 178px;
      min-height: 84px;
      padding: 18px 22px;
      border: 1px solid rgba(23, 32, 24, 0.08);
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.82);
      box-shadow: 0 12px 28px rgba(20, 42, 24, 0.08);
    }

    .proof-logo img {
      max-width: 100%;
      max-height: 46px;
      object-fit: contain;
    }

    .proof-logo-track:hover .proof-logo-grid {
      animation-play-state: paused;
    }

    .agitation-section,
    .features-section,
    .stories-section,
    .process-section,
    .faq-section,
    .b2b-cta {
      padding: var(--section-py) 0;
    }

    .agitation-section {
      padding-top: clamp(58px, 6vw, 88px);
    }

    .agitation-section,
    .stories-section {
      background: var(--bg-page);
    }

    .agitation-header {
      max-width: 820px;
      margin: 0 auto 64px;
      text-align: center;
    }

    .agitation-header h2 {
      margin-bottom: 16px;
      font-size: var(--fs-h2);
    }

    .agitation-header .hero-desc {
      color: var(--text-body);
    }

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

    .problem-card {
      padding: 44px 32px;
      border: 1px solid rgba(255, 255, 255, 0.6);
      border-radius: var(--radius-lg);
      background: rgba(255, 255, 255, 0.72);
      box-shadow: var(--glass-shadow);
      backdrop-filter: var(--glass-blur-sm);
      transition: transform 360ms var(--ease-spring), box-shadow 360ms var(--ease-spring);
    }

    .problem-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--glass-shadow-hover);
    }

    .pc-num {
      display: block;
      width: fit-content;
      margin-bottom: 16px;
      padding-bottom: 8px;
      border-bottom: 2px solid var(--primary);
      color: var(--primary);
      font-size: 16px;
      font-weight: 900;
    }

    .pc-title {
      margin: 0 0 16px;
      color: var(--text-heading);
      font-size: var(--fs-h3);
      font-weight: 900;
      line-height: 1.38;
    }

    .pc-quote {
      position: relative;
      margin: 0;
      padding-left: 16px;
      border-left: 3px solid rgba(0, 0, 0, 0.1);
      color: var(--text-body);
      font-size: var(--fs-body);
      font-style: italic;
      line-height: 1.72;
    }

    .solution-bridge-section {
      position: relative;
      padding: clamp(34px, 6vw, 82px) 0;
      color: #fff;
      background:
        radial-gradient(circle at 50% 0%, rgba(106, 255, 165, 0.16), transparent 34%),
        radial-gradient(circle at 12% 72%, rgba(31, 180, 98, 0.18), transparent 30%),
        linear-gradient(180deg, #1f3026 0%, #101811 100%);
      overflow: hidden;
    }

    .solution-bridge-section::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
      background-size: 96px 96px;
      mask-image: radial-gradient(circle at 50% 50%, black 0%, transparent 72%);
      -webkit-mask-image: radial-gradient(circle at 50% 50%, black 0%, transparent 72%);
      opacity: 0.34;
    }

    .solution-bridge-section::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -1px;
      height: 78px;
      pointer-events: none;
      background: linear-gradient(180deg, transparent, var(--bg-surface));
    }

    .solution-bridge {
      position: relative;
      z-index: 1;
      display: grid;
      justify-items: center;
      width: min(980px, calc(100% - 48px));
      margin: 0 auto;
      padding: clamp(38px, 5.5vw, 68px) 0;
      text-align: center;
    }

    .solution-bridge::before,
    .solution-bridge::after {
      content: "";
      width: min(520px, 72%);
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(143, 240, 180, 0.52), transparent);
    }

    .solution-bridge::before {
      margin-bottom: clamp(26px, 4vw, 42px);
    }

    .solution-bridge::after {
      margin-top: clamp(24px, 3.4vw, 36px);
    }

    .solution-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 18px;
      color: var(--primary-light);
      font-size: 14px;
      font-weight: 900;
    }

    .solution-kicker i {
      font-size: 13px;
    }

    .solution-bridge-copy {
      display: grid;
      gap: clamp(24px, 3vw, 34px);
      margin: 0;
      color: rgba(255, 255, 255, 0.96);
      font-size: clamp(26px, 4.1vw, 48px);
      font-weight: 900;
      line-height: 1.28;
      letter-spacing: 0;
    }

    .solution-line {
      display: block;
    }

    .solution-line-muted {
      color: rgba(255, 255, 255, 0.68);
    }

    .solution-line-main {
      color: rgba(255, 255, 255, 0.96);
    }

    .highlight-line {
      position: relative;
      z-index: 0;
      display: inline-block;
      color: var(--primary-light);
      isolation: isolate;
      transition: text-shadow 520ms ease;
    }

    .highlight-line::after {
      content: "";
      position: absolute;
      z-index: -1;
      left: -0.04em;
      right: -0.04em;
      bottom: 0.06em;
      height: 0.34em;
      border-radius: var(--radius-full);
      background: linear-gradient(90deg, rgba(143, 240, 180, 0.1), rgba(143, 240, 180, 0.34));
      transform: scaleX(0);
      transform-origin: left center;
      transition: transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
    }

    .solution-bridge-cues {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      margin-top: 28px;
    }

    .solution-bridge-cues span {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      padding: 0 14px;
      border: 1px solid rgba(143, 240, 180, 0.34);
      border-radius: var(--radius-full);
      color: rgba(255, 255, 255, 0.9);
      background: rgba(255, 255, 255, 0.08);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 14px 34px rgba(0, 0, 0, 0.18);
      backdrop-filter: blur(14px) saturate(1.3);
      font-size: 13px;
      font-weight: 900;
      white-space: nowrap;
      opacity: 0;
      transform: translateY(10px);
      transition:
        opacity 520ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
    }

    .solution-animate {
      opacity: 0;
      transform: translateY(14px);
      transition:
        opacity 760ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
    }

    .solution-line-muted.solution-animate {
      transition-duration: 980ms;
    }

    .solution-line-main.solution-animate {
      transform: translateY(18px);
      transition-duration: 760ms;
    }

    .solution-bridge.in-view .solution-animate {
      opacity: 1;
      transform: translateY(0);
    }

    .solution-bridge.in-view .solution-kicker-animate {
      transition-delay: 80ms;
    }

    .solution-bridge.in-view .solution-line-muted {
      transition-delay: 210ms;
    }

    .solution-bridge.in-view .solution-line-main {
      transition-delay: 470ms;
    }

    .solution-bridge.in-view .highlight-line {
      text-shadow: 0 0 28px rgba(143, 240, 180, 0.24);
    }

    .solution-bridge.in-view .highlight-line::after {
      transform: scaleX(1);
      transition-delay: 650ms;
    }

    .solution-bridge.in-view .solution-bridge-cues span {
      opacity: 1;
      transform: translateY(0);
    }

    .solution-bridge.in-view .solution-bridge-cues span:nth-child(1) {
      transition-delay: 720ms;
    }

    .solution-bridge.in-view .solution-bridge-cues span:nth-child(2) {
      transition-delay: 810ms;
    }

    .solution-bridge.in-view .solution-bridge-cues span:nth-child(3) {
      transition-delay: 900ms;
    }

    .roi-section {
      padding: var(--section-py) 0;
      color: #fff;
      background:
        radial-gradient(circle at 18% 0%, rgba(31, 180, 98, 0.18), transparent 38%),
        linear-gradient(180deg, var(--charcoal-soft), var(--charcoal-deep));
      text-align: center;
    }

    .roi-section .t-tight {
      color: #fff;
    }

    .roi-section .hero-desc {
      color: rgba(255, 255, 255, 0.72);
    }

    .roi-metrics {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 40px;
      margin-top: 64px;
    }

    .metric-block {
      padding: 26px 18px;
    }

    .mc-number {
      display: flex;
      align-items: baseline;
      justify-content: center;
      margin-bottom: 10px;
      color: var(--primary-light);
      font-size: 64px;
      font-weight: 900;
      line-height: 1;
    }

    .mc-number span {
      margin-left: 5px;
      font-size: 28px;
      font-weight: 800;
    }

    .mc-title {
      margin: 0 0 12px;
      color: rgba(255, 255, 255, 0.92);
      font-size: 20px;
      font-weight: 800;
    }

    .mc-desc {
      margin: 0;
      color: rgba(255, 255, 255, 0.62);
      font-size: 15px;
      line-height: 1.65;
    }

    .roi-calc {
      margin-top: 74px;
      padding: 44px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: var(--radius-xl);
      background: var(--glass-dark);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 24px 54px rgba(0, 0, 0, 0.18);
      backdrop-filter: blur(28px) saturate(1.35);
      text-align: left;
    }

    .roi-calc-title {
      margin: 0 0 8px;
      color: #fff;
      font-size: 24px;
      font-weight: 900;
      text-align: center;
    }

    .roi-calc-sub {
      margin: 0 0 36px;
      color: rgba(255, 255, 255, 0.58);
      text-align: center;
    }

    .roi-calc-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 36px;
      align-items: stretch;
    }

    .roi-fact-list {
      display: grid;
      gap: 16px;
    }

    .roi-fact {
      display: grid;
      grid-template-columns: 34px minmax(0, 1fr);
      gap: 14px;
      align-items: start;
      color: rgba(255, 255, 255, 0.78);
      font-weight: 600;
    }

    .roi-fact i {
      display: grid;
      place-items: center;
      width: 34px;
      height: 34px;
      border-radius: 12px;
      color: var(--primary-light);
      background: rgba(31, 180, 98, 0.14);
    }

    .roi-result {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 36px;
      border: 1px solid rgba(143, 240, 180, 0.22);
      border-radius: 24px;
      background: linear-gradient(180deg, rgba(31, 180, 98, 0.16), rgba(255, 255, 255, 0.05));
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
      text-align: center;
    }

    .roi-result-label {
      margin: 0 0 12px;
      color: rgba(255, 255, 255, 0.62);
    }

    .roi-result-value {
      color: var(--primary-light);
      font-size: clamp(34px, 5vw, 56px);
      font-weight: 900;
      letter-spacing: 0;
      line-height: 1.15;
    }

    .roi-result-note {
      margin: 14px 0 0;
      color: rgba(255, 255, 255, 0.48);
      font-size: 14px;
    }

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

    .program-bento {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      width: min(1200px, calc(100% - 48px));
      gap: 22px;
      align-items: stretch;
    }

    .program-card {
      display: flex;
      min-width: 0;
      min-height: 100%;
      flex-direction: column;
      border: 1px solid rgba(255, 255, 255, 0.72);
      border-radius: 22px;
      background: rgba(255, 255, 255, 0.66);
      box-shadow: var(--glass-shadow);
      backdrop-filter: var(--glass-blur-sm);
      overflow: hidden;
      transition: transform 260ms var(--ease-spring), box-shadow 260ms var(--ease-spring);
    }

    .program-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--glass-shadow-hover);
    }

    .program-card:nth-child(3) {
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(31, 180, 98, 0.08));
    }

    .program-card.consult-card {
      justify-content: center;
      min-height: 430px;
      padding: 34px;
      background:
        radial-gradient(circle at 82% 22%, rgba(31, 180, 98, 0.18), transparent 34%),
        linear-gradient(180deg, var(--charcoal-soft), var(--charcoal-deep));
    }

    .consult-panel {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 72px;
      gap: 24px;
      align-items: center;
      min-height: 190px;
      padding: 32px;
      border: 1px solid rgba(255, 255, 255, 0.78);
      border-radius: 28px;
      background: rgba(255, 255, 255, 0.96);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 24px 54px rgba(0, 0, 0, 0.18);
    }

    .consult-panel > div {
      min-width: 0;
    }

    .consult-panel h3 {
      margin: 0 0 10px;
      color: var(--text-heading);
      font-size: clamp(24px, 2vw, 30px);
      font-weight: 950;
      line-height: 1.25;
      overflow-wrap: break-word;
    }

    .consult-panel p {
      margin: 0;
      color: var(--text-body);
      font-size: 17px;
      font-weight: 700;
      line-height: 1.55;
      overflow-wrap: break-word;
    }

    .consult-arrow {
      display: grid;
      place-items: center;
      width: 72px;
      height: 72px;
      border-radius: 50%;
      color: #06140a;
      background: var(--glass-green);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.64), 0 14px 34px rgba(31, 180, 98, 0.28);
      font-family: Arial, Helvetica, sans-serif;
      font-size: 28px;
      font-weight: 900;
      line-height: 1;
    }

    .program-card-kicker {
      display: block;
      margin-bottom: 12px;
      color: var(--primary);
      font-size: 14px;
      font-weight: 900;
    }

    .program-card-title {
      margin: 0 0 8px;
      color: var(--text-heading);
      font-size: clamp(22px, 2vw, 28px);
      font-weight: 900;
      line-height: 1.35;
    }

    .program-card-desc {
      margin: 0;
      color: var(--text-body);
      font-size: 15px;
      line-height: 1.62;
    }

    .program-specs {
      display: grid;
      gap: 8px;
      margin-top: 18px;
      padding-top: 18px;
      border-top: 1px solid rgba(23, 32, 24, 0.08);
    }

    .program-specs span {
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--text-heading);
      font-size: 14px;
      font-weight: 800;
      line-height: 1.45;
    }

    .program-specs i {
      display: grid;
      place-items: center;
      flex: 0 0 22px;
      width: 22px;
      height: 22px;
      border-radius: 50%;
      color: #128447;
      background: rgba(31, 180, 98, 0.1);
      font-size: 11px;
    }

    .program-card-body {
      display: flex;
      flex: 1;
      flex-direction: column;
      padding: 28px;
    }

    .program-card-image {
      position: relative;
      min-height: 220px;
      border-radius: 22px 22px 0 0;
      background-position: center;
      background-size: cover;
      box-shadow: var(--shadow-sm);
      overflow: hidden;
    }

    .program-card-image::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.28));
    }

    .view-workshop { background-image: url("assets/photos/self-massage-demo.jpg"); }
    .view-care { background-image: url("assets/photos/care-private-session.jpg"); }
    .view-online { background-image: url("assets/photos/remote-video-care.png"); }
    .view-group-exercise { background-image: url("assets/photos/band-wide-workshop.jpg"); }

    .view-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: auto;
      padding-top: 24px;
    }

    .pkg-btn {
      min-height: 44px;
      padding: 0 18px;
      border-radius: 10px;
      color: var(--primary);
      border: 1px solid rgba(31, 180, 98, 0.2);
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(31, 180, 98, 0.09));
      font-size: 14px;
    }

    .pkg-btn:hover {
      color: #06140a;
      background: var(--glass-green);
    }

    .director-section {
      padding: var(--section-py) 0;
      background: var(--bg-page);
    }

    .director-card {
      display: grid;
      grid-template-columns: 320px minmax(0, 1fr);
      gap: 42px;
      align-items: center;
      width: 100%;
      min-width: 0;
      padding: 46px;
      border: 1px solid rgba(23, 32, 24, 0.06);
      border-radius: 36px;
      background: rgba(255, 255, 255, 0.58);
      box-shadow: 0 10px 30px rgba(20, 42, 24, 0.08);
      backdrop-filter: var(--glass-blur-sm);
    }

    .director-photo {
      width: 100%;
      min-width: 0;
      overflow: hidden;
      border-radius: 28px;
      background: var(--bg-surface);
      box-shadow: var(--shadow-sm);
      aspect-ratio: 4 / 5;
    }

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

    .director-copy h3 {
      margin: 0 0 10px;
      color: var(--text-heading);
      font-size: clamp(24px, 2.4vw, 34px);
      font-weight: 800;
      line-height: 1.24;
    }

    .director-copy {
      min-width: 0;
    }

    .director-role {
      margin: 0 0 18px;
      color: #27905a;
      font-size: 16px;
      font-weight: 800;
    }

    .director-lead {
      margin: 0 0 26px;
      color: var(--text-body);
      font-size: 15px;
      font-weight: 500;
      line-height: 1.76;
    }

    .director-profile-list {
      display: grid;
      gap: 14px;
      margin-bottom: 0;
    }

    .director-profile-row {
      display: grid;
      grid-template-columns: 92px minmax(0, 1fr);
      gap: 14px;
      min-width: 0;
      padding-top: 14px;
      border-top: 1px solid rgba(23, 32, 24, 0.08);
    }

    .director-profile-row strong {
      display: block;
      color: #25322a;
      font-size: 14px;
      font-weight: 800;
      line-height: 1.55;
    }

    .director-profile-row span {
      display: block;
      color: #5f6a61;
      font-size: 13px;
      font-weight: 500;
      line-height: 1.65;
    }

    .partner-logos {
      display: flex;
      gap: 10px;
      width: 100%;
      max-width: 100%;
      min-width: 0;
      overflow: hidden;
      mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
      -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    }

    .partner-logo {
      display: grid;
      place-items: center;
      flex: 0 0 116px;
      min-width: 0;
      min-height: 66px;
      padding: 14px;
      border: 1px solid var(--border-light);
      border-radius: 16px;
      background: #fff;
      animation: partnerLogoScroll 22s linear infinite;
    }

    .partner-logo img {
      max-width: 100%;
      max-height: 34px;
      opacity: 1;
    }

    .partner-logos:hover .partner-logo {
      animation-play-state: paused;
    }

    .client-marquee-section {
      padding: 30px 0;
      border-top: 1px solid var(--border-light);
      border-bottom: 1px solid var(--border-light);
      background: rgba(255, 255, 255, 0.92);
      overflow: hidden;
    }

    .client-marquee-wrapper {
      width: 100%;
      overflow: hidden;
      mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
      -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    }

    .client-logo-track {
      --marquee-gap: 16px;
      display: flex;
      align-items: center;
      gap: 0;
      width: max-content;
      animation: logoScroll 26s linear infinite;
    }

    .client-logo-track:hover {
      animation-play-state: paused;
    }

    .client-logo-set {
      display: flex;
      align-items: center;
      gap: var(--marquee-gap);
      flex: 0 0 auto;
      padding-right: var(--marquee-gap);
    }

    .client-logo {
      display: grid;
      place-items: center;
      flex: 0 0 auto;
      width: 148px;
      height: 66px;
      padding: 14px 18px;
      border: 1px solid var(--border-light);
      border-radius: 16px;
      background: #fff;
      box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
    }

    .client-logo img {
      display: block;
      max-width: 100%;
      max-height: 34px;
      object-fit: contain;
      filter: none;
      opacity: 1;
    }

    .stories-board {
      max-width: 1000px;
      margin: 56px auto 0;
      padding: 52px 46px;
      border: 1px solid rgba(255, 255, 255, 0.68);
      border-radius: 32px;
      background: rgba(255, 255, 255, 0.74);
      box-shadow: var(--glass-shadow);
      backdrop-filter: var(--glass-blur-sm);
    }

    .st-tabs {
      display: flex;
      justify-content: center;
      gap: 34px;
      margin-bottom: 48px;
      border-bottom: 2px solid rgba(0, 0, 0, 0.06);
      overflow-x: auto;
      white-space: nowrap;
      scrollbar-width: none;
    }

    .st-tabs::-webkit-scrollbar {
      display: none;
    }

    .st-tab {
      position: relative;
      display: flex;
      align-items: center;
      gap: 9px;
      padding: 0 10px 20px;
      border: 0;
      color: var(--text-secondary);
      background: transparent;
      font-size: 16px;
      font-weight: 800;
      cursor: pointer;
    }

    .st-tab.active {
      color: var(--primary);
    }

    .st-tab.active::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -2px;
      height: 2px;
      border-radius: 2px;
      background: var(--primary);
    }

    .st-view {
      display: none;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: center;
      animation: fadeUp 500ms var(--ease-spring);
    }

    .st-view.active {
      display: grid;
    }

    .st-img {
      min-height: 380px;
      border-radius: 24px;
      background-position: center;
      background-size: cover;
      box-shadow: var(--shadow-sm);
    }

    .st-quote-title {
      margin: 0 0 22px;
      color: var(--text-heading);
      font-size: 26px;
      font-weight: 900;
      line-height: 1.42;
    }

    .st-body-text {
      margin: 0 0 30px;
      color: var(--text-body);
      font-size: 16px;
      line-height: 1.75;
    }

    .st-author {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 34px;
    }

    .st-author-logo {
      color: var(--text-heading);
      font-size: 18px;
      font-weight: 900;
    }

    .st-author-name {
      padding-left: 16px;
      border-left: 1px solid rgba(0, 0, 0, 0.1);
      color: var(--text-secondary);
      font-size: 15px;
      font-weight: 700;
    }

    .st-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      width: max-content;
      color: var(--primary);
      font-size: 14px;
      font-weight: 800;
    }

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

    .process-timeline {
      position: relative;
      display: flex;
      flex-direction: column;
      gap: 24px;
      max-width: 900px;
      margin: 0 auto;
    }

    .process-timeline::before {
      content: "";
      position: absolute;
      top: 40px;
      bottom: 0;
      left: 39px;
      width: 2px;
      background: linear-gradient(to bottom, var(--primary), rgba(31, 180, 98, 0.08));
    }

    .process-step {
      position: relative;
      display: flex;
      gap: 32px;
      padding: 40px 48px;
      border: 1px solid rgba(255, 255, 255, 0.62);
      border-radius: 32px;
      background: rgba(255, 255, 255, 0.74);
      box-shadow: var(--glass-shadow);
      backdrop-filter: var(--glass-blur-sm);
      transition: transform 320ms var(--ease-spring), box-shadow 320ms var(--ease-spring);
    }

    .process-step:hover {
      transform: translateX(8px);
      box-shadow: var(--glass-shadow-hover);
    }

    .ps-icon {
      position: relative;
      z-index: 2;
      display: flex;
      flex: 0 0 auto;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 80px;
      height: 80px;
      border-radius: 24px;
      color: #fff;
      background: linear-gradient(180deg, var(--charcoal-soft), var(--charcoal-deep));
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 8px 18px rgba(0, 0, 0, 0.14);
      font-weight: 900;
    }

    .ps-icon span {
      margin-bottom: 2px;
      font-size: 12px;
      font-weight: 700;
      opacity: 0.72;
    }

    .ps-icon strong {
      color: var(--primary-light);
      font-size: 28px;
      line-height: 1;
    }

    .ps-content h3 {
      margin: 4px 0 12px;
      color: var(--text-heading);
      font-size: 24px;
      font-weight: 900;
      line-height: 1.38;
    }

    .ps-content p {
      margin: 0;
      color: var(--text-body);
      font-size: 16px;
      line-height: 1.68;
    }

    .trust-section {
      margin: 0 24px;
      padding: clamp(72px, 8vw, 104px) 0;
      border-radius: 32px;
      color: #fff;
      background:
        radial-gradient(circle at 82% 10%, rgba(31, 180, 98, 0.18), transparent 34%),
        linear-gradient(180deg, var(--charcoal-soft), var(--charcoal-deep));
    }

    .trust-header {
      max-width: 1152px;
      margin: 0 auto 40px;
    }

    .trust-header h2 {
      margin-bottom: 16px;
      color: #fff;
      font-size: clamp(34px, 4.4vw, 56px);
    }

    .trust-header p {
      margin: 0;
      color: rgba(255, 255, 255, 0.62);
      font-size: 17px;
      line-height: 1.72;
    }

    .trust-box {
      max-width: 1152px;
      margin: 0 auto;
      padding: clamp(34px, 5vw, 48px);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 30px;
      background: var(--glass-dark);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 20px 44px rgba(0, 0, 0, 0.22);
      backdrop-filter: blur(28px) saturate(1.3);
    }

    .trust-box-top {
      display: flex;
      align-items: baseline;
      gap: 12px;
      margin-bottom: 34px;
    }

    .trust-number {
      margin-bottom: 0;
      color: var(--primary-light);
      font-size: clamp(20px, 2.2vw, 28px);
      font-weight: 800;
      line-height: 1.18;
    }

    .trust-box-title {
      color: #fff;
      font-size: clamp(22px, 2.5vw, 30px);
      font-weight: 800;
      line-height: 1.34;
    }

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

    .trust-item {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .trust-step-number {
      display: inline-flex;
      align-items: center;
      color: var(--primary-light);
      font-size: 13px;
      font-weight: 900;
      line-height: 1;
      letter-spacing: 0;
    }

    .trust-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      border: 1px solid rgba(143, 240, 180, 0.24);
      border-radius: 12px;
      color: var(--primary-light);
      background: rgba(31, 180, 98, 0.14);
      font-size: 18px;
    }

    .trust-item h4 {
      display: flex;
      align-items: center;
      gap: 10px;
      margin: 0;
      color: #fff;
      font-size: 17px;
      font-weight: 800;
      line-height: 1.42;
    }

    .trust-item h4 .trust-step-number {
      transform: translateY(1px);
    }

    .trust-item p {
      margin: 0;
      color: rgba(255, 255, 255, 0.54);
      font-size: 14px;
      line-height: 1.7;
    }

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

    .faq-header {
      max-width: 740px;
      margin: 0 auto 64px;
      text-align: center;
    }

    .faq-header h2 {
      margin-bottom: 16px;
      font-size: var(--fs-h2);
    }

    .faq-header p {
      margin: 0;
      color: var(--text-body);
      font-size: var(--fs-body-lg);
      line-height: 1.7;
    }

    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 16px;
      max-width: 820px;
      margin: 0 auto;
    }

    .faq-item {
      border: 1px solid rgba(255, 255, 255, 0.62);
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.74);
      box-shadow: var(--glass-shadow);
      overflow: hidden;
      backdrop-filter: var(--glass-blur-sm);
    }

    .faq-q {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      gap: 16px;
      padding: 28px 32px;
      border: 0;
      background: none;
      text-align: left;
      cursor: pointer;
    }

    .faq-q span {
      color: var(--text-heading);
      font-size: 18px;
      font-weight: 800;
      line-height: 1.45;
    }

    .faq-q i {
      flex: 0 0 auto;
      color: var(--text-secondary);
      transition: transform 260ms var(--ease-spring), color 260ms ease;
    }

    .faq-item.open .faq-q i {
      color: var(--primary);
      transform: rotate(180deg);
    }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 360ms var(--ease-spring);
    }

    .faq-item.open .faq-a {
      max-height: 420px;
    }

    .faq-a-inner {
      padding: 0 32px 28px;
      color: var(--text-body);
      font-size: 16px;
      font-weight: 500;
      line-height: 1.75;
    }

    .b2b-cta {
      position: relative;
      color: #fff;
      background:
        radial-gradient(circle at 22% 18%, rgba(31, 180, 98, 0.16), transparent 34%),
        linear-gradient(180deg, var(--charcoal), var(--charcoal-deep));
      overflow: hidden;
    }

    .cta-glow {
      position: absolute;
      right: -10%;
      bottom: -52%;
      width: 800px;
      height: 800px;
      background: radial-gradient(circle, rgba(31, 180, 98, 0.32) 0%, transparent 70%);
      filter: blur(80px);
    }

    .b2b-cta-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      gap: 80px;
      align-items: center;
    }

    .cta-info h2 {
      margin-bottom: 24px;
      color: #fff;
      font-size: var(--fs-h1);
    }

    .cta-info > p {
      margin: 0 0 48px;
      color: rgba(255, 255, 255, 0.72);
      font-size: var(--fs-body-lg);
      line-height: 1.75;
    }

    .onboarding-list {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .ob-item {
      display: flex;
      align-items: flex-start;
      gap: 20px;
    }

    .ob-num {
      display: flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 auto;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      color: #06140a;
      background: var(--glass-green);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.54), 0 8px 18px rgba(31, 180, 98, 0.22);
      font-size: 14px;
      font-weight: 900;
    }

    .ob-text h4 {
      margin: 0 0 8px;
      color: #fff;
      font-size: 18px;
      font-weight: 800;
    }

    .ob-text p {
      margin: 0;
      color: rgba(255, 255, 255, 0.62);
      font-size: 15px;
      line-height: 1.7;
    }

    .cta-form-card {
      padding: 46px;
      border-radius: var(--radius-xl);
      border: 1px solid rgba(255, 255, 255, 0.72);
      background: rgba(255, 255, 255, 0.84);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86), 0 25px 54px rgba(0, 0, 0, 0.24);
      backdrop-filter: blur(30px) saturate(1.35);
    }

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

    .form-group.full {
      grid-column: 1 / -1;
    }

    .form-label {
      display: block;
      margin-bottom: 8px;
      color: var(--text-heading);
      font-size: 14px;
      font-weight: 800;
    }

    .form-label span {
      color: var(--primary);
    }

    .form-input {
      width: 100%;
      min-height: 56px;
      padding: 0 18px;
      border: 1px solid rgba(0, 0, 0, 0.1);
      border-radius: 12px;
      color: var(--text-heading);
      background: rgba(255, 255, 255, 0.74);
      outline: none;
      transition: border-color 180ms ease, box-shadow 180ms ease;
    }

    textarea.form-input {
      min-height: 120px;
      padding: 16px 18px;
      resize: vertical;
    }

    .form-input:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 4px rgba(31, 180, 98, 0.12);
    }

    .privacy-check {
      display: grid;
      grid-template-columns: 18px minmax(0, 1fr);
      gap: 10px;
      align-items: start;
      margin: 18px 0 12px;
    }

    .privacy-check input {
      width: 18px;
      height: 18px;
      margin-top: 5px;
      accent-color: var(--primary);
    }

    .privacy-check label {
      color: var(--text-body);
      font-size: 13px;
      font-weight: 600;
      line-height: 1.65;
    }

    .form-submit {
      width: 100%;
      min-height: 60px;
      margin-top: 10px;
      border-radius: 12px;
      color: #06140a;
      border: 1px solid rgba(255, 255, 255, 0.46);
      background: var(--glass-green);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.64), 0 12px 28px rgba(31, 180, 98, 0.24);
      font-size: 18px;
    }

    .form-submit:hover {
      background: linear-gradient(180deg, rgba(171, 255, 203, 0.94), rgba(31, 180, 98, 0.98));
      transform: translateY(-2px);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 12px 26px rgba(31, 180, 98, 0.28);
    }

    .form-status {
      display: none;
      margin: 12px 0;
      color: var(--primary);
      font-size: 14px;
      font-weight: 800;
    }

    .form-status.is-visible {
      display: block;
    }

    .contact-panel.is-submitting {
      opacity: 0.76;
    }

    .contact-teaser {
      display: grid;
      align-content: center;
      gap: 22px;
    }

    .contact-teaser h3 {
      margin: 0;
      color: var(--text-heading);
      font-size: clamp(25px, 3vw, 34px);
      font-weight: 900;
      line-height: 1.25;
    }

    .contact-teaser p {
      margin: 0;
      color: var(--text-body);
      font-size: 16px;
      font-weight: 650;
      line-height: 1.7;
    }

    .contact-teaser-list {
      display: grid;
      gap: 10px;
    }

    .contact-teaser-list span {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--text-heading);
      font-size: 15px;
      font-weight: 800;
    }

    .contact-teaser-list i {
      display: grid;
      place-items: center;
      width: 30px;
      height: 30px;
      border-radius: 10px;
      color: var(--primary);
      background: rgba(31, 180, 98, 0.1);
    }

    .contact-modal {
      position: fixed;
      inset: 0;
      z-index: 1300;
      display: grid;
      place-items: center;
      padding: 24px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 220ms var(--ease-default);
    }

    .contact-modal.is-open {
      opacity: 1;
      pointer-events: auto;
    }

    .contact-modal-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(9, 14, 10, 0.68);
      backdrop-filter: blur(18px) saturate(1.25);
    }

    .contact-modal-panel {
      position: relative;
      width: min(880px, 100%);
      max-height: min(860px, calc(100svh - 48px));
      overflow: auto;
      padding: clamp(24px, 4vw, 38px);
      border: 1px solid rgba(255, 255, 255, 0.56);
      border-radius: 24px;
      background: rgba(251, 253, 249, 0.98);
      box-shadow: 0 30px 90px rgba(9, 14, 10, 0.3);
      transform: translateY(14px) scale(0.98);
      transition: transform 220ms var(--ease-spring);
    }

    .contact-modal.is-open .contact-modal-panel {
      transform: translateY(0) scale(1);
    }

    .contact-modal-close {
      position: absolute;
      top: 18px;
      right: 18px;
      display: grid;
      place-items: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      color: var(--text-heading);
      background: rgba(23, 32, 24, 0.06);
      font-size: 18px;
    }

    .contact-modal-head {
      display: grid;
      gap: 12px;
      padding-right: 42px;
      margin-bottom: 24px;
    }

    .contact-modal-head h2 {
      margin: 0;
      color: var(--text-heading);
      font-size: clamp(25px, 4vw, 36px);
      font-weight: 900;
      line-height: 1.2;
    }

    .contact-modal-head p {
      margin: 0;
      color: var(--text-body);
      font-size: 15px;
      font-weight: 650;
      line-height: 1.65;
    }

    body.contact-modal-open {
      overflow: hidden;
    }

    .floating-cta {
      position: fixed;
      right: 32px;
      bottom: 32px;
      z-index: 999;
      opacity: 0;
      pointer-events: none;
      transform: translateY(20px);
      transition: opacity 360ms var(--ease-spring), transform 360ms var(--ease-spring);
    }

    .floating-cta.visible {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }

    .floating-cta a {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 16px 28px;
      border-radius: var(--radius-full);
      color: #06140a;
      border: 1px solid rgba(255, 255, 255, 0.46);
      background: var(--glass-green);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62), 0 8px 32px rgba(31, 180, 98, 0.32);
      backdrop-filter: blur(18px) saturate(1.4);
      font-size: 15px;
      font-weight: 800;
    }

    .program-modal {
      position: fixed;
      inset: 0;
      z-index: 1200;
      display: grid;
      place-items: center;
      padding: 24px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 220ms var(--ease-default);
    }

    .program-modal.is-open {
      opacity: 1;
      pointer-events: auto;
    }

    .program-modal-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(9, 14, 10, 0.62);
      backdrop-filter: blur(18px) saturate(1.25);
    }

    .program-modal-panel {
      position: relative;
      width: min(760px, 100%);
      max-height: min(780px, calc(100svh - 48px));
      overflow: auto;
      padding: 34px;
      border: 1px solid rgba(255, 255, 255, 0.56);
      border-radius: 24px;
      background: rgba(251, 253, 249, 0.96);
      box-shadow: 0 30px 90px rgba(9, 14, 10, 0.28);
      transform: translateY(14px) scale(0.98);
      transition: transform 220ms var(--ease-spring);
    }

    .program-modal.is-open .program-modal-panel {
      transform: translateY(0) scale(1);
    }

    .program-modal-close {
      position: absolute;
      top: 18px;
      right: 18px;
      display: grid;
      place-items: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      color: var(--text-heading);
      background: rgba(23, 32, 24, 0.06);
      font-size: 18px;
    }

    .program-modal-head {
      display: grid;
      gap: 12px;
      padding-right: 42px;
      margin-bottom: 22px;
    }

    .program-modal-head h2 {
      margin: 0;
      color: var(--text-heading);
      font-size: clamp(25px, 4vw, 36px);
      font-weight: 900;
      line-height: 1.2;
    }

    .program-modal-head p {
      margin: 0;
      color: var(--text-body);
      font-size: 15px;
      font-weight: 600;
      line-height: 1.65;
    }

    .program-modal-grid {
      display: grid;
      gap: 12px;
    }

    .program-modal-grid article {
      display: grid;
      gap: 7px;
      padding: 18px;
      border: 1px solid rgba(23, 32, 24, 0.08);
      border-radius: 16px;
      background: rgba(238, 246, 238, 0.82);
    }

    .program-modal-grid strong {
      color: var(--text-heading);
      font-size: 17px;
      font-weight: 900;
    }

    .program-modal-grid span {
      color: var(--text-body);
      font-size: 14px;
      font-weight: 600;
      line-height: 1.58;
    }

    .program-modal-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 22px;
    }

    .mobile-cta {
      display: none;
    }

    .site-footer {
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      background: var(--charcoal-deep);
    }

    .footer-inner {
      display: grid;
      grid-template-columns: 1fr auto 1.2fr;
      align-items: start;
      gap: 24px;
      width: min(1200px, calc(100% - 48px));
      margin: 0 auto;
      padding: 30px 0;
      color: rgba(255, 255, 255, 0.54);
      font-size: 13px;
      font-weight: 700;
    }

    .footer-inner strong {
      color: #fff;
    }

    .footer-brand,
    .footer-notice {
      display: grid;
      gap: 6px;
    }

    .footer-business {
      display: grid;
      grid-template-columns: repeat(2, max-content);
      gap: 6px 16px;
      color: rgba(255, 255, 255, 0.68);
      white-space: nowrap;
    }

    @keyframes meshFloat {
      0% { transform: scale(1) translate(0, 0); }
      33% { transform: scale(1.05) translate(-10px, 15px); }
      66% { transform: scale(0.98) translate(15px, -10px); }
      100% { transform: scale(1.03) translate(-5px, 5px); }
    }

    @keyframes logoScroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    @keyframes proofLogoDrift {
      0% { transform: translateX(0); }
      100% { transform: translateX(-1140px); }
    }

    @keyframes partnerLogoScroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-756px); }
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @media (max-width: 1024px) {
      .problem-cards,
      .roi-metrics,
      .trust-grid {
        grid-template-columns: 1fr;
      }

      .b2b-cta-grid,
      .roi-calc-grid,
      .director-card {
        grid-template-columns: 1fr;
        gap: 44px;
      }

      .program-bento {
        grid-template-columns: 1fr;
        width: min(100% - 32px, 1200px);
      }

      .proof-strip {
        grid-template-columns: 1fr;
        gap: 24px;
      }

      .proof-logo {
        flex-basis: 148px;
        min-height: 70px;
      }

      .proof-logo-grid {
        animation-name: proofLogoDriftMobile;
      }

      .proof-logo img {
        max-height: 36px;
      }

      .st-view {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {
      body {
        padding-bottom: 68px;
      }

      .container,
      .footer-inner {
        width: min(100% - 32px, 1200px);
      }

      .b2b-hero {
        min-height: min(76svh, 620px);
        padding: 46px 0 42px;
      }

      .hero-title {
        font-size: 34px;
        line-height: 1.16;
      }

      .hero-badge {
        max-width: 100%;
        font-size: 12px;
        white-space: normal;
      }

      .hero-desc {
        font-size: 17px;
      }

      .desktop-copy {
        display: none;
      }

      .mobile-copy {
        display: inline;
      }

      .cta-buttons,
      .btn-primary,
      .btn-ghost,
      .btn-white,
      .btn-ghost-white,
      .pkg-btn {
        width: 100%;
      }

      .logo-track {
        gap: 20px;
      }

      .logo-item {
        font-size: 16px;
      }

      .problem-card {
        padding: 32px 24px;
      }

      .solution-bridge {
        width: min(100% - 32px, 1120px);
        padding: 30px 0;
      }

      .solution-bridge-cues {
        margin-top: 22px;
      }

      .roi-metrics {
        margin-top: 38px;
        gap: 18px;
      }

      .roi-calc,
      .program-card,
      .stories-board,
      .director-card,
      .cta-form-card {
        padding: 32px 22px;
        border-radius: 24px;
      }

      .director-profile-row {
        grid-template-columns: 1fr;
        gap: 4px;
      }

      .director-card {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
      }

      .director-photo {
        max-width: min(100%, 320px);
        margin: 0 auto;
      }

      .director-copy h3,
      .director-role,
      .director-lead,
      .director-profile-row span {
        overflow-wrap: break-word;
      }

      .partner-logo {
        flex-basis: 104px;
        min-height: 58px;
        padding: 12px;
        border-radius: 14px;
      }

      .partner-logo img {
        max-height: 28px;
      }

      .client-marquee-section {
        padding: 22px 0;
      }

      .client-logo-track {
        --marquee-gap: 12px;
        animation-duration: 22s;
      }

      .client-logo {
        width: 128px;
        height: 58px;
        padding: 12px 15px;
        border-radius: 14px;
      }

      .client-logo img {
        max-height: 29px;
      }

      .program-card-title,
      .st-quote-title {
        font-size: 25px;
      }

      .program-specs span {
        align-items: flex-start;
      }

      .program-card-image {
        min-height: 210px;
      }

      .consult-card {
        min-height: auto;
        padding: 22px;
      }

      .consult-panel {
        grid-template-columns: minmax(0, 1fr) 56px;
        gap: 14px;
        min-height: 150px;
        padding: 24px 20px;
        border-radius: 22px;
      }

      .consult-panel h3 {
        font-size: 22px;
      }

      .consult-panel p {
        font-size: 15px;
      }

      .consult-arrow {
        width: 56px;
        height: 56px;
        font-size: 22px;
      }

      .program-card-image,
      .st-img {
        min-height: 250px;
      }

      .st-tabs {
        justify-content: flex-start;
        gap: 24px;
      }

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

      .process-step {
        flex-direction: column;
        gap: 22px;
        padding: 32px 24px;
      }

      .process-step:hover {
        transform: translateY(-4px);
      }

      .ps-icon {
        width: 64px;
        height: 64px;
        border-radius: 16px;
      }

      .trust-section {
        margin: 0;
        border-radius: 0;
      }

      .trust-box {
        padding: 30px 22px;
        border-radius: 24px;
      }

      .trust-box-top {
        display: block;
        margin-bottom: 28px;
      }

      .trust-number {
        margin-bottom: 6px;
      }

      .faq-q {
        padding: 24px 20px;
      }

      .faq-a-inner {
        padding: 0 20px 24px;
        font-size: 15px;
      }

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

      .contact-modal {
        padding: 12px;
      }

      .contact-modal-panel {
        max-height: calc(100svh - 24px);
        padding: 24px 18px 22px;
        border-radius: 20px;
      }

      .contact-modal-close {
        top: 12px;
        right: 12px;
      }

      .contact-modal-head {
        padding-right: 36px;
      }

      .floating-cta {
        display: none;
      }

      .mobile-cta {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 999;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        padding: 10px 14px;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        background: rgba(17, 22, 17, 0.82);
        backdrop-filter: blur(22px) saturate(1.35);
      }

      .mobile-cta a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        min-height: 44px;
        border-radius: 12px;
        font-size: 14px;
        font-weight: 900;
      }

      .mobile-cta i {
        font-size: 13px;
      }

      .mobile-cta a:first-child {
        color: #06140a;
        border: 1px solid rgba(255, 255, 255, 0.42);
        background: var(--glass-green);
      }

      .mobile-cta a:last-child {
        color: #fff;
        border: 1px solid rgba(255, 255, 255, 0.18);
        background: var(--glass-dark);
      }

      .program-modal {
        align-items: end;
        padding: 14px 14px 74px;
      }

      .program-modal-panel {
        max-height: calc(100svh - 96px);
        padding: 24px 18px 20px;
        border-radius: 20px;
      }

      .program-modal-close {
        top: 12px;
        right: 12px;
      }

      .program-modal-head {
        padding-right: 38px;
      }

      .program-modal-actions {
        display: grid;
      }

      .footer-inner {
        display: grid;
      }

      .footer-business {
        grid-template-columns: 1fr;
        white-space: normal;
      }
    }

    @media (max-width: 380px) {
      .hero-title {
        font-size: 31px;
      }
    }

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

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

      .solution-animate,
      .solution-bridge-cues span {
        opacity: 1;
        transform: none;
      }

      .highlight-line::after {
        transform: scaleX(1);
        transition: none;
      }

      .client-logo-track {
        animation: none;
      }

      .proof-logo-grid {
        animation: none;
      }
    }

    @keyframes proofLogoDriftMobile {
      0% { transform: translateX(0); }
      100% { transform: translateX(-960px); }
    }


















