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

  html { scroll-behavior: smooth; }
  body { font-family: var(--font-body); background: var(--bg-primary); color: var(--text); min-height: 100vh; }

  nav {
    position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h);
    background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 48px; z-index: 100;
  }

  .nav-logo { font-family: var(--font-heading); font-size: 20px; letter-spacing: 0.04em; color: var(--accent-secondary); text-decoration: none; }
  .nav-logo span { color: var(--accent-secondary);
    opacity: 0.82; font-style: italic; }
  .nav-back { font-size: 13px; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-mid); text-decoration: none; display: flex; align-items: center; gap: 8px; transition: color 0.2s; }
  .nav-back:hover { color: var(--blue); }
  .nav-back::before { content: '←'; }

  main { padding-top: calc(var(--nav-h) + 56px); padding-bottom: 80px; max-width: 780px; margin: 0 auto; padding-left: 32px; padding-right: 32px; }

  /* HEADER */
  .page-header { text-align: center; margin-bottom: 44px; opacity: 0; animation: fadeUp 0.6s ease forwards; }

  .page-label { font-size: 11px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--heading-accent); margin-bottom: 16px; display: flex; align-items: center; justify-content: center; gap: 10px; }
  .page-label::before, .page-label::after { content: ''; display: block; width: 28px; height: 1px; background: var(--heading-accent); }

  .page-title { font-family: var(--font-heading); font-size: clamp(34px, 5vw, 50px); line-height: 1.1; color: var(--heading); margin-bottom: 14px; }
  .page-title em { font-style: italic; color: var(--heading-accent); }
  .page-sub { font-size: 15px; font-weight: 300; color: var(--text-mid); max-width: 460px; margin: 0 auto; line-height: 1.7; }

  /* STEPS */
  .steps { display: flex; align-items: center; justify-content: center; margin-bottom: 40px; opacity: 0; animation: fadeUp 0.6s 0.1s ease forwards; }
  .step { display: flex; align-items: center; gap: 10px; }
  .step-num { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 500; border: 1.5px solid var(--ice-deep); color: var(--text-soft); background: var(--white); transition: all 0.3s; }
  .step.active .step-num { background: var(--blue); border-color: var(--blue); color: var(--white); }
  .step.done .step-num { background: var(--green-bg); border-color: var(--green); color: var(--green); }
  .step-label { font-size: 12px; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-soft); transition: color 0.3s; }
  .step.active .step-label { color: var(--blue); }
  .step.done .step-label { color: var(--green); }
  .step-connector { width: 40px; height: 1px; background: var(--ice-deep); margin: 0 6px; }

  /* SESSION HEADER CARD — dark */
  .session-header-card {
    background: var(--blue-deep);
    border-radius: 12px;
    padding: 32px 36px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.6s 0.15s ease forwards;
    position: relative;
    overflow: hidden;
  }

  /* Subtle decorative ring */
  .session-header-card::after {
    content: '';
    position: absolute;
    right: -50px; top: -50px;
    width: 180px; height: 180px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.07);
    pointer-events: none;
  }

  .session-header-left { flex: 1; }

  .session-header-brand {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 10px;
  }

  .session-header-title {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 8px;
  }

  .session-header-title em { font-style: italic; color: var(--ice-deep); }

  .session-header-sub {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255,255,255,0.45);
    margin-bottom: 20px;
    line-height: 1.5;
  }

  .session-header-slots {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
  }

  .slot-pill {
    font-family: var(--font-heading);
    font-size: 15px;
    color: var(--white);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 6px;
    padding: 6px 14px;
    letter-spacing: 0.02em;
  }

  .slot-pill-note {
    font-size: 11px;
    font-weight: 300;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.06em;
    margin-left: 4px;
  }

  .session-header-price {
    text-align: right;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
  }

  .session-price-num {
    font-family: var(--font-heading);
    font-size: 52px;
    color: var(--white);
    line-height: 1;
  }

  .session-price-num sup {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 300;
    vertical-align: super;
  }

  .session-price-label {
    font-size: 11px;
    font-weight: 300;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 4px;
  }

  /* CALENDLY */
  .calendly-wrap { background: var(--white); border: 1px solid var(--ice-deep); border-radius: 12px; overflow: hidden; margin-bottom: 20px; opacity: 0; animation: fadeUp 0.6s 0.2s ease forwards; }
  .calendly-wrap-header { padding: 16px 24px; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; }
  .calendly-wrap-title { font-size: 12px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-mid); }
  .calendly-wrap-note { font-size: 12px; font-weight: 300; color: var(--text-soft); }
  .calendly-wrap-fallback { padding: 14px 24px; border-top: 1px solid var(--line); font-size: 12px; font-weight: 300; color: var(--text-soft); text-align: center; }
  .calendly-wrap-fallback a { color: var(--blue); text-decoration: none; border-bottom: 1px solid currentColor; }
  .calendly-wrap-fallback a:hover { color: var(--blue-dark); }

  .intro-booking-banner {
    display: none;
    background: var(--green-bg);
    border: 1px solid rgba(26, 122, 74, 0.2);
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 28px;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.65;
    color: var(--blue-dark);
  }

  .intro-booking-banner strong { font-weight: 500; color: var(--green); }

  .booking-alt {
    margin-top: 36px;
    padding: 24px 26px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 12px;
    text-align: center;
  }

  .booking-alt p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.65;
    color: var(--text-mid);
    margin-bottom: 14px;
  }

  .booking-alt a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--blue);
    text-decoration: none;
  }

  .booking-alt a:hover { color: var(--blue-dark); }
  .calendly-inline-widget { min-width: 100% !important; height: 700px !important; }

  /* PAY SECTION */
  #paySection { display: none; opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease, transform 0.5s ease; margin-bottom: 20px; }
  #paySection.visible { display: block; opacity: 1; transform: none; }

  .pay-card { background: var(--blue-deep); border-radius: 12px; padding: 26px 30px; }
  .pay-card-label { font-size: 10px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 7px; }
  .pay-card-session { font-family: var(--font-heading); font-size: 20px; color: var(--white); margin-bottom: 4px; }
  .pay-card-details { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.5); }

  /* Payment option buttons */
  .btn-pay-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
    cursor: pointer;
  }

  .btn-pay-option:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
  }

  .pay-option-icon {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .pay-option-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 2px;
  }

  .pay-option-sub {
    font-size: 11px;
    font-weight: 300;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.04em;
  }

  .btn-pay-paypal { border-color: rgba(255,255,255,0.12); }

  /* HOW IT WORKS */
  .how-it-works { background: var(--white); border: 1px solid var(--ice-deep); border-radius: 12px; padding: 26px 30px; margin-bottom: 20px; opacity: 0; animation: fadeUp 0.6s 0.25s ease forwards; }
  .how-title { font-size: 11px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-soft); margin-bottom: 20px; }
  .how-step { display: flex; gap: 16px; padding-bottom: 18px; position: relative; }
  .how-step:last-child { padding-bottom: 0; }
  .how-step-line { position: absolute; left: 14px; top: 28px; bottom: 0; width: 1px; background: var(--ice-deep); }
  .how-step:last-child .how-step-line { display: none; }
  .how-step-num { width: 28px; height: 28px; border-radius: 50%; background: var(--ice-mid); border: 1px solid var(--ice-deep); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 500; color: var(--blue); flex-shrink: 0; position: relative; z-index: 1; }
  .how-step-name { font-size: 14px; font-weight: 500; color: var(--text); margin-bottom: 2px; padding-top: 4px; }
  .how-step-desc { font-size: 13px; font-weight: 300; color: var(--text-soft); line-height: 1.6; }

  /* Mobile appointments note (inside How it works) */
  .how-mobile-note {
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
  }
  .how-mobile-note-text { font-size: 13px; font-weight: 300; color: var(--text-mid); line-height: 1.55; }
  .how-mobile-note-text strong { font-weight: 500; color: var(--text); }
  .how-mobile-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 16px;
    background: var(--blue-deep);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--white);
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s;
  }
  .how-mobile-btn:hover { opacity: 0.9; }

  /* TRUST ROW */
  .trust-row { display: flex; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; opacity: 0; animation: fadeUp 0.6s 0.3s ease forwards; }
  .trust-item { flex: 1; background: var(--white); padding: 18px 12px; text-align: center; }
  .trust-item--link {
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s;
  }
  .trust-item--link:hover { background: var(--ice); }
  .trust-icon { margin-bottom: 7px; }
  .trust-icon--google { display: flex; justify-content: center; }
  .trust-label { font-size: 12px; font-weight: 400; color: var(--text-mid); line-height: 1.4; }

  footer { text-align: center; padding: 32px 24px 20px; font-size: 12px; color: var(--text-soft); border-top: 1px solid var(--line); margin-top: 56px; max-width: 780px; margin-left: auto; margin-right: auto; }
  footer a { color: var(--blue); text-decoration: none; }
  .footer-note { margin-top: 10px; font-size: 11px; opacity: 0.7; }

  @keyframes fadeUp { to { opacity: 1; transform: none; } }

  @media (max-width: 600px) {
    nav { padding: 0 20px; }
    main { padding: calc(var(--nav-h) + 32px) 16px 60px; }
    .step-label { display: none; }
    .step-connector { width: 20px; }
    .session-header-card { flex-direction: column; padding: 24px 22px; }
    .session-header-price { text-align: left; }
    .session-price-num { font-size: 40px; }
    .slot-pill-note { display: none; }
    .pay-card { padding: 20px 18px; }
    .pay-card > div[style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }
    .btn-pay { width: 100%; justify-content: center; }
    .trust-item { padding: 14px 6px; }
    .calendly-inline-widget { height: 580px !important; }
    .calendly-wrap-header { flex-direction: column; align-items: flex-start; gap: 4px; }
  }
