    @import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap');

    :root {
      --btn-grad-start: #1ea7f2;
      --btn-grad-end: #f29a2e;
      --primary: #1ea7f2;
      --secondary: #edf2f7;
      --accent: #f29a2e;
      --text: #2e3239;
      --background: #f7f9fc;
      --surface-hero: #f7f9fc;
      --surface-chaos: #f2f5fa;
      --surface-process: rgba(247, 249, 252, 0.96);
      --surface-booking: rgba(30, 167, 242, 0.08);
      --surface-features: rgba(242, 154, 46, 0.1);
      --surface-routine: rgba(30, 167, 242, 0.07);
      --surface-booking-intel: rgba(237, 242, 247, 0.98);
      --surface-ops: rgba(247, 249, 252, 0.98);
      --surface-cta: rgba(242, 154, 46, 0.12);
      --shadow: 0 20px 40px rgba(46, 50, 57, 0.08);
      --shadow-soft: 0 4px 20px rgba(46, 50, 57, 0.05);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--text);
    }

    html { scroll-behavior: smooth; }

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

    body {
      background:
        radial-gradient(circle at top left, rgba(30, 167, 242, 0.1), transparent 30%),
        radial-gradient(circle at top right, rgba(242, 154, 46, 0.12), transparent 26%),
        linear-gradient(180deg, var(--background), var(--background));
      line-height: 1.6;
      overflow-x: hidden;
    }

    h1, h2, h3, h4, h5 {
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 1rem;
      letter-spacing: -0.03em;
    }

    h1 { font-size: clamp(2.8rem, 5vw, 4.6rem); }
    h2 { font-size: clamp(2.1rem, 3.4vw, 3rem); }
    h3 { font-size: clamp(1.45rem, 2vw, 1.75rem); }
    h4 { font-size: 1.08rem; }
    h5 { font-size: 0.95rem; }
    p { font-size: 1rem; opacity: 0.9; margin-bottom: 1rem; }

    .highlight { color: var(--primary); }
    .text-accent { color: var(--accent); }
    .text-muted { opacity: 0.6; font-size: 0.9rem; }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    section { padding: 5rem 0; }
    .bg-secondary { background-color: var(--secondary); }
    .bg-white { background-color: var(--background); }
    .text-center { text-align: center; }
    .mx-auto { margin-left: auto; margin-right: auto; }

    .section-heading {
      max-width: 760px;
      margin: 0 auto 3rem;
      text-align: center;
    }

    .section-heading h2 {
      font-size: clamp(1.62rem, 3vw, 2.52rem);
      line-height: 1.08;
      letter-spacing: -0.04em;
      color: var(--text);
      margin-bottom: 1rem;
      font-weight: 800;
    }

    .section-heading h2 .highlight {
      color: var(--primary);
    }

    .section-heading p {
      max-width: 720px;
      margin-inline: auto;
      margin-bottom: 0;
      font-size: 1.05rem;
      line-height: 1.55;
      color: var(--text);
      opacity: 0.88;
    }

    .section-heading .pill {
      padding: 0.62rem 1.7rem;
      border-radius: 999px;
      background: rgba(245, 241, 235, 0.9);
      border: 1px solid rgba(127, 175, 155, 0.25);
      color: var(--primary);
      font-size: 0.83rem;
      letter-spacing: 0.1em;
    }

    .section-chaos { background: var(--surface-chaos); }
    .section-process { background: var(--surface-process); }
    .section-booking { background: var(--surface-booking); }
    .section-features { background: var(--surface-features); }
    .section-routine { background: var(--surface-routine); }
    .section-booking-intel { background: var(--surface-booking-intel); }
    .section-ops { background: var(--surface-ops); }
    .section-cta { background: var(--surface-cta); }

    nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      padding: 0.85rem 1.15rem 0.85rem 1.35rem;
      background-color: rgba(250, 250, 248, 0.94);
      backdrop-filter: blur(14px);
      position: sticky;
      top: 1rem;
      z-index: 1000;
      box-shadow: 0 10px 30px rgba(46, 46, 46, 0.05);
      border: 1px solid rgba(127, 175, 155, 0.14);
      border-radius: 999px;
      width: min(1200px, calc(100% - 2rem));
      margin: 1rem auto 0;
    }

    .nav-brand {
      display: flex;
      align-items: center;
      gap: 14px;
      min-width: 0;
      text-decoration: none;
    }

    .nav-brand img {
      height: 42px;
      width: 42px;
      display: block;
      flex: 0 0 auto;
    }

    .nav-brand-text {
      display: grid;
      gap: 2px;
    }

    .nav-brand-text strong {
      font-size: 1.05rem;
      line-height: 1.05;
    }

    .nav-brand-text span {
      font-size: 0.9rem;
      color: rgba(46, 46, 46, 0.7);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      flex-wrap: wrap;
      justify-content: flex-end;
      margin-left: auto;
    }

    .nav-links a {
      text-decoration: none;
      font-size: 1rem;
      color: rgba(46, 46, 46, 0.78);
      font-weight: 500;
    }

    .nav-links a:hover {
      color: var(--primary);
    }

    .nav-cta {
      min-width: 152px;
      min-height: 54px;
      border-radius: 16px;
      padding: 0 1.2rem;
      background: linear-gradient(90deg, var(--btn-grad-start) 0%, var(--btn-grad-end) 100%);
      color: #ffffff;
      border: 0;
      box-shadow: 0 10px 22px rgba(30, 167, 242, 0.24);
      line-height: 1;
      text-decoration: none;
    }

    .nav-cta:hover {
      filter: brightness(0.96);
      color: #ffffff;
    }

    .nav-links .nav-cta,
    .nav-links .nav-cta:visited,
    .nav-links .nav-cta:hover {
      color: #ffffff;
    }

    .nav-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border-radius: 12px;
      border: 1px solid rgba(127, 175, 155, 0.28);
      background: var(--background);
      align-items: center;
      justify-content: center;
      cursor: pointer;
      padding: 0;
    }

    .nav-toggle span {
      display: block;
      width: 18px;
      height: 2px;
      background: var(--text);
      border-radius: 2px;
      margin: 2px 0;
      transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.82rem 1.55rem;
      border-radius: 16px;
      font-weight: 700;
      text-decoration: none;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
      cursor: pointer;
      border: 1px solid transparent;
      font-size: 0.98rem;
    }

    .btn:hover { transform: translateY(-1px); }
    .btn-primary { background-color: var(--primary); color: var(--background); box-shadow: 0 12px 24px rgba(127, 175, 155, 0.22); }
    .btn-primary:hover { background-color: var(--text); color: var(--background); }
    .btn-dark { background-color: var(--text); color: var(--background); }
    .btn-dark:hover { background-color: var(--primary); color: var(--background); }
    .btn-outline { border-color: rgba(127, 175, 155, 0.22); background: transparent; }
    .btn-outline:hover { border-color: var(--primary); color: var(--primary); }

    .btn-gradient {
      background: linear-gradient(90deg, var(--btn-grad-start) 0%, var(--btn-grad-end) 100%) !important;
      color: #ffffff !important;
      border: 0 !important;
      box-shadow: 0 10px 22px rgba(30, 167, 242, 0.24);
    }

    .btn-gradient:hover {
      filter: brightness(0.96);
      color: #ffffff !important;
    }

    .btn-equal {
      min-height: 56px;
      width: 220px;
      border-radius: 16px;
      font-weight: 800;
      justify-content: center;
      text-align: center;
      padding-left: 1.4rem;
      padding-right: 1.4rem;
    }

    a:focus-visible,
    button:focus-visible {
      outline: 2px solid var(--primary);
      outline-offset: 2px;
      border-radius: 8px;
    }

    .pill {
      display: inline-block;
      padding: 0.42rem 1.05rem;
      background-color: var(--secondary);
      color: var(--primary);
      border-radius: 50px;
      font-size: 0.82rem;
      font-weight: 800;
      margin-bottom: 1.1rem;
      border: 1px solid rgba(127, 175, 155, 0.22);
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .section-num {
      font-size: clamp(3rem, 7vw, 5rem);
      font-weight: 800;
      color: rgba(127, 175, 155, 0.16);
      line-height: 1;
      margin-bottom: -1.5rem;
      position: relative;
      z-index: 0;
    }

    .check-list { list-style: none; margin-bottom: 2rem; }
    .check-list li {
      position: relative;
      padding-left: 1.8rem;
      margin-bottom: 0.8rem;
      font-weight: 500;
    }
    .check-list li::before {
      content: "✓";
      position: absolute;
      left: 0;
      color: var(--primary);
      font-weight: 800;
    }

    .hero-chaos-header {
      padding: 3.75rem 0;
      position: relative;
      overflow: hidden;
      border-bottom: 2px solid var(--primary);
    }

    .hero-chaos-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 30px;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .hero-chaos-content {
      position: relative;
      z-index: 20;
    }

    .hero-chaos-kicker {
      color: var(--accent);
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      font-size: 0.8rem;
      display: block;
      margin-bottom: 0.65rem;
    }

    .hero-chaos-content h1 {
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      font-size: clamp(2rem, 3.8vw, 2.5rem);
      font-weight: 800;
      color: var(--text);
      line-height: 1.15;
      margin-bottom: 20px;
    }

    .hero-chaos-boldline {
      color: var(--text);
      font-weight: 700;
      font-size: 1.06rem;
      line-height: 1.4;
      margin-bottom: 0.55rem;
      opacity: 1;
    }

    .hero-chaos-content p {
      font-size: 1.05rem;
      color: var(--text);
      opacity: 0.9;
      margin-bottom: 28px;
      max-width: 540px;
      line-height: 1.6;
    }

    .hero-chaos-points {
      margin: 0 0 1.4rem 0;
      padding-left: 1.25rem;
      max-width: 760px;
    }

    .hero-chaos-points li {
      margin-bottom: 0.44rem;
      line-height: 1.45;
      font-size: 1.01rem;
      color: var(--text);
    }

    .hero-chaos-points strong {
      font-weight: 800;
      color: var(--text);
    }

    .hero-chaos-visual-mess-container {
      position: relative;
      height: 450px;
      display: flex;
      justify-content: center;
      align-items: center;
      transform: scale(0.9);
    }

    .hero-chaos-main-img {
      width: 100%;
      max-width: 420px;
      height: auto;
      border-radius: 15px;
      z-index: 5;
      position: relative;
    }

    .hero-chaos-item {
      position: absolute;
      z-index: 10;
      box-shadow: 10px 18px 24px rgba(46, 46, 46, 0.18);
      border: 1px solid rgba(46, 46, 46, 0.12);
    }

    .hero-chaos-wa-msg {
      width: 260px;
      background: #25D366;
      color: #ffffff;
      border-radius: 12px;
      padding: 12px;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      font-size: 0.78rem;
      line-height: 1.35;
      font-weight: 600;
      right: -15px;
      top: 10%;
      transform: rotate(4deg);
    }
    .hero-chaos-wa-msg strong { color: #ffffff; }

    .hero-chaos-wa-msg-secondary {
      width: 240px;
      background: #2563eb;
      color: #ffffff;
      border-radius: 12px;
      padding: 12px;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      font-size: 0.78rem;
      line-height: 1.35;
      font-weight: 600;
      right: -8px;
      top: 56%;
      transform: rotate(-3deg);
    }

    .chaos-sticker-row {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 0.35rem;
    }

    .chaos-sticker-icon {
      width: 18px;
      height: 18px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 auto;
    }

    .chaos-sticker-icon svg {
      width: 18px;
      height: 18px;
      fill: #ffffff;
      display: block;
    }

    .hero-chaos-sticky {
      width: 150px;
      height: 150px;
      background: #f59e0b;
      padding: 15px;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: #111827;
      transform: rotate(-10deg);
      top: 0%;
      left: -10px;
      font-size: 0.82rem;
      line-height: 1.25;
      display: flex;
      align-items: center;
      text-align: center;
      font-weight: 700;
    }

    .hero-chaos-paper-scrap {
      width: 150px;
      height: 150px;
      background: #ffffff;
      padding: 15px;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: #111827;
      transform: rotate(-5deg);
      bottom: 5%;
      left: -20px;
      font-size: 0.8rem;
      line-height: 1.25;
      border-radius: 12px;
      font-weight: 700;
    }

    .hero-chaos-excel-box {
      width: 240px;
      background: var(--background);
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      font-size: 0.68rem;
      bottom: 0%;
      right: -10px;
      transform: rotate(2deg);
      border-radius: 4px;
      overflow: hidden;
    }

    .hero-chaos-excel-row {
      border-bottom: 1px solid rgba(46, 46, 46, 0.12);
      padding: 5px 8px;
      display: flex;
      justify-content: space-between;
      gap: 0.5rem;
    }

    .hero-chaos-excel-header {
      background: #107c41;
      color: var(--background);
      font-weight: 700;
    }

    .hero-chaos-excel-header span { color: #ffffff; }
    .hero-chaos-alert { color: var(--accent); font-weight: 700; }

    .excel-header-left {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
    }

    .excel-icon {
      width: 16px;
      height: 16px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .excel-icon svg {
      width: 16px;
      height: 16px;
      fill: #ffffff;
      display: block;
    }

    .hero-chaos-sticker-blue {
      width: 150px;
      height: 150px;
      padding: 10px;
      background: #111827;
      color: #ffffff;
      border-radius: 8px;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      font-size: 0.78rem;
      line-height: 1.22;
      transform: rotate(5deg);
      top: -10%;
      left: 35%;
      font-weight: 700;
      display: flex;
      align-items: center;
      text-align: center;
    }

    .hero-chaos-note-green {
      width: 150px;
      height: 150px;
      padding: 12px;
      background: #93c5fd;
      color: #111827;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      transform: rotate(-3deg);
      top: 35%;
      left: -40px;
      font-size: 0.78rem;
      line-height: 1.28;
      border-radius: 12px;
      font-weight: 700;
      display: flex;
      align-items: center;
      text-align: center;
    }
    .hero-chaos-note-green strong { color: var(--text); }

    .hero-chaos-sticky-pink {
      width: 150px;
      height: 150px;
      background: #fb7185;
      color: #111827;
      padding: 10px;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      transform: rotate(8deg);
      bottom: -5%;
      left: 25%;
      text-align: center;
      display: flex;
      align-items: center;
      font-size: 0.72rem;
      line-height: 1.22;
      border-radius: 12px;
      font-weight: 800;
    }

    .hero-chaos-wa-msg,
    .hero-chaos-wa-msg-secondary,
    .hero-chaos-sticky,
    .hero-chaos-paper-scrap,
    .hero-chaos-sticker-blue,
    .hero-chaos-note-green,
    .hero-chaos-sticky-pink {
      border-radius: 12px;
    }

    .hero-chaos-cta-group {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .hero-chaos-btn-primary {
      background: var(--primary);
      color: var(--background);
      padding: 14px 28px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 700;
      transition: background-color 0.3s ease;
      font-size: 0.95rem;
      border: 1px solid transparent;
    }

    .hero-chaos-btn-secondary {
      background: transparent;
      border: 2px solid var(--text);
      color: var(--text);
      padding: 12px 26px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 700;
      transition: background-color 0.3s ease, color 0.3s ease;
      font-size: 0.95rem;
    }

    .hero-chaos-btn-primary:hover {
      background: var(--text);
      color: var(--background);
    }

    .hero-chaos-btn-secondary:hover {
      background: rgba(46, 46, 46, 0.08);
      color: var(--text);
    }

    .ui-card {
      background: rgba(250, 250, 248, 0.96);
      border-radius: 18px;
      box-shadow: var(--shadow);
      border: 1px solid rgba(46, 46, 46, 0.06);
      overflow: hidden;
    }

    .spa-booking-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 2.5rem; margin-top: 2rem; }
    .gallery-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 0.5rem; margin-bottom: 2rem; border-radius: 14px; overflow: hidden; }
    .gallery-item {
      min-height: 150px;
      background-image: url("img/main1.jpg");
      background-size: cover;
      background-position: center;
      position: relative;
    }

    .gallery-item::after {
      content: "";
      position: absolute;
      inset: 12px;
      border-radius: 10px;
      border: 1px solid rgba(250, 250, 248, 0.45);
      background: linear-gradient(180deg, rgba(46, 46, 46, 0.04), transparent);
    }

    .gallery-main { grid-row: span 2; min-height: 310px; }
    .gallery-main { background-image: url("img/main01.jpg"); }
    .gallery-grid .gallery-item:nth-child(2) { background-image: url("img/indoor.jpg"); }
    .gallery-grid .gallery-item:nth-child(3) { background-image: url("img/shop front.jpg"); }

    .tabs {
      display: flex;
      gap: 1rem;
      border-bottom: 1px solid var(--secondary);
      padding-bottom: 1rem;
      margin-bottom: 1.5rem;
      overflow-x: auto;
      scrollbar-width: none;
    }

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

    .tab {
      font-weight: 700;
      font-size: 0.88rem;
      cursor: pointer;
      padding: 0.45rem 0.9rem;
      border-radius: 999px;
      white-space: nowrap;
      background: transparent;
      border: 1px solid transparent;
    }

    .tab.active { background: var(--text); color: var(--background); }

    .service-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      padding: 1.2rem 1.3rem;
      border: 1px solid rgba(127, 175, 155, 0.14);
      border-radius: 14px;
      margin-bottom: 1rem;
      background: rgba(250, 250, 248, 0.92);
    }

    .service-info h4 { margin-bottom: 0.2rem; font-size: 1.02rem; }
    .service-info p { margin-bottom: 0; font-size: 0.9rem; opacity: 0.72; }

    .team-avatars {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1.5rem;
      margin-bottom: 2.2rem;
    }

    .avatar-wrap {
      text-align: center;
      display: grid;
      justify-items: center;
      gap: 0.25rem;
    }
    .avatar-lg {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(127, 175, 155, 0.24), rgba(200, 169, 106, 0.22));
      background-size: cover;
      background-position: center;
      margin-bottom: 0.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
      color: var(--primary);
      border: 1px solid rgba(127, 175, 155, 0.14);
      box-shadow: var(--shadow-soft);
    }

    .team-avatars .avatar-wrap:nth-child(1) .avatar-lg { background-image: url("img/m1.jpg"); color: transparent; }
    .team-avatars .avatar-wrap:nth-child(2) .avatar-lg { background-image: url("img/m2.jpg"); color: transparent; }
    .team-avatars .avatar-wrap:nth-child(3) .avatar-lg { background-image: url("img/m3.jpg"); color: transparent; }
    .team-avatars .avatar-wrap:nth-child(4) .avatar-lg { background-image: url("img/m4.jpg"); color: transparent; }

    .rating-badge {
      background: var(--text);
      color: var(--background);
      font-size: 0.7rem;
      padding: 0.2rem 0.5rem;
      border-radius: 999px;
      position: relative;
      top: -15px;
      border: 2px solid var(--background);
    }

    .review-card { padding: 1.2rem 0; border-bottom: 1px solid var(--secondary); }
    .review-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.5rem; }
    .avatar-sm {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--secondary);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      color: var(--text);
      opacity: 0.75;
    }

    .booking-widget { padding: 2rem; position: sticky; top: 90px; }
    .stars { color: var(--accent); letter-spacing: 2px; font-size: 1.05rem; }
    .hours-row {
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      font-size: 0.85rem;
      padding: 0.5rem 0;
      border-bottom: 1px solid var(--secondary);
    }
    .hours-row.closed { color: var(--primary); }

    .front-desk-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr;
      gap: 2.25rem;
      margin-top: 2.5rem;
      align-items: stretch;
    }

    .front-desk-grid > .ui-card {
      padding: 2.35rem !important;
      border-radius: 28px;
      box-shadow: 0 18px 40px rgba(46, 46, 46, 0.06);
    }

    .front-desk-grid > .ui-card > h3 {
      font-size: clamp(2rem, 2.6vw, 2.6rem) !important;
      margin-bottom: 1.8rem !important;
      letter-spacing: -0.04em;
    }

    .front-desk-grid > .ui-card > p {
      color: rgba(46, 46, 46, 0.62);
    }

    .professional-card {
      border: 1px solid rgba(127, 175, 155, 0.12);
      border-radius: 18px;
      padding: 1.55rem 1.6rem;
      margin-bottom: 1rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
      background: rgba(250, 250, 248, 0.98);
    }
    .professional-card:hover { border-color: rgba(127, 175, 155, 0.3); box-shadow: 0 12px 28px rgba(46, 46, 46, 0.05); }
    .prof-info { display: flex; gap: 1.15rem; align-items: center; }
    .prof-avatar {
      width: 66px;
      height: 66px;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(127, 175, 155, 0.26), rgba(245, 241, 235, 0.94));
      border: 1px solid rgba(127, 175, 155, 0.14);
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .professional-card .prof-details h4 {
      font-size: 1.08rem !important;
      margin-bottom: 0.18rem;
    }
    .professional-card .prof-details p {
      font-size: 0.93rem;
      line-height: 1.45;
      color: rgba(46, 46, 46, 0.74);
    }
    .prof-details h4 { margin-bottom: 0.2rem; }
    .prof-details p { margin: 0; font-size: 0.9rem; }
    .discount-tag { color: var(--primary); font-weight: 700; font-size: 0.85rem; }
    .professional-card .btn {
      min-width: 128px;
      border-radius: 12px;
    }

    .receipt-card {
      padding: 2.2rem;
      background: rgba(250, 250, 248, 0.98);
      border-radius: 24px;
      box-shadow: 0 16px 34px rgba(46, 46, 46, 0.05);
      border: 1px solid rgba(127, 175, 155, 0.12);
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
    }

    .receipt-img {
      width: 100%;
      height: 150px;
      background-image: linear-gradient(135deg, rgba(127, 175, 155, 0.12), rgba(245, 241, 235, 0.66)), url("img/spashop main1.jpg");
      background-size: cover;
      background-position: center;
      border-radius: 22px;
      margin-bottom: 1.75rem;
    }

    .receipt-line { display: flex; justify-content: space-between; margin-bottom: 0.5rem; font-size: 0.95rem; }

    .floor-item {
      border: 1px solid var(--secondary);
      padding: 1.15rem;
      border-radius: 10px;
      margin-bottom: 1rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: rgba(250, 250, 248, 0.96);
    }

    .status-badge {
      font-size: 0.72rem;
      font-weight: 800;
      padding: 0.3rem 0.75rem;
      border-radius: 999px;
      letter-spacing: 0.5px;
    }
    .status-arrived { background: rgba(127, 175, 155, 0.16); color: var(--primary); }
    .status-waiting { background: rgba(200, 169, 106, 0.14); color: var(--text); }

    .ai-action-box {
      background: rgba(127, 175, 155, 0.08);
      border: 1px dashed var(--primary);
      padding: 1.5rem;
      border-radius: 12px;
      margin-top: 1.5rem;
    }

    .therapist-row {
      display: flex;
      justify-content: center;
      gap: 1.75rem;
      margin: 2rem 0;
      flex-wrap: wrap;
    }

    .therapist-col { text-align: center; }
    .therapist-col .prof-avatar {
      margin: 0 auto 0.5rem;
      border: 3px solid var(--background);
      box-shadow: 0 4px 10px rgba(46, 46, 46, 0.08);
    }

    .timeline-section { position: relative; max-width: 800px; margin: 3rem auto 0; }
    .timeline-line { position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: rgba(46, 46, 46, 0.35); transform: translateX(-50%); z-index: 1; }
    .timeline-item { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: center; margin-bottom: 4rem; width: 100%; }
    .timeline-item:nth-child(even) { flex-direction: row-reverse; }
    .timeline-content { width: 45%; }
    .timeline-point {
      width: 14px;
      height: 14px;
      background: var(--background);
      border: 3px solid var(--primary);
      border-radius: 50%;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
    }
    .timeline-item:nth-child(2) .timeline-point { border-color: var(--accent); }

    .stat-card {
      background: rgba(250, 250, 248, 0.96);
      padding: 1.35rem;
      border-radius: 12px;
      box-shadow: var(--shadow-soft);
      border: 1px solid var(--secondary);
      display: inline-block;
    }
    .stat-revenue { font-size: 2.4rem; font-weight: 800; color: var(--text); margin: 0.4rem 0; }

    .sources-card {
      background: rgba(250, 250, 248, 0.96);
      padding: 2rem;
      border-radius: 14px;
      box-shadow: var(--shadow);
      border: 1px solid var(--secondary);
      position: relative;
      z-index: 5;
      margin-top: -80px;
    }
    .source-line { display: flex; justify-content: space-between; padding: 1rem 0; border-bottom: 1px solid var(--secondary); font-weight: 500; }
    .source-total { display: flex; justify-content: space-between; padding-top: 1.3rem; font-weight: 700; color: var(--primary); font-size: 1.05rem; }
    .bg-image-holder {
      width: 100%;
      height: 300px;
      background-image: linear-gradient(135deg, rgba(127, 175, 155, 0.14), rgba(200, 169, 106, 0.2)), url("img/radiant-fair-complexion-female-model-her-midtwenties.jpg");
      background-size: cover;
      background-position: center;
      border-radius: 16px;
      margin-bottom: 2rem;
    }

    .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
    .grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.75rem; margin-top: 2rem; }

    .chaos-section {
      background-color: var(--secondary);
      padding: 5rem 0;
      overflow: hidden;
      position: relative;
    }

    .chaos-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .desk-area {
      position: relative;
      height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .note {
      position: absolute;
      width: 200px;
      padding: 20px;
      box-shadow: 4px 10px 20px rgba(46, 46, 46, 0.15);
      font-family: 'Permanent Marker', cursive;
      font-size: 1.05rem;
      line-height: 1.25;
      color: var(--text);
      transform: rotate(var(--r));
      border: 1px solid rgba(46, 46, 46, 0.05);
      border-radius: 10px;
    }

    .note::before {
      content: "";
      position: absolute;
      top: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 25px;
      background: rgba(200, 169, 106, 0.18);
      backdrop-filter: blur(2px);
      border-radius: 3px;
    }

    .scrap {
      position: absolute;
      background: var(--background);
      width: 240px;
      padding: 25px;
      border: 1px solid rgba(200, 169, 106, 0.5);
      box-shadow: 2px 5px 15px rgba(46, 46, 46, 0.1);
      font-family: 'Permanent Marker', cursive;
      color: var(--text);
      clip-path: polygon(0% 2%, 98% 0%, 100% 95%, 95% 100%, 5% 98%, 0% 100%);
    }

    .n1 { top: 10%; left: 10%; --r: -5deg; background: rgba(245, 241, 235, 0.95); }
    .n2 { bottom: 15%; left: 5%; --r: 3deg; background: rgba(250, 250, 248, 0.96); }
    .n3 { top: 20%; right: 5%; --r: 7deg; background: rgba(127, 175, 155, 0.12); width: 180px; }
    .s1 { top: 50%; left: 40%; transform: translate(-50%, -50%) rotate(-2deg); }

    .scribble-line {
      position: absolute;
      width: 100px;
      height: 2px;
      background: var(--text);
      opacity: 0.2;
      transform: rotate(45deg);
    }

    .chaos-content h2 {
      font-size: clamp(2.2rem, 4vw, 3.2rem);
      margin-bottom: 1.2rem;
    }

    .chaos-content .highlight-box {
      border-left: 4px solid var(--accent);
      padding-left: 1.5rem;
      margin-top: 2rem;
    }

    .chaos-content p:last-child {
      margin-bottom: 0;
    }

    .split-value {
      background-color: #f3ece2;
      padding: 5rem 0;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }

    .split-value-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .split-value-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
    }

    .split-value-card {
      background: var(--background);
      border-radius: 20px;
      box-shadow: 0 15px 35px rgba(46, 46, 46, 0.08);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      border: 1px solid rgba(46, 46, 46, 0.03);
    }

    .split-value-card img {
      width: 100%;
      height: 260px;
      object-fit: cover;
    }

    .split-value-content {
      padding: 40px;
    }

    .split-value-pill {
      display: inline-block;
      padding: 0.62rem 1.7rem;
      border-radius: 999px;
      font-size: 0.83rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 1rem;
      border: 1px solid rgba(127, 175, 155, 0.25);
      background: rgba(245, 241, 235, 0.9);
      color: var(--primary);
    }

    .split-value-pill-customer,
    .split-value-pill-business {
      background: rgba(245, 241, 235, 0.9);
      color: var(--primary);
    }

    .split-value-card h3 {
      font-size: clamp(1.5rem, 3.1vw, 1.5rem);
      color: var(--text);
      margin-bottom: 0.9rem;
      font-weight: 800;
      line-height: 1.08;
      letter-spacing: -0.03em;
    }

    .split-value-card h3 .highlight {
      color: var(--primary);
    }

    .split-value-card p {
      font-size: 1.05rem;
      line-height: 1.55;
      color: var(--text);
      opacity: 0.88;
    }

    .split-value-card ul {
      margin: 20px 0;
      padding-left: 0;
      list-style: none;
    }

    .split-value-card li {
      margin-bottom: 10px;
      padding-left: 20px;
      position: relative;
    }

    .split-value-card li::before {
      content: "•";
      color: var(--primary);
      position: absolute;
      left: 0;
      font-weight: bold;
    }

    .split-value-footer-line {
      margin-top: 25px;
      padding-top: 20px;
      border-top: 1px solid #f0f0f0;
      font-style: italic;
      color: #8f8f8f;
      font-weight: 500;
    }

    .process-section {
      background-color: var(--background);
      padding: 5rem 0;
      overflow: hidden;
    }

    .process-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .process-header h2 {
      margin-bottom: 1rem;
    }

    .process-header p {
      max-width: 720px;
      margin: 0 auto;
    }

    .process-wrapper {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      padding: 0 1rem;
      gap: 0.5rem;
    }

    .process-step {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      position: relative;
      padding: 0 10px;
    }

    .process-step:not(:last-child)::after {
      content: "";
      position: absolute;
      top: 25px;
      right: -50%;
      width: 100%;
      height: 0;
      border-top: 2px dashed rgba(46, 46, 46, 0.3);
      z-index: 1;
    }

    .process-step:not(:last-child)::before {
      content: "▶";
      position: absolute;
      top: 25px;
      right: -50%;
      transform: translate(50%, -50%);
      color: rgba(46, 46, 46, 0.4);
      font-size: 12px;
      z-index: 2;
    }

    .step-number {
      width: 50px;
      height: 50px;
      background-color: var(--primary);
      color: var(--background);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 1.2rem;
      position: relative;
      z-index: 5;
      box-shadow: 0 4px 10px rgba(127, 175, 155, 0.3);
    }

    .process-step:last-child .step-number {
      background-color: var(--accent);
      box-shadow: 0 4px 10px rgba(200, 169, 106, 0.3);
    }

    .step-illustration {
      width: 90px;
      height: 90px;
      margin-bottom: 1.1rem;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .step-illustration svg {
      width: 100%;
      height: 100%;
    }

    .step-text h4 {
      font-size: 1.02rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
      color: var(--text);
      line-height: 1.3;
    }

    .step-text p {
      font-size: 0.85rem;
      color: var(--text);
      opacity: 0.72;
      line-height: 1.5;
      margin-bottom: 0;
    }

    .feature-card {
      background: rgba(250, 250, 248, 0.96);
      padding: 2rem;
      border-radius: 14px;
      border: 1px solid var(--secondary);
      box-shadow: var(--shadow-soft);
    }
    .icon-box {
      width: 45px;
      height: 45px;
      background: rgba(127, 175, 155, 0.12);
      color: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 10px;
      font-size: 1.1rem;
      font-weight: 800;
      margin-bottom: 1.25rem;
    }

    .cta-box {
      background: var(--secondary);
      border-radius: 24px;
      padding: 4rem 2rem;
      text-align: center;
      margin: 2.5rem 0 0;
      border: 1px solid rgba(127, 175, 155, 0.14);
    }

    .faq-section {
      background: var(--surface-process);
      padding: 5.5rem 0;
    }

    .faq-heading {
      margin-bottom: 2.4rem;
    }

    .micro-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.33rem 0.62rem;
      border-radius: 999px;
      border: 1px solid rgba(30, 167, 242, 0.34);
      background: rgba(255, 255, 255, 0.78);
      margin-bottom: 0.95rem;
      font-size: 0.75rem;
      font-weight: 600;
      color: rgba(46, 50, 57, 0.9);
    }

    .micro-badge-icon {
      width: 14px;
      height: 14px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
      box-shadow: 0 0 0 2px rgba(30, 167, 242, 0.14);
      flex: 0 0 auto;
    }

    .faq-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.6rem;
      align-items: stretch;
    }

    .faq-left {
      display: grid;
      gap: 0.95rem;
    }

    .faq-photo {
      width: 100%;
      min-height: 345px;
      max-height: 375px;
      object-fit: cover;
      border-radius: 18px;
      border: 1px solid rgba(46, 50, 57, 0.08);
      box-shadow: var(--shadow-soft);
    }

    .faq-help-card {
      background: rgba(247, 249, 252, 0.98);
      border: 1px solid rgba(46, 50, 57, 0.08);
      border-radius: 16px;
      padding: 1rem 1.05rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
    }

    .faq-help-card h4 {
      margin-bottom: 0.2rem;
      font-size: 1.2rem;
    }

    .faq-help-card p {
      margin-bottom: 0;
      opacity: 0.8;
    }

    .faq-help-copy {
      position: relative;
      padding-left: 2rem;
    }

    .faq-help-icon {
      position: absolute;
      left: 0;
      top: 0.1rem;
      width: 1.4rem;
      height: 1.4rem;
      border-radius: 999px;
      font-size: 0.85rem;
      font-weight: 800;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    }

    .faq-list {
      background: rgba(247, 249, 252, 0.98);
      border: 1px solid rgba(46, 50, 57, 0.08);
      border-radius: 18px;
      padding: 0.35rem;
      display: grid;
      gap: 0.45rem;
    }

    .faq-list details {
      border: 1px solid rgba(46, 50, 57, 0.1);
      border-radius: 12px;
      padding: 0.9rem 1.05rem;
      background: #ffffff;
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .faq-list details[open] {
      border-color: rgba(30, 167, 242, 0.35);
      box-shadow: 0 10px 20px rgba(30, 167, 242, 0.08);
    }

    .faq-list summary {
      cursor: pointer;
      list-style: none;
      font-weight: 700;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 0.75rem;
    }

    .faq-list summary::-webkit-details-marker {
      display: none;
    }

    .faq-list summary::after {
      content: "+";
      font-size: 1.1rem;
      line-height: 1;
      width: 1.65rem;
      height: 1.65rem;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      border: 1px solid rgba(46, 50, 57, 0.18);
      color: var(--text);
      opacity: 0.9;
      background: rgba(247, 249, 252, 0.9);
    }

    .faq-list details[open] summary::after {
      content: "–";
      color: var(--primary);
      border-color: rgba(30, 167, 242, 0.45);
    }

    .faq-list details p {
      margin: 0.65rem 0 0;
      font-size: 0.95rem;
      line-height: 1.55;
      opacity: 0.82;
    }

    .download-section {
      background: var(--surface-booking-intel);
      padding: 5.5rem 0 4.9rem;
    }

    .download-card {
      border-radius: 20px;
      border: 1px solid rgba(46, 50, 57, 0.08);
      overflow: hidden;
      background: linear-gradient(90deg, rgba(30, 167, 242, 0.13) 0%, rgba(242, 154, 46, 0.13) 100%);
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 1.2rem;
      align-items: center;
      padding: 2.2rem;
    }

    .download-copy h2 {
      margin-bottom: 0.75rem;
      max-width: 520px;
    }

    .download-copy p {
      max-width: 520px;
      margin-bottom: 1.1rem;
    }

    .download-cta-row {
      display: grid;
      grid-template-columns: 1fr auto auto;
      gap: 0.8rem;
      align-items: center;
      margin-top: 0.2rem;
    }

    .download-actions {
      display: flex;
      gap: 0.75rem;
      flex-wrap: wrap;
    }

    .download-or {
      font-size: 0.8rem;
      font-weight: 700;
      color: rgba(46, 50, 57, 0.65);
      padding: 0 0.35rem;
    }

    .download-right {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 1rem;
    }

    .qr-block {
      background: rgba(255, 255, 255, 0.9);
      border: 1px solid rgba(46, 50, 57, 0.12);
      border-radius: 12px;
      padding: 0.9rem;
      min-width: 145px;
    }

    .qr-block p {
      margin: 0 0 0.5rem;
      font-size: 0.82rem;
      opacity: 0.84;
    }

    .qr-art {
      width: 88px;
      height: 88px;
      border-radius: 8px;
      background:
        repeating-linear-gradient(0deg, rgba(46, 50, 57, 0.14) 0 6px, transparent 6px 12px),
        repeating-linear-gradient(90deg, rgba(46, 50, 57, 0.12) 0 6px, transparent 6px 12px),
        linear-gradient(135deg, rgba(30, 167, 242, 0.2), rgba(242, 154, 46, 0.2));
      border: 1px solid rgba(30, 167, 242, 0.25);
    }

    .phone-mock {
      width: min(250px, 42vw);
      aspect-ratio: 9 / 18;
      border-radius: 28px;
      background: #ffffff;
      border: 2px solid rgba(46, 50, 57, 0.12);
      padding: 8px;
      box-shadow: 0 24px 36px rgba(46, 50, 57, 0.16);
      overflow: hidden;
      margin-left: auto;
    }

    .phone-mock img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 20px;
    }

    .site-footer {
      background: var(--text);
      color: var(--background);
      padding: 4.5rem 0 1.8rem;
      border-top: 4px solid rgba(127, 175, 155, 0.55);
      overflow: hidden;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(5, minmax(150px, 1fr));
      gap: 2rem;
      padding-bottom: 2.5rem;
      border-bottom: 1px solid rgba(250, 250, 248, 0.16);
    }

    .footer-col h4 {
      color: var(--background);
      font-size: 1.6rem;
      line-height: 1.15;
      margin-bottom: 1rem;
      font-weight: 800;
      letter-spacing: -0.02em;
    }

    .footer-col a {
      display: block;
      color: rgba(250, 250, 248, 0.84);
      text-decoration: none;
      font-size: 1rem;
      margin-bottom: 0.72rem;
      transition: color 0.2s ease;
    }

    .footer-col a:hover {
      color: var(--primary);
    }

    .footer-help-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      padding: 2rem 0;
      border-bottom: 1px solid rgba(250, 250, 248, 0.16);
    }

    .footer-help-row p {
      margin: 0;
      color: var(--background);
      font-size: clamp(1.6rem, 3.1vw, 2.3rem);
      font-weight: 700;
      letter-spacing: -0.02em;
      line-height: 1.1;
    }

    .footer-help-row p a {
      color: var(--primary);
      text-decoration: none;
    }

    .footer-socials {
      display: flex;
      align-items: center;
      gap: 0.55rem;
    }

    .footer-socials a {
      width: 2.4rem;
      height: 2.4rem;
      border-radius: 999px;
      border: 1px solid rgba(250, 250, 248, 0.38);
      color: var(--background);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 1.05rem;
      font-weight: 700;
      transition: all 0.2s ease;
    }

    .footer-socials a i {
      color: currentColor;
      line-height: 1;
    }

    .footer-socials a:hover {
      border-color: var(--primary);
      color: var(--primary);
      transform: translateY(-1px);
    }

    .footer-brand {
      margin-top: 2rem;
      font-size: clamp(4.2rem, 15.5vw, 13rem);
      line-height: 0.9;
      letter-spacing: -0.04em;
      font-weight: 800;
      color: rgba(250, 250, 248, 0.95);
      white-space: nowrap;
    }

    .footer-legal {
      margin-top: 1.1rem;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 0.9rem 1.2rem;
      color: rgba(250, 250, 248, 0.6);
      font-size: 0.86rem;
    }

    .footer-legal a {
      color: rgba(250, 250, 248, 0.72);
      text-decoration: none;
    }

    .footer-legal a:hover {
      color: var(--primary);
    }

    /* Tech Theme Overrides (color-only rebrand, no layout/content changes) */
    .highlight,
    .section-heading h2 .highlight,
    .split-value-card h3 .highlight {
      background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent !important;
    }

    .section-heading .pill,
    .pill,
    .split-value-pill {
      background: rgba(30, 167, 242, 0.08);
      border-color: rgba(30, 167, 242, 0.28);
      color: var(--primary);
    }

    .btn-primary,
    .hero-chaos-btn-primary {
      background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
      color: #ffffff !important;
      border: 0;
    }

    .hero-chaos-btn-secondary {
      border-color: rgba(46, 50, 57, 0.45);
      color: var(--text);
      background: rgba(255, 255, 255, 0.82);
    }

    nav {
      background-color: rgba(247, 249, 252, 0.94);
      border-color: rgba(30, 167, 242, 0.2);
    }

    .nav-links a {
      color: rgba(46, 50, 57, 0.84);
    }

    .nav-links a:hover {
      color: var(--primary);
    }

	    .hero-chaos-wa-msg {
	      background: #25D366;
	      color: #ffffff;
	    }

	    .hero-chaos-wa-msg strong {
	      color: #ffffff;
	    }

	    .hero-chaos-wa-msg-secondary {
	      background: #2563eb;
	      color: #ffffff;
	    }

	    .hero-chaos-sticky {
	      background: #f59e0b;
	      color: #111827;
	    }

	    .hero-chaos-paper-scrap {
	      background: #ffffff;
	      color: #111827;
	      border-color: rgba(46, 50, 57, 0.12);
	    }

	    .hero-chaos-sticker-blue {
	      background: #111827;
	      color: #ffffff;
	    }

	    .hero-chaos-note-green {
	      background: #93c5fd;
	      color: #111827;
	    }

	    .hero-chaos-sticky-pink {
	      background: #fb7185;
	      color: #111827;
	    }

    .status-arrived {
      background: rgba(30, 167, 242, 0.12);
      color: var(--primary);
    }

    .status-waiting {
      background: rgba(242, 154, 46, 0.14);
      color: var(--text);
    }

    .timeline-line {
      background: rgba(46, 50, 57, 0.34);
    }

    .timeline-item:nth-child(2) .timeline-point,
    .timeline-item:nth-child(3) .timeline-point {
      border-color: var(--accent);
    }

    .site-footer {
      border-top-color: rgba(30, 167, 242, 0.6);
    }

    .footer-help-row p a,
    .footer-col a:hover,
    .footer-legal a:hover,
    .footer-socials a:hover {
      color: var(--primary);
      border-color: var(--primary);
    }

    .nav-brand-text strong,
    .hero-gradient-title,
    .section-gradient-title,
    .footer-brand {
      background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent !important;
    }

    .demo-booking-section {
      position: relative;
      padding: 6.5rem 0 4.5rem;
      background: rgba(247, 249, 252, 0.55);
      overflow: hidden;
    }

    .demo-booking-section::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      opacity: 0.35;
      background-image:
        linear-gradient(rgba(46, 50, 57, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(46, 50, 57, 0.08) 1px, transparent 1px);
      background-size: 64px 64px;
    }

    .demo-booking-container {
      position: relative;
      z-index: 1;
    }

    .demo-booking-heading {
      text-align: center;
      margin-bottom: 2.25rem;
    }

    .demo-booking-heading p {
      margin-bottom: 0;
      font-size: 1.12rem;
      opacity: 0.78;
    }

    .cal-inline-card {
      height: clamp(720px, 82vh, 920px);
      border-radius: 28px;
      background: rgba(255, 255, 255, 0.92);
      border: 1px solid rgba(46, 50, 57, 0.1);
      box-shadow: var(--shadow);
      padding: 1.25rem;
      overflow: hidden;
    }

    .cal-inline-embed {
      width: 100%;
      height: 100%;
      overflow: auto;
      -webkit-overflow-scrolling: touch;
    }

    @media (max-width: 1200px) {
      nav { width: min(1200px, calc(100% - 1.5rem)); }
      .nav-links { gap: 1.1rem; }
      .nav-links a { font-size: 0.94rem; }
      .hero-chaos-grid { gap: 1.8rem; }
      .front-desk-grid { gap: 1.5rem; }
      .section-heading { margin-bottom: 2.5rem; }
      .section-heading p { font-size: 1rem; }
    }

    @media (max-width: 1024px) {
      .container { padding: 0 1.25rem; }
      nav { top: 0.7rem; padding: 0.75rem 0.95rem 0.75rem 1.1rem; border-radius: 26px; }
      .nav-brand img { height: 38px; width: 38px; }
      .nav-brand-text strong { font-size: 1rem; }
      .nav-brand-text span { font-size: 0.82rem; }
      .nav-cta { min-width: 138px; min-height: 48px; }
      section { padding: 4.5rem 0; }
      .hero-chaos-header { padding: 3.2rem 0; }
      .hero-chaos-grid { grid-template-columns: 1fr; text-align: center; }
      .hero-chaos-content p { margin: 0 auto 1.5rem; }
      .hero-chaos-points {
        text-align: left;
        margin: 0 0 1.4rem 0;
      }
      .hero-chaos-cta-group { justify-content: center; }
      .hero-chaos-visual-mess-container { height: 390px; margin-top: 1.8rem; transform: scale(0.82); }
      .split-value-grid { grid-template-columns: 1fr; }
      .split-value-card img { height: 230px; }
      .split-value-content { padding: 2rem; }
      .spa-booking-grid, .front-desk-grid, .grid-2, .chaos-grid { grid-template-columns: 1fr; }
      .team-avatars { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; }
      .booking-widget { position: static; }
      .process-wrapper { flex-wrap: wrap; justify-content: center; gap: 2rem; }
      .process-step { flex: 0 0 46%; }
      .process-step::after, .process-step::before { display: none; }
      .timeline-line { left: 0; transform: none; }
      .timeline-item { flex-direction: column !important; align-items: flex-start; padding-left: 2rem; margin-bottom: 2.6rem; }
      .timeline-content { width: 100%; margin-top: 0.85rem; }
      .timeline-point { left: 0; transform: translateX(-6px); }
      .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .footer-help-row { flex-direction: column; align-items: flex-start; }
      .footer-brand { margin-top: 1.5rem; white-space: normal; }
      .faq-layout { grid-template-columns: 1fr; }
      .download-card { grid-template-columns: 1fr; }
      .download-right { justify-content: flex-start; }
      .download-cta-row { grid-template-columns: 1fr; }
      .download-or { display: none; }
    }

    @media (max-width: 768px) {
      .container { padding: 0 1rem; }
      nav {
        flex-wrap: wrap;
        align-items: center;
        gap: 0.65rem;
        border-radius: 22px;
        width: calc(100% - 1rem);
        padding: 0.72rem 0.82rem;
      }
      .nav-brand { justify-content: flex-start; min-width: 0; }
      .nav-brand-text span { display: none; }
      .nav-toggle {
        display: inline-flex;
        margin-left: auto;
        flex-direction: column;
      }
      .nav-links {
        display: none;
        width: 100%;
        margin-left: 0;
        justify-content: flex-start;
        flex-direction: column;
        align-items: stretch;
        gap: 0.45rem;
        padding-top: 0.35rem;
      }
      nav.nav-open .nav-links { display: flex; }
      .nav-links a {
        white-space: nowrap;
        padding: 0.68rem 0.85rem;
        border-radius: 10px;
        background: rgba(127, 175, 155, 0.08);
      }
      .nav-links .nav-cta {
        width: 100%;
        margin-left: 0;
        min-width: 0;
        min-height: 46px;
        background: linear-gradient(90deg, var(--btn-grad-start) 0%, var(--btn-grad-end) 100%);
        color: var(--background) !important;
        border: 0;
        box-shadow: 0 8px 18px rgba(30, 167, 242, 0.22);
      }
      nav.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
      nav.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
      nav.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
      section { padding: 4rem 0; }
      .section-heading { margin-bottom: 2rem; }
      .section-heading .pill { font-size: 0.76rem; padding: 0.52rem 1.2rem; }
      .hero-chaos-header { padding: 2.8rem 0; }
      .hero-chaos-content h1 { font-size: clamp(1.55rem, 6vw, 2.05rem); margin-bottom: 0.9rem; }
      .hero-chaos-content p { font-size: 0.98rem; }
      .hero-chaos-points {
        max-width: 100%;
        padding-left: 1rem;
      }
      .hero-chaos-points li {
        font-size: 0.95rem;
      }
      .hero-chaos-visual-mess-container { height: 330px; transform: scale(0.72); margin-top: 1rem; }
      .hero-chaos-wa-msg,
      .hero-chaos-sticker-blue,
      .hero-chaos-note-green { display: none; }
      .hero-chaos-btn-primary,
      .hero-chaos-btn-secondary { border-radius: 14px; }
      .service-row { flex-direction: column; align-items: flex-start; }
      #booking .spa-booking-grid {
        display: flex;
        flex-direction: column;
        gap: 1rem;
      }
      #booking .spa-booking-grid > div {
        width: 100%;
        min-width: 0;
      }
      #booking .ui-card {
        overflow: hidden;
      }
      #booking .tabs {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.55rem;
        overflow: visible;
      }
      #booking .tab {
        width: 100%;
        text-align: center;
      }
      #booking .service-row {
        display: block;
        padding: 1rem;
      }
      #booking .service-info {
        width: 100%;
        min-width: 0;
      }
      #booking .service-info h4,
      #booking .service-info p {
        overflow-wrap: anywhere;
      }
      #booking .service-row .btn {
        width: 100%;
        max-width: 100%;
        margin-top: 0.7rem;
        justify-content: center;
        text-align: center;
      }
      .gallery-grid {
        grid-template-columns: 1fr;
        gap: 0.6rem;
      }
      .gallery-main {
        grid-row: auto;
        min-height: 220px;
      }
      .gallery-item { min-height: 150px; }
      .review-header { flex-wrap: wrap; }
      .booking-widget { padding: 1.2rem; }
      #booking .team-avatars {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem 0.9rem;
      }
      #booking .avatar-wrap {
        justify-items: center;
        text-align: center;
      }
      #booking .rating-badge {
        top: -10px;
      }
      .process-step { flex: 0 0 100%; }
      .process-step { flex-direction: row; text-align: left; align-items: flex-start; gap: 0.9rem; }
      .step-number { margin-bottom: 0; flex-shrink: 0; }
      .step-illustration { display: none; }
      .timeline-section { margin-top: 2rem; }
      .timeline-line {
        left: 0;
        transform: none;
        background: rgba(46, 46, 46, 0.55);
      }
      .timeline-item {
        display: block;
        padding-left: 1.4rem;
        margin-bottom: 1.4rem;
      }
      .timeline-content {
        width: 100%;
        margin-top: 0.5rem;
        text-align: left !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
      }
      .timeline-content + .timeline-content { margin-top: 0.8rem; }
      .timeline-item h3,
      .timeline-item p { text-align: left !important; }
      .stat-card { width: 100%; }
      #booking .reviews-summary {
        display: block !important;
      }
      .grid-3 { grid-template-columns: 1fr; }
      .cta-box { padding: 2.8rem 1.25rem; }
      .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.2rem; }
      .footer-grid .footer-col:last-child { grid-column: 1 / -1; }
      .footer-col h4 { font-size: 1.15rem; margin-bottom: 0.55rem; }
      .footer-col a { margin-bottom: 0.42rem; font-size: 0.95rem; }
      .footer-help-row p { font-size: clamp(1.35rem, 7vw, 1.8rem); }
      .footer-legal { gap: 0.55rem 0.9rem; font-size: 0.8rem; }
      .faq-help-card {
        display: block;
      }
      .faq-help-card .btn {
        margin-top: 0.75rem;
        width: 100%;
      }
      .download-actions .btn {
        width: 100%;
      }
      .download-right {
        flex-direction: column;
        align-items: stretch;
      }
      .phone-mock {
        width: min(260px, 78vw);
        margin: 0 auto;
      }
      .qr-block {
        width: fit-content;
      }
    }

    @media (max-width: 480px) {
      .container { padding: 0 0.85rem; }
      nav { width: calc(100% - 0.5rem); margin-top: 0.5rem; }
      .nav-brand img { height: 32px; width: 32px; }
      .nav-brand-text strong { font-size: 0.95rem; }
      .nav-links a { font-size: 0.9rem; padding: 0.62rem 0.72rem; }
      .nav-cta { min-width: 126px; min-height: 44px; font-size: 0.9rem; }
      .section-heading p { font-size: 0.95rem; }
      .split-value-content { padding: 1.25rem; }
      .split-value-card img { height: 180px; }
      .tabs { gap: 0.5rem; }
      #booking .team-avatars { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .therapist-row { gap: 1rem; }
      .footer-socials a { width: 2.1rem; height: 2.1rem; }
      .footer-brand { font-size: clamp(3.1rem, 17vw, 4.8rem); line-height: 0.92; }
      .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .footer-grid .footer-col:last-child { grid-column: 1 / -1; }
      .hero-chaos-cta-group { width: 100%; }
      .hero-chaos-btn-primary,
      .hero-chaos-btn-secondary {
        width: 100%;
        text-align: center;
      }
      #booking .booking-widget {
        padding: 1rem;
      }
      #booking .hours-row {
        font-size: 0.78rem;
      }
    }

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