    :root {
      --navy: #0f1420;
      --navy-2: #1b2438;
      --blue: #b0812c;
      --blue-2: #c9973f;
      --cyan: #c9973f;
      --cyan-2: #ddaa52;
      --gold: #c9973f;
      --cream: #f7f6f2;
      --paper: #fffdf9;
      --ink: #161a22;
      --text: #283040;
      --muted: rgba(22, 26, 34, 0.68);
      --soft: #f7f6f2;
      --line: rgba(22, 26, 34, 0.12);
      --white: #ffffff;
      --shadow: 0 18px 44px rgba(15, 20, 32, 0.1);
      --sans: "IBM Plex Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      --serif: Newsreader, Georgia, "Times New Roman", serif;
    }

    * { box-sizing: border-box; }

    body {
      margin: 0;
      background: var(--cream);
      color: var(--ink);
      font-family: var(--sans);
      line-height: 1.36;
    }

    a { color: inherit; }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: var(--navy);
      border-bottom: 1px solid rgba(242, 239, 233, 0.1);
    }

    .site-header-inner {
      max-width: 1180px;
      min-height: 74px;
      margin: 0 auto;
      padding: 0 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: wrap;
    }

    .site-brand {
      font-family: var(--serif);
      font-size: 21px;
      font-weight: 500;
      letter-spacing: 0.01em;
      color: #f2efe9;
      text-decoration: none;
      padding: 14px 0;
    }

    .site-nav {
      display: flex;
      align-items: center;
      gap: 30px;
      flex-wrap: wrap;
      padding-bottom: 6px;
    }

    .site-nav a {
      font-size: 14.5px;
      font-weight: 400;
      text-decoration: none;
      padding: 4px 0;
      color: rgba(242, 239, 233, 0.72);
      border-bottom: 1px solid transparent;
    }

    .site-nav a:hover,
    .site-nav a.active {
      color: var(--gold);
      border-bottom-color: var(--gold);
    }

    .site-nav .contact-link {
      font-size: 14px;
      font-weight: 600;
      color: var(--navy);
      background: var(--gold);
      padding: 11px 20px;
      border-radius: 2px;
      border-bottom: 0;
    }

    .kk-courses-menu {
      position: relative;
      padding: 10px 0;
      margin: -10px 0;
    }

    .kk-courses-trigger {
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .kk-courses-dropdown {
      position: absolute;
      top: calc(100% - 2px);
      left: 0;
      min-width: 245px;
      padding: 10px;
      border: 1px solid rgba(201, 151, 63, 0.34);
      background: #101827;
      box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
      opacity: 0;
      visibility: hidden;
      transform: translateY(8px);
      transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
      z-index: 1000;
    }

    .kk-courses-menu:hover .kk-courses-dropdown,
    .kk-courses-menu:focus-within .kk-courses-dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .kk-courses-dropdown a {
      display: block;
      padding: 10px 12px;
      border-radius: 2px;
      color: #f2efe9;
      text-decoration: none;
      white-space: nowrap;
      font-size: 14px;
      border-bottom: 0;
    }

    .kk-courses-dropdown a:hover,
    .kk-courses-dropdown a.active {
      background: rgba(201, 151, 63, 0.13);
      color: var(--gold);
    }

    .page {
      max-width: 1180px;
      margin: 0 auto;
      background: var(--cream);
    }

    .hero {
      position: relative;
      overflow: hidden;
      min-height: 480px;
      padding: 48px 40px 46px;
      color: #f2efe9;
      background:
        radial-gradient(circle at 74% 30%, rgba(201, 151, 63, 0.16), transparent 30%),
        linear-gradient(110deg, var(--navy) 0%, var(--navy) 45%, var(--navy-2) 72%, var(--navy) 100%);
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      opacity: 0.22;
      background-image:
        linear-gradient(rgba(201, 151, 63, 0.18) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 151, 63, 0.16) 1px, transparent 1px);
      background-size: 80px 80px;
      mask-image: linear-gradient(90deg, transparent, #000 45%, transparent 92%);
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 0.95fr;
      gap: 34px;
      align-items: center;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      border: 1px solid var(--cyan);
      border-radius: 6px;
      padding: 5px 10px;
      color: var(--cyan-2);
      font-size: 15px;
      font-weight: 600;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      background: rgba(201, 151, 63, 0.1);
    }

    h1 {
      margin: 20px 0 14px;
      max-width: none;
      font-size: clamp(34px, 3.6vw, 44px);
      line-height: 1.08;
      letter-spacing: -0.025em;
      font-family: var(--serif);
      font-weight: 500;
      white-space: nowrap;
    }

    h1 span { color: var(--cyan); }

    .hero-sub {
      max-width: 720px;
      margin: 0 0 30px;
      color: var(--cyan-2);
      font-size: 21px;
      line-height: 1.25;
      font-weight: 500;
    }

    .hero-copy {
      max-width: 655px;
      margin: 0 0 22px;
      color: rgba(255, 255, 255, 0.92);
      font-size: 17px;
      line-height: 1.34;
      font-weight: 400;
    }

    .hero-facts {
      display: grid;
      grid-template-columns: repeat(4, minmax(110px, 1fr));
      gap: 18px;
      max-width: 680px;
      margin: 24px 0 30px;
    }

    .fact {
      display: grid;
      grid-template-columns: 34px 1fr;
      gap: 10px;
      align-items: start;
    }

    .fact-icon {
      width: 34px;
      height: 34px;
      display: grid;
      place-items: center;
      border: 2px solid rgba(255, 255, 255, 0.92);
      border-radius: 6px;
      font-weight: 600;
      font-size: 14px;
    }

    .fact-icon.round { border-radius: 50%; }

    .fact strong {
      display: block;
      color: #ffffff;
      font-size: 14px;
      line-height: 1.2;
    }

    .fact span {
      display: block;
      margin-top: 3px;
      color: rgba(255, 255, 255, 0.8);
      font-size: 13px;
      line-height: 1.18;
      font-weight: 400;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      align-items: stretch;
      gap: 24px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 288px;
      min-height: 56px;
      border-radius: 7px;
      background: linear-gradient(135deg, #ddaa52, #c9973f);
      color: var(--navy);
      text-decoration: none;
      font-size: 20px;
      font-weight: 600;
      box-shadow: 0 18px 30px rgba(201, 151, 63, 0.22);
    }

    .batch-box {
      min-width: 275px;
      border-radius: 7px;
      padding: 18px 22px;
      background: rgba(242, 239, 233, 0.08);
      border: 1px solid rgba(201, 151, 63, 0.22);
      color: #f2efe9;
      font-size: 21px;
      line-height: 1.25;
      font-weight: 800;
    }

    .batch-box-row {
      display: block;
    }

    .batch-box-row + .batch-box-row {
      margin-top: 4px;
    }

    .batch-box-value {
      color: var(--gold);
      font-weight: 800;
      text-decoration: underline;
      text-decoration-thickness: 2px;
      text-underline-offset: 4px;
    }

    .visual {
      position: relative;
      min-height: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-instructor {
      justify-content: flex-end;
      gap: 22px;
      align-items: flex-start;
      max-width: 510px;
      margin-left: auto;
      padding: 30px 28px;
      border: 1px solid rgba(201, 151, 63, 0.28);
      border-radius: 10px;
      background: rgba(242, 239, 233, 0.08);
      box-shadow: 0 22px 44px rgba(0, 0, 0, 0.18);
    }

    .hero-instructor-photo {
      width: 104px;
      height: 104px;
      flex: 0 0 104px;
      border-radius: 50%;
      object-fit: cover;
      object-position: center top;
      border: 3px solid rgba(201, 151, 63, 0.75);
      background: #d8f3ff;
      box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28);
    }

    .hero-instructor-copy {
      min-width: 0;
    }

    .hero-instructor-label {
      margin-bottom: 5px;
      color: var(--cyan-2);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .hero-instructor h2 {
      margin: 0 0 8px;
      color: #ffffff;
      font-family: var(--serif);
      font-size: 30px;
      line-height: 1.05;
      font-weight: 600;
    }

    .hero-instructor p {
      margin: 0 0 15px;
      color: rgba(255, 255, 255, 0.86);
      font-size: 15px;
      line-height: 1.42;
    }

    .hero-instructor ul {
      display: grid;
      gap: 12px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .hero-instructor li {
      position: relative;
      padding-left: 20px;
      color: rgba(255, 255, 255, 0.9);
      font-size: 17px;
      line-height: 1.34;
    }

    .hero-instructor li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.55em;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--cyan);
    }

    .portrait {
      position: absolute;
      left: 26%;
      top: -8px;
      width: 380px;
      border-radius: 8px;
      overflow: hidden;
      z-index: 3;
      filter: drop-shadow(0 28px 38px rgba(0, 0, 0, 0.36));
    }

    .portrait img {
      width: 100%;
      display: block;
      background: #d9f4ff;
    }

    .dash {
      position: absolute;
      z-index: 2;
      width: 225px;
      border: 1px solid rgba(0, 201, 216, 0.36);
      border-radius: 8px;
      padding: 17px;
      background: rgba(7, 25, 45, 0.72);
      color: #ffffff;
      box-shadow: 0 16px 36px rgba(0, 0, 0, 0.26);
    }

    .dash.google { top: 30px; left: 0; }
    .dash.meta { top: 30px; right: 10px; }
    .dash.ai { top: 225px; right: 8px; width: 160px; }

    .dash-title {
      display: flex;
      justify-content: space-between;
      color: #ffffff;
      font-size: 13px;
      font-weight: 600;
    }

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

    .dash-label {
      color: rgba(255, 255, 255, 0.6);
      font-size: 12px;
    }

    .dash-value {
      margin-top: 3px;
      font-size: 25px;
      font-weight: 600;
    }

    .line-chart {
      height: 70px;
      border-bottom: 1px solid rgba(0, 201, 216, 0.2);
      background:
        linear-gradient(135deg, transparent 10%, transparent 20%, rgba(0, 238, 251, 0.7) 21%, transparent 22%),
        linear-gradient(155deg, transparent 22%, transparent 35%, rgba(0, 238, 251, 0.7) 36%, transparent 37%),
        linear-gradient(35deg, transparent 48%, rgba(0, 238, 251, 0.8) 49%, transparent 50%),
        linear-gradient(145deg, transparent 62%, rgba(0, 238, 251, 0.8) 63%, transparent 64%);
    }

    .bars {
      display: flex;
      align-items: end;
      gap: 8px;
      height: 72px;
      margin-top: 8px;
    }

    .bars span {
      flex: 1;
      min-width: 8px;
      background: linear-gradient(180deg, #ddaa52, #b0812c);
      border-radius: 2px 2px 0 0;
    }

    .ai-row {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-top: 12px;
      color: rgba(255, 255, 255, 0.82);
      font-size: 13px;
      font-weight: 500;
    }

    .ai-dot {
      width: 15px;
      height: 15px;
      display: inline-grid;
      place-items: center;
      border-radius: 50%;
      color: #06111f;
      background: var(--cyan);
      font-size: 10px;
      font-weight: 600;
    }

    .practitioner-box {
      position: absolute;
      right: 20px;
      bottom: 46px;
      z-index: 4;
      width: 350px;
      border: 1px solid var(--cyan);
      border-radius: 8px;
      padding: 25px 31px;
      background: rgba(7, 25, 45, 0.78);
      font-size: 25px;
      line-height: 1.2;
      font-weight: 600;
    }

    .practitioner-box span { color: var(--cyan); }

    .strip {
      display: grid;
      grid-template-columns: 120px 170px 160px 180px 1px repeat(3, 1fr);
      gap: 25px;
      align-items: center;
      padding: 24px 48px 28px;
      border-bottom: 1px solid #dbe2ed;
      background: var(--paper);
    }

    .small-label {
      color: var(--gold);
      font-weight: 600;
      letter-spacing: 0.02em;
      text-transform: uppercase;
      font-size: 15px;
    }

    .logo {
      color: var(--gold);
      font-weight: 500;
      font-size: 33px;
      line-height: 0.92;
      letter-spacing: -0.05em;
    }

    .logo small {
      display: block;
      margin-top: 5px;
      color: var(--ink);
      font-size: 11px;
      line-height: 1.05;
      letter-spacing: 0;
      font-weight: 600;
    }

    .divider {
      width: 1px;
      height: 72px;
      background: #c9d2df;
    }

    .stat strong {
      display: block;
      color: var(--gold);
      font-size: 34px;
      line-height: 1;
      font-weight: 500;
    }

    .stat span {
      display: block;
      margin-top: 8px;
      color: var(--text);
      font-size: 13px;
      line-height: 1.15;
      font-weight: 600;
    }

    section {
      padding: 18px 26px 0;
    }

    .panel {
      border: 1px solid #d7dfea;
      border-radius: 10px;
      background: linear-gradient(135deg, var(--paper), #f2efe9);
      box-shadow: 0 8px 24px rgba(10, 33, 69, 0.06);
    }

    .section-title {
      padding: 17px 24px 13px;
      border-bottom: 1px solid #cfd8e6;
      color: var(--gold);
      font-size: 18px;
      line-height: 1;
      font-weight: 500;
      letter-spacing: 0.02em;
      text-transform: uppercase;
    }

    .audience-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      padding: 18px 28px 21px;
    }

    .audience-item {
      display: grid;
      grid-template-columns: 82px 1fr;
      gap: 18px;
      align-items: center;
      padding: 0 28px;
      border-right: 1px solid #c8d2e0;
    }

    .audience-item:first-child { padding-left: 0; }
    .audience-item:last-child { border-right: 0; padding-right: 0; }

    .round-icon {
      width: 76px;
      height: 76px;
      display: grid;
      place-items: center;
      border: 1px solid #c7d4e5;
      border-radius: 50%;
      background: linear-gradient(135deg, #fffdf9, #f2efe9);
      color: var(--gold);
      font-size: 34px;
      font-weight: 500;
    }

    .audience-item h3,
    .mini-card h3 {
      margin: 0 0 8px;
      color: var(--ink);
      font-size: 18px;
      line-height: 1.06;
      font-weight: 500;
    }

    .audience-item p,
    .mini-card p {
      margin: 0;
      color: var(--text);
      font-size: 15px;
      line-height: 1.28;
      font-weight: 400;
    }

    .comparison {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 14px;
      padding: 18px 26px 0;
    }

    .problem .section-title { color: #4f5d72; }
    .solution .section-title { color: var(--gold); }

    .list {
      display: grid;
      gap: 10px;
      padding: 20px 24px 16px;
      margin: 0;
      list-style: none;
    }

    .list li {
      display: grid;
      grid-template-columns: 22px 1fr;
      gap: 9px;
      align-items: start;
      color: var(--text);
      font-size: 15px;
      line-height: 1.2;
      font-weight: 500;
    }

    .mark {
      width: 18px;
      height: 18px;
      display: inline-grid;
      place-items: center;
      border-radius: 50%;
      color: #ffffff;
      font-size: 12px;
      font-weight: 500;
      margin-top: 1px;
    }

    .x { background: #647083; }
    .tick { background: var(--gold); }

    .takeaway {
      display: inline-block;
      margin: 0 0 18px 24px;
      padding: 11px 18px;
      border-radius: 7px;
      color: #ffffff;
      background: #556070;
      font-size: 14px;
      font-weight: 500;
    }

    .solution .takeaway {
      color: var(--navy);
      background: linear-gradient(135deg, #ddaa52, #c9973f);
    }

    .center-title {
      margin: 27px 0 16px;
      text-align: center;
      color: var(--gold);
      font-size: 26px;
      line-height: 1;
      font-weight: 500;
      letter-spacing: 0.02em;
      text-transform: uppercase;
    }

    .different-leads {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
      padding: 0 26px;
    }

    .mini-card {
      min-height: 245px;
      border: 2px solid #bfd0e8;
      border-radius: 9px;
      padding: 24px 22px 22px;
      text-align: center;
      background: linear-gradient(180deg, #fffdf9, #f7f6f2);
    }

    .mini-card.dark-top {
      padding-top: 0;
      overflow: visible;
    }

    .mini-head {
      margin: 0 -14px 16px;
      padding: 9px 10px;
      color: #ffffff;
      background: var(--navy);
      font-size: 12px;
      font-weight: 500;
      text-transform: uppercase;
    }

    .mini-icon {
      display: grid;
      place-items: center;
      height: 58px;
      color: var(--gold);
      font-size: 38px;
      font-weight: 500;
    }

    .sim {
      height: 82px;
      margin: 14px 0 15px;
      border-radius: 5px;
      border: 1px solid #aebbd0;
      background:
        linear-gradient(90deg, transparent 0 12%, rgba(0, 58, 148, 0.12) 12% 13%, transparent 13% 100%),
        linear-gradient(180deg, #ffffff 0 20%, #eef3fb 20% 100%);
      position: relative;
    }

    .sim-preview {
      display: block;
      width: 100%;
      padding: 0;
      cursor: zoom-in;
      overflow: hidden;
      appearance: none;
      box-shadow: 0 10px 24px rgba(7, 25, 45, 0.1);
      transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
    }

    .sim-preview img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      object-position: top left;
    }

    .sim-preview:hover,
    .sim-preview:focus-visible {
      z-index: 20;
      border-color: var(--gold);
      box-shadow: 0 24px 58px rgba(7, 25, 45, 0.28);
      overflow: visible;
      transform: translateY(-2px);
      outline: none;
    }

    .sim-preview:hover img,
    .sim-preview:focus-visible img {
      position: absolute;
      left: 50%;
      top: 50%;
      width: min(760px, 72vw);
      height: auto;
      max-height: 72vh;
      object-fit: contain;
      border: 1px solid #d8dee8;
      border-radius: 8px;
      background: #ffffff;
      box-shadow: 0 30px 80px rgba(7, 25, 45, 0.36);
      transform: translate(-50%, -50%);
    }

    .simulator-showcase {
      display: grid;
      gap: 18px;
      padding: 18px 26px 0;
    }

    .simulator-intro {
      margin: 20px 26px 0;
      border-left: 4px solid var(--gold);
      padding: 20px 24px;
      background: rgba(255, 255, 255, 0.62);
    }

    .simulator-intro h3 {
      margin: 0 0 10px;
      color: var(--navy);
      font-family: var(--serif);
      font-size: 28px;
      line-height: 1.12;
      font-weight: 600;
    }

    .simulator-intro p {
      max-width: 950px;
      margin: 0;
      color: var(--text);
      font-size: 17px;
      line-height: 1.48;
    }

    .simulator-intro p + p {
      margin-top: 10px;
    }

    .simulator-row {
      display: grid;
      grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
      gap: 24px;
      align-items: center;
      border: 2px solid #bfd0e8;
      border-radius: 10px;
      padding: 20px;
      background: linear-gradient(180deg, #fffdf9, #f7f6f2);
    }

    .simulator-shot {
      position: relative;
      display: block;
      width: 100%;
      aspect-ratio: 16 / 9;
      margin: 0;
      padding: 0;
      border: 1px solid #aebbd0;
      border-radius: 8px;
      background: #ffffff;
      cursor: zoom-in;
      overflow: hidden;
      appearance: none;
      box-shadow: 0 12px 26px rgba(7, 25, 45, 0.12);
    }

    .simulator-shot img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      object-position: top left;
    }

    .simulator-copy .mini-head {
      display: inline-flex;
      margin: 0 0 14px;
      border-radius: 5px;
      padding: 8px 10px;
    }

    .simulator-copy h3 {
      margin: 0 0 12px;
      color: var(--navy);
      font-size: 24px;
      line-height: 1.12;
    }

    .simulator-copy p {
      margin: 0 0 16px;
      color: var(--text);
      font-size: 16px;
      line-height: 1.5;
    }

    .simulator-copy ul {
      display: grid;
      gap: 10px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .simulator-copy li {
      position: relative;
      padding-left: 18px;
      color: var(--text);
      font-size: 15px;
      line-height: 1.35;
      font-weight: 500;
    }

    .simulator-copy li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.55em;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--gold);
    }

    .sim.network {
      background: radial-gradient(circle at 30% 45%, #ffd764 0 5px, transparent 6px),
        radial-gradient(circle at 66% 30%, #c9973f 0 5px, transparent 6px),
        radial-gradient(circle at 50% 70%, #2a70ff 0 5px, transparent 6px),
        linear-gradient(135deg, var(--navy), var(--navy-2));
    }

    .reserve-center {
      text-align: center;
      padding: 22px 0 19px;
    }

    .reserve-center .btn {
      min-width: 305px;
      min-height: 48px;
      font-size: 20px;
      border-radius: 6px;
    }

    .check-list {
      display: grid;
      gap: 15px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .check-list li {
      display: grid;
      grid-template-columns: 22px 1fr;
      gap: 10px;
      color: var(--text);
      font-size: 15px;
      line-height: 1.3;
      font-weight: 500;
    }

    .three-grid {
      display: grid;
      grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.48fr);
      gap: 12px;
      padding: 18px 26px 0;
    }

    .details {
      padding: 14px 24px 18px;
    }

    .detail-row {
      display: grid;
      grid-template-columns: 34px 125px 1fr;
      gap: 8px;
      align-items: start;
      margin-bottom: 14px;
      color: var(--text);
      font-size: 14px;
      font-weight: 500;
    }

    .three-grid .panel:nth-child(2) .detail-row {
      grid-template-columns: 34px 180px 1fr;
      font-size: 15px;
      line-height: 1.38;
    }

    .detail-row .tiny-icon {
      width: 25px;
      height: 25px;
      display: grid;
      place-items: center;
      border-radius: 5px;
      color: var(--gold);
      background: rgba(201, 151, 63, 0.12);
      font-weight: 500;
    }

    .faq-wrap {
      padding: 18px 26px 0;
    }

    .faq-title {
      margin: 0 0 10px;
      text-align: center;
      color: var(--ink);
      font-size: 22px;
      font-weight: 500;
      text-transform: uppercase;
    }

    .faq-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    details {
      border-bottom: 1px solid #cdd7e5;
      padding: 17px 26px;
      background: var(--paper);
    }

    details:last-child { border-bottom: 0; }

    summary {
      cursor: pointer;
      color: var(--ink);
      font-size: 16px;
      font-weight: 600;
    }

    details p {
      margin: 12px 0 0;
      color: #536173;
      font-size: 14px;
      font-weight: 400;
    }

    .registration-wrap {
      padding: 24px 26px 0;
    }

    .registration-panel {
      border: 1px solid var(--line);
      border-radius: 12px;
      background: linear-gradient(135deg, var(--navy), var(--navy-2));
      color: #f2efe9;
      padding: 34px;
      box-shadow: var(--shadow);
    }

    .registration-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.74fr);
      gap: 34px;
      align-items: start;
    }

    .registration-copy h2 {
      margin: 0 0 12px;
      font-family: var(--serif);
      font-size: clamp(30px, 3.2vw, 42px);
      line-height: 1.12;
      font-weight: 500;
      letter-spacing: -0.02em;
    }

    .registration-copy p {
      margin: 0;
      max-width: 620px;
      color: rgba(242, 239, 233, 0.76);
      font-size: 16px;
      line-height: 1.6;
    }

    .registration-kicker {
      margin-bottom: 12px;
      color: var(--gold);
      font-size: 12.5px;
      font-weight: 600;
      letter-spacing: 0.13em;
      text-transform: uppercase;
    }

    .timing-options {
      display: grid;
      gap: 12px;
      margin: 24px 0;
      max-width: 560px;
    }

    .timing-option {
      display: grid;
      grid-template-columns: 22px 1fr;
      gap: 12px;
      align-items: start;
      padding: 16px 18px;
      border: 1px solid rgba(201, 151, 63, 0.4);
      border-radius: 9px;
      background: rgba(242, 239, 233, 0.06);
      cursor: pointer;
    }

    .timing-option input {
      margin-top: 4px;
      accent-color: var(--gold);
    }

    .timing-option strong {
      display: block;
      color: #f2efe9;
      font-size: 16px;
      font-weight: 600;
    }

    .timing-option span {
      display: block;
      margin-top: 3px;
      color: rgba(242, 239, 233, 0.66);
      font-size: 13.5px;
    }

    .registration-reasons {
      display: grid;
      gap: 10px;
      margin: 0;
      padding: 0;
      list-style: none;
      max-width: 620px;
    }

    .registration-reasons li {
      display: grid;
      grid-template-columns: 22px 1fr;
      gap: 10px;
      color: rgba(242, 239, 233, 0.86);
      font-size: 15px;
      line-height: 1.35;
    }

    .registration-form {
      border: 1px solid rgba(242, 239, 233, 0.12);
      border-radius: 12px;
      padding: 26px;
      background: rgba(255, 253, 249, 0.96);
      color: var(--ink);
    }

    .registration-form h3 {
      margin: 0 0 18px;
      font-family: var(--serif);
      font-size: 28px;
      line-height: 1.15;
      font-weight: 500;
    }

    .course-price {
      margin: 0 0 20px;
      padding: 16px 18px;
      border: 1px solid rgba(201, 151, 63, 0.32);
      border-radius: 8px;
      background: rgba(201, 151, 63, 0.1);
    }

    .course-price-label {
      margin-bottom: 4px;
      color: rgba(22, 26, 34, 0.62);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .course-price-value {
      display: flex;
      align-items: flex-start;
      flex-direction: column;
      gap: 4px;
      flex-wrap: wrap;
      color: var(--ink);
      font-family: var(--serif);
      font-size: 32px;
      line-height: 1.1;
      font-weight: 500;
    }

    .course-price-old {
      color: rgba(22, 26, 34, 0.46);
      font-family: var(--sans);
      font-size: 21px;
      font-weight: 700;
      text-decoration: line-through;
      text-decoration-thickness: 2px;
    }

    .course-price-current {
      color: var(--ink);
      font-size: 36px;
      line-height: 1;
    }

    .course-price-current-line {
      display: flex;
      align-items: baseline;
      gap: 8px;
      flex-wrap: wrap;
    }

    .course-price-tax {
      color: rgba(22, 26, 34, 0.62);
      font-family: var(--sans);
      font-size: 15px;
      font-weight: 600;
    }

    .course-price-note {
      margin-top: 8px;
      color: rgba(22, 26, 34, 0.72);
      font-size: 14px;
      font-weight: 700;
    }

    .form-field {
      display: grid;
      gap: 7px;
      margin-bottom: 15px;
    }

    .form-field label {
      font-size: 13px;
      font-weight: 600;
      color: rgba(22, 26, 34, 0.72);
    }

    .form-field input {
      width: 100%;
      min-height: 46px;
      border: 1px solid rgba(22, 26, 34, 0.18);
      border-radius: 6px;
      padding: 11px 13px;
      background: #ffffff;
      color: var(--ink);
      font: inherit;
    }

    .form-field input:focus {
      outline: 2px solid rgba(201, 151, 63, 0.32);
      border-color: var(--gold);
    }

    .course-query-note {
      margin: 0 0 16px;
      color: rgba(22, 26, 34, 0.66);
      font-size: 13.5px;
      line-height: 1.5;
    }

    .registration-copy .course-query-note {
      max-width: 620px;
      margin: 22px auto 0;
      color: rgba(242, 239, 233, 0.78);
      text-align: center;
    }

    .course-query-note a {
      color: var(--gold);
      font-weight: 600;
      text-decoration: none;
      border-bottom: 1px solid rgba(201, 151, 63, 0.36);
    }

    .payment-button {
      width: 100%;
      min-height: 52px;
      margin-top: 6px;
      border: 0;
      border-radius: 6px;
      background: linear-gradient(135deg, #ddaa52, #c9973f);
      color: var(--navy);
      font: inherit;
      font-size: 17px;
      font-weight: 600;
      cursor: pointer;
    }

    .form-note {
      margin: 12px 0 0;
      color: rgba(22, 26, 34, 0.56);
      font-size: 12.5px;
      line-height: 1.45;
    }

    .site-footer {
      background: var(--navy);
      color: #f2efe9;
      padding: 72px 28px 40px;
    }

    .site-footer-inner {
      max-width: 1180px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 44px;
      align-items: start;
    }

    .site-footer-brand {
      font-family: var(--serif);
      font-size: 26px;
      font-weight: 500;
      margin-bottom: 10px;
    }

    .site-footer p {
      margin: 0;
      max-width: 340px;
      color: rgba(242, 239, 233, 0.62);
      font-size: 14.5px;
      line-height: 1.6;
    }

    .site-footer-label {
      margin-bottom: 18px;
      color: rgba(242, 239, 233, 0.45);
      font-size: 12px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .site-footer-links {
      display: flex;
      flex-direction: column;
      gap: 11px;
    }

    .site-footer-links a,
    .site-footer-links span {
      color: rgba(242, 239, 233, 0.8);
      text-decoration: none;
      font-size: 14.5px;
    }

    .site-footer .linkedin-link {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      margin-top: 22px;
      color: var(--gold);
      text-decoration: none;
      border-bottom: 1px solid rgba(201, 151, 63, 0.4);
      padding-bottom: 2px;
      font-size: 14px;
    }

    .site-copyright {
      max-width: 1180px;
      margin: 56px auto 0;
      padding-top: 22px;
      border-top: 1px solid rgba(242, 239, 233, 0.1);
      color: rgba(242, 239, 233, 0.42);
      font-size: 13px;
    }

    @media (max-width: 1120px) {
      .hero-inner,
      .three-grid,
      .registration-grid,
      .comparison,
      .faq-grid {
        grid-template-columns: 1fr;
      }
      .strip { grid-template-columns: repeat(3, 1fr); }
      .divider { display: none; }
      .different-leads,
      .simulator-row {
        grid-template-columns: 1fr;
      }
      .visual { min-height: auto; }
      .hero-instructor {
        justify-content: flex-start;
        max-width: none;
        margin-left: 0;
      }
    }

    @media (max-width: 760px) {
      .hero { padding: 24px 22px 30px; }
      .hero-facts,
      .audience-grid,
      .different-leads,
      .strip {
        grid-template-columns: 1fr;
      }

      .audience-item {
        padding: 18px 0;
        border-right: 0;
        border-bottom: 1px solid #c8d2e0;
      }

      .audience-item:last-child { border-bottom: 0; }
      .portrait, .dash, .practitioner-box {
        position: relative;
        inset: auto;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        width: 100%;
        margin-top: 16px;
      }

      .visual { min-height: auto; }
      .hero-instructor {
        align-items: center;
        padding: 18px;
      }

      .hero-instructor-photo {
        width: 82px;
        height: 82px;
        flex-basis: 82px;
      }

      .hero-instructor h2 {
        font-size: 25px;
      }

      .hero-instructor p,
      .hero-instructor li {
        font-size: 13px;
      }

      .hero-actions { gap: 12px; }
      .btn, .batch-box { width: 100%; min-width: 0; }
      section, .comparison, .different-leads, .simulator-showcase, .three-grid, .registration-wrap, .faq-wrap { padding-left: 16px; padding-right: 16px; }
      .simulator-intro { margin-left: 16px; margin-right: 16px; }
      .registration-panel { padding: 24px 18px; }
      .slots { flex-direction: column; }
    }
