  :root {
    --primary: #1a1a2e;
    --accent: #c9a96e;
    --accent-light: #e8d5b0;
    --white: #ffffff;
    --off-white: #f8f6f2;
    --text: #3a3a3a;
    --text-light: #777;
    --border: #e0d9cf;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }
  h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 600; }
  a { text-decoration: none; color: inherit; }
  ul { list-style: none; }

  /* ─── HEADER ─── */
  .header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(26,26,46,0.97); backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(201,169,110,0.2); transition: all 0.3s ease;
  }
  .header-inner {
    max-width: 1280px; margin: 0 auto; padding: 0 2rem;
    display: flex; align-items: center; height: 76px; gap: 2rem;
  }
  .logo a { display: flex; flex-direction: column; line-height: 1; }
  .logo-top { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 700; color: var(--white); letter-spacing: 1px; }
  .logo-top span { color: var(--accent); }
  .logo-sub { font-size: 0.65rem; color: var(--accent-light); letter-spacing: 3px; text-transform: uppercase; margin-top: 2px; }
  .main-nav { margin-left: auto; }
  .main-nav > ul { display: flex; align-items: center; gap: 0.25rem; }
  .main-nav > ul > li { position: relative; }
  .main-nav > ul > li > a {
    display: block; padding: 0.5rem 1rem; color: rgba(255,255,255,0.85);
    font-size: 0.88rem; letter-spacing: 0.5px; transition: color 0.2s; border-radius: 4px;
  }
  .main-nav > ul > li > a:hover, .main-nav > ul > li.active > a { color: var(--accent); }
  .has-dropdown > a::after { content: ' ▾'; font-size: 0.7rem; }
  .dropdown-menu {
    position: absolute; top: 100%; left: 50%;
    transform: translateX(-50%) translateY(-4px);
    background: var(--white); border: 1px solid var(--border);
    border-radius: 10px; box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    min-width: 220px; padding: 12px 0 0.5rem;
    opacity: 0; pointer-events: none; transition: opacity 0.2s, transform 0.2s;
  }
  .dropdown-menu::before { content: ''; position: absolute; top: 8px; left: 1rem; right: 1rem; height: 1px; background: var(--border); }
  .has-dropdown:hover .dropdown-menu { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
  .dropdown-menu li a { display: flex; align-items: center; gap: 0.75rem; padding: 0.7rem 1.25rem; color: var(--text); font-size: 0.88rem; transition: background 0.15s, color 0.15s; }
  .dropdown-menu li a:hover { background: var(--off-white); color: var(--accent); }
  .dropdown-menu li a .dd-icon { width: 32px; height: 32px; background: var(--off-white); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
  .dropdown-menu li a:hover .dd-icon { background: #f0e6d3; }
  .header-cta a {
    display: inline-block; background: linear-gradient(135deg, var(--accent), #b8924f);
    color: var(--white); padding: 0.6rem 1.4rem; border-radius: 50px;
    font-size: 0.83rem; font-weight: 500; letter-spacing: 0.5px;
    transition: transform 0.2s, box-shadow 0.2s; white-space: nowrap;
  }
  .header-cta a:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(201,169,110,0.4); }
  .hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; margin-left: auto; }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }
  .mobile-menu {
    position: fixed; inset: 0; background: var(--primary); z-index: 999;
    display: flex; flex-direction: column; padding: 6rem 2rem 2rem;
    transform: translateX(100%); transition: transform 0.35s ease;
  }
  .mobile-menu.open { transform: translateX(0); }
  .mobile-menu ul { display: flex; flex-direction: column; gap: 0.5rem; }
  .mobile-menu ul li a { display: block; color: rgba(255,255,255,0.85); font-size: 1.2rem; padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .mobile-close { position: absolute; top: 1.5rem; right: 2rem; color: var(--white); font-size: 1.5rem; cursor: pointer; background: none; border: none; }
  .mobile-submenu { padding-left: 1rem; display: none; }
  .mobile-submenu.open { display: block; }
  .mobile-submenu a { font-size: 1rem !important; color: rgba(255,255,255,0.65) !important; border-bottom: none !important; padding: 0.4rem 0 !important; }

  /* ─── SHARED ─── */
  .section { padding: 6rem 0; }
  .container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
  .section-label { display: inline-block; color: var(--accent); font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 0.75rem; }
  .section-title { font-size: clamp(2rem, 4vw, 3rem); color: var(--primary); line-height: 1.1; margin-bottom: 1rem; }
  .section-desc { color: var(--text-light); line-height: 1.75; max-width: 600px; }
  .btn-gold { display: inline-block; background: linear-gradient(135deg, var(--accent), #b8924f); color: var(--white); padding: 0.85rem 2rem; border-radius: 50px; font-size: 0.9rem; font-weight: 500; transition: transform 0.2s, box-shadow 0.2s; letter-spacing: 0.3px; }
  .btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,169,110,0.4); }
  .btn-outline { display: inline-block; border: 1px solid rgba(255,255,255,0.4); color: var(--white); padding: 0.85rem 2rem; border-radius: 50px; font-size: 0.9rem; transition: background 0.2s, border-color 0.2s; }
  .btn-outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.7); }

  /* ─── PAGE HERO ─── */
  .page-hero {
    padding-top: 76px; min-height: 74vh; position: relative;
    display: flex; align-items: center; background: var(--primary); overflow: hidden;
  }
  .page-hero-bg {
    position: absolute; inset: 0;
    background:
      linear-gradient(135deg, rgba(26,26,46,0.98) 0%, rgba(26,26,46,0.72) 60%, rgba(201,169,110,0.1) 100%),
      url('https://images.unsplash.com/photo-1579684385127-1ef15d508118?w=1400&q=80') center/cover no-repeat;
  }
  /* Blood drop / platelet particle deco */
  .hero-particles {
    position: absolute; right: 0; top: 0; bottom: 0; width: 45%;
    overflow: hidden; pointer-events: none;
  }
  .particle {
    position: absolute; border-radius: 50%;
    background: radial-gradient(circle, rgba(201,169,110,0.18), transparent 70%);
    animation: floatUp linear infinite;
  }
  .particle:nth-child(1) { width:180px;height:180px; right:10%; top:20%; animation-duration:8s; animation-delay:0s; }
  .particle:nth-child(2) { width:100px;height:100px; right:30%; top:50%; animation-duration:11s; animation-delay:2s; }
  .particle:nth-child(3) { width:240px;height:240px; right:5%; bottom:10%; animation-duration:14s; animation-delay:1s; }
  .particle:nth-child(4) { width:60px; height:60px; right:20%; top:10%; animation-duration:9s; animation-delay:3s; }
  @keyframes floatUp { 0%,100%{transform:translateY(0) scale(1);opacity:0.6} 50%{transform:translateY(-30px) scale(1.07);opacity:1} }
  /* platelet icon */
  .hero-badge-float {
    position: absolute; right: 18%; top: 50%; transform: translateY(-50%);
    background: rgba(201,169,110,0.1); border: 1px solid rgba(201,169,110,0.3);
    border-radius: 24px; padding: 2rem 2.5rem; text-align: center; z-index: 2;
    backdrop-filter: blur(8px);
  }
  .hero-badge-float .hb-icon { font-size: 3.5rem; display: block; margin-bottom: 0.75rem; animation: pulse 3s ease-in-out infinite; }
  .hero-badge-float .hb-label { font-size: 0.72rem; color: rgba(255,255,255,0.5); letter-spacing: 2px; text-transform: uppercase; }
  .hero-badge-float .hb-value { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--accent); font-weight: 700; }
  @keyframes pulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.08)} }

  .page-hero-content {
    position: relative; z-index: 1;
    max-width: 1280px; margin: 0 auto; padding: 5rem 2rem 4rem; width: 100%;
  }
  .breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 1.5rem; }
  .breadcrumb a { color: var(--accent-light); }
  .breadcrumb span { color: rgba(255,255,255,0.3); }
  .page-hero h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); color: var(--white); line-height: 1.08; max-width: 640px; margin-bottom: 1.25rem; animation: fadeUp 0.6s ease both; }
  .page-hero h1 em { color: var(--accent); font-style: normal; display: block; }
  .page-hero-desc { color: rgba(255,255,255,0.72); font-size: 1.05rem; line-height: 1.75; max-width: 500px; margin-bottom: 2.5rem; animation: fadeUp 0.6s 0.1s ease both; }
  .page-hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeUp 0.6s 0.2s ease both; }
  .page-hero-stats { display: flex; gap: 3rem; margin-top: 4rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); flex-wrap: wrap; animation: fadeUp 0.6s 0.3s ease both; }
  .stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 700; color: var(--accent); line-height: 1; }
  .stat-label { font-size: 0.76rem; color: rgba(255,255,255,0.5); letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; }
  @keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }

  /* ─── OVERVIEW — 3-col text + image ─── */
  .overview { background: var(--white); }
  .overview-layout { display: grid; grid-template-columns: 1fr 1.2fr 1fr; gap: 0; border-radius: 24px; overflow: hidden; box-shadow: 0 20px 70px rgba(0,0,0,0.09); border: 1px solid var(--border); }
  .ov-left { background: var(--off-white); padding: 3.5rem 2.5rem; display: flex; flex-direction: column; justify-content: center; }
  .ov-left .section-label { margin-bottom: 0.5rem; }
  .ov-left h2 { font-size: 2rem; color: var(--primary); margin-bottom: 1.25rem; line-height: 1.15; }
  .ov-left p { color: var(--text-light); line-height: 1.78; font-size: 0.92rem; margin-bottom: 1rem; }
  .ov-left p:last-of-type { margin-bottom: 0; }
  .ov-center { position: relative; min-height: 500px; }
  .ov-center img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
  .ov-right { background: var(--primary); padding: 3.5rem 2.5rem; display: flex; flex-direction: column; justify-content: center; gap: 1.5rem; }
  .ov-right-title { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--accent); margin-bottom: 1rem; border-bottom: 1px solid rgba(201,169,110,0.3); padding-bottom: 0.5rem; }
  .ov-pill {
    display: flex; align-items: center; gap: 0.75rem;
    background: rgba(201,169,110,0.1); border: 1px solid rgba(201,169,110,0.2);
    border-radius: 10px; padding: 0.75rem 1rem;
    transition: background 0.2s;
  }
  .ov-pill:hover { background: rgba(201,169,110,0.18); }
  .ov-pill-icon { font-size: 1.3rem; flex-shrink: 0; }
  .ov-pill-text { font-size: 0.85rem; color: rgba(255,255,255,0.8); line-height: 1.4; }
  .ov-pill-text strong { display: block; color: var(--accent-light); font-size: 0.88rem; }

  /* ─── BLOOD SCIENCE — Infographic-style ─── */
  .blood-science { background: var(--off-white); }
  .bs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
  .bs-infographic {
    position: relative; background: var(--primary); border-radius: 24px;
    padding: 3rem 2rem; min-height: 480px; display: flex; flex-direction: column;
    align-items: center; justify-content: center; overflow: hidden;
  }
  .bs-infographic::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(201,169,110,0.12), transparent 65%),
                radial-gradient(ellipse at 80% 80%, rgba(201,169,110,0.07), transparent 50%);
  }
  .bs-tube-wrap { position: relative; z-index: 1; text-align: center; }
  .bs-tube {
    width: 70px; margin: 0 auto 2rem;
    display: flex; flex-direction: column; border-radius: 35px 35px 8px 8px;
    overflow: hidden; box-shadow: 0 8px 30px rgba(0,0,0,0.4);
    border: 2px solid rgba(201,169,110,0.3);
  }
  .bs-layer { width: 100%; display: flex; align-items: center; justify-content: center; font-size: 0.6rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
  .bs-layer-prp { height: 80px; background: linear-gradient(180deg, #c9a96e, #b8924f); color: var(--white); }
  .bs-layer-buffy { height: 24px; background: #e8d5b0; color: var(--primary); }
  .bs-layer-rbc { height: 60px; background: linear-gradient(180deg, #8b2020, #5c1515); color: rgba(255,255,255,0.7); }
  .bs-layer-plasma { height: 50px; background: linear-gradient(180deg, rgba(201,169,110,0.5), rgba(201,169,110,0.2)); color: rgba(255,255,255,0.6); }
  .bs-label {
    position: relative; z-index: 1;
    font-size: 0.78rem; color: rgba(255,255,255,0.7); text-align: center; margin-top: 0.25rem;
  }
  .bs-arrows {
    position: relative; z-index: 1; margin-top: 2rem;
    display: flex; flex-direction: column; gap: 0.6rem; align-items: flex-start; width: 100%;
  }
  .bs-arrow-item { display: flex; align-items: center; gap: 0.75rem; font-size: 0.82rem; }
  .bs-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
  .bs-dot.gold { background: var(--accent); }
  .bs-dot.cream { background: var(--accent-light); }
  .bs-dot.red { background: #8b2020; }
  .bs-arrow-item span { color: rgba(255,255,255,0.65); }
  .bs-arrow-item strong { color: rgba(255,255,255,0.9); display: block; }

  .bs-content .section-label { margin-bottom: 0.5rem; }
  .bs-content h2 { font-size: 2.2rem; color: var(--primary); margin-bottom: 1.25rem; }
  .bs-content p { color: var(--text-light); line-height: 1.78; font-size: 0.93rem; margin-bottom: 1.2rem; }
  .bs-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.5rem; }
  .bs-stat { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 1.25rem; text-align: center; transition: border-color 0.2s, transform 0.2s; }
  .bs-stat:hover { border-color: var(--accent-light); transform: translateY(-3px); }
  .bs-stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; color: var(--accent); }
  .bs-stat-label { font-size: 0.78rem; color: var(--text-light); margin-top: 2px; }

  /* ─── PROCESS — Zigzag layout ─── */
  .process { background: var(--white); }
  .process-header { text-align: center; margin-bottom: 4rem; }
  .process-header .section-desc { margin: 0 auto; }
  .zigzag { display: flex; flex-direction: column; gap: 0; }
  .zz-step {
    display: grid; grid-template-columns: 1fr 80px 1fr; align-items: center;
    position: relative;
  }
  .zz-step:nth-child(even) { direction: rtl; }
  .zz-step:nth-child(even) > * { direction: ltr; }
  .zz-content {
    padding: 3rem; background: var(--off-white); border-radius: 20px;
    margin: 0.75rem 0; border: 1px solid var(--border);
    transition: border-color 0.3s, box-shadow 0.3s;
  }
  .zz-content:hover { border-color: var(--accent-light); box-shadow: 0 8px 32px rgba(0,0,0,0.06); }
  .zz-step-num { font-family: 'Cormorant Garamond', serif; font-size: 5rem; font-weight: 700; color: var(--accent); opacity: 0.15; line-height: 1; margin-bottom: 0.25rem; }
  .zz-title { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--primary); margin-bottom: 0.5rem; }
  .zz-time { font-size: 0.75rem; color: var(--accent); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 0.75rem; }
  .zz-text { font-size: 0.9rem; color: var(--text-light); line-height: 1.72; }
  .zz-center { display: flex; flex-direction: column; align-items: center; position: relative; }
  .zz-line { width: 2px; flex: 1; background: linear-gradient(to bottom, transparent, var(--accent), transparent); }
  .zz-circle {
    width: 56px; height: 56px; border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #b8924f);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; flex-shrink: 0; z-index: 1;
    box-shadow: 0 4px 20px rgba(201,169,110,0.35);
  }
  .zz-empty { background: transparent; border: none; }

  /* ─── CONDITIONS — Card mosaic ─── */
  .conditions { background: var(--off-white); }
  .cond-header { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-bottom: 3.5rem; }
  .cond-header-img img { width: 100%; height: 360px; object-fit: cover; border-radius: 20px; display: block; }
  .mosaic { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
  .mosaic-card {
    background: var(--white); border: 1px solid var(--border); border-radius: 16px;
    padding: 1.75rem 1.25rem; transition: all 0.3s; text-align: center;
    position: relative; overflow: hidden;
  }
  .mosaic-card::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--accent), #b8924f); transform: scaleX(0); transition: transform 0.3s;
  }
  .mosaic-card:hover::after { transform: scaleX(1); }
  .mosaic-card:hover { transform: translateY(-5px); box-shadow: 0 14px 36px rgba(0,0,0,0.08); }
  .mosaic-card.span2 { grid-column: span 2; display: flex; gap: 1.5rem; text-align: left; align-items: flex-start; }
  .mosaic-card.span2::after { display: none; }
  .mosaic-card.span2:hover { transform: translateY(-4px); }
  .mosaic-icon { font-size: 2rem; margin-bottom: 0.75rem; }
  .mosaic-card.span2 .mosaic-icon { font-size: 2.4rem; flex-shrink: 0; margin-bottom: 0; margin-top: 0.25rem; }
  .mosaic-title { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--primary); margin-bottom: 0.4rem; font-weight: 600; }
  .mosaic-text { font-size: 0.83rem; color: var(--text-light); line-height: 1.6; }

  /* ─── BEFORE & AFTER ─── */
  .before-after { background: var(--primary); }
  .before-after .section-title { color: var(--white); }
  .before-after .section-label { color: var(--accent); }
  .before-after .section-desc { color: rgba(255,255,255,0.6); }
  .ba-header { margin-bottom: 3rem; }
  .ba-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
  .ba-card { border-radius: 18px; overflow: hidden; border: 1px solid rgba(201,169,110,0.25); background: rgba(255,255,255,0.04); transition: transform 0.3s, box-shadow 0.3s; }
  .ba-card:hover { transform: translateY(-6px); box-shadow: 0 20px 56px rgba(0,0,0,0.45); }
  .ba-slider { position: relative; width: 100%; height: 300px; overflow: hidden; cursor: col-resize; user-select: none; }
  .ba-slider img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; pointer-events: none; }
  .ba-slider .img-after { z-index: 1; }
  .ba-slider .img-before { z-index: 2; clip-path: inset(0 50% 0 0); }
  .ba-slider .slider-line { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: var(--accent); z-index: 10; transform: translateX(-50%); }
  .ba-slider .slider-handle { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 36px; height: 36px; border-radius: 50%; background: var(--accent); border: 3px solid var(--white); display: flex; align-items: center; justify-content: center; z-index: 11; font-size: 0.8rem; color: var(--white); font-weight: 700; box-shadow: 0 2px 12px rgba(0,0,0,0.4); cursor: col-resize; }
  .ba-slider .ba-label-before, .ba-slider .ba-label-after { position: absolute; bottom: 10px; z-index: 12; font-size: 0.7rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; padding: 0.25rem 0.65rem; border-radius: 4px; }
  .ba-slider .ba-label-before { left: 10px; background: rgba(0,0,0,0.55); color: rgba(255,255,255,0.75); }
  .ba-slider .ba-label-after { right: 10px; background: rgba(201,169,110,0.85); color: var(--white); }
  .ba-info { padding: 1.25rem; border-top: 1px solid rgba(201,169,110,0.15); }
  .ba-info-row { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
  .ba-meta { display: flex; gap: 1.25rem; flex-wrap: wrap; }
  .ba-meta-item { font-size: 0.8rem; color: rgba(255,255,255,0.55); }
  .ba-meta-item strong { color: var(--accent-light); display: block; font-size: 0.78rem; }
  .ba-result { font-size: 0.78rem; background: rgba(201,169,110,0.15); color: var(--accent-light); padding: 0.3rem 0.75rem; border-radius: 20px; border: 1px solid rgba(201,169,110,0.3); }
  .ba-note { margin-top: 2.5rem; text-align: center; color: rgba(255,255,255,0.4); font-size: 0.82rem; }
  .ba-instruction { text-align: center; margin-bottom: 2rem; color: rgba(255,255,255,0.5); font-size: 0.85rem; display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
  .ba-instruction span { color: var(--accent); }

  /* ─── RESULTS — Horizontal scroll cards ─── */
  .timeline-results { background: var(--white); }
  .timeline-scroll {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 0;
    margin-top: 3.5rem; position: relative;
  }
  .timeline-scroll::before {
    content: ''; position: absolute; top: 28px; left: 0; right: 0;
    height: 2px; background: linear-gradient(90deg, transparent, var(--accent), var(--accent), transparent);
    z-index: 0;
  }
  .ts-card { padding: 1rem 1.25rem; padding-top: 0; position: relative; z-index: 1; }
  .ts-dot-wrap { display: flex; align-items: center; justify-content: center; height: 58px; }
  .ts-dot {
    width: 14px; height: 14px; border-radius: 50%;
    background: var(--off-white); border: 2px solid var(--accent);
    flex-shrink: 0; transition: all 0.3s; z-index: 2;
  }
  .ts-card:hover .ts-dot { background: var(--accent); transform: scale(1.5); }
  .ts-body {
    background: var(--off-white); border: 1px solid var(--border);
    border-radius: 14px; padding: 1.25rem; transition: all 0.3s;
  }
  .ts-card:hover .ts-body { border-color: var(--accent-light); box-shadow: 0 8px 24px rgba(0,0,0,0.07); }
  .ts-week { font-size: 0.7rem; color: var(--accent); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 0.3rem; }
  .ts-title { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; color: var(--primary); margin-bottom: 0.4rem; }
  .ts-text { font-size: 0.82rem; color: var(--text-light); line-height: 1.58; }

  /* ─── CANDIDACY — Two-panel with checklist ─── */
  .candidacy { background: var(--off-white); }
  .cand-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
  .cand-panel { background: var(--white); border-radius: 20px; padding: 2.5rem; border: 1px solid var(--border); }
  .cand-panel.good { border-top: 4px solid #2a8a4a; }
  .cand-panel.caution { border-top: 4px solid #c9a96e; }
  .cand-panel-title { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: var(--primary); margin-bottom: 0.4rem; }
  .cand-panel-sub { font-size: 0.85rem; color: var(--text-light); margin-bottom: 1.75rem; }
  .cand-list { display: flex; flex-direction: column; gap: 0.85rem; }
  .cand-item { display: flex; gap: 0.9rem; align-items: flex-start; padding: 0.9rem 1rem; border-radius: 10px; border: 1px solid var(--border); transition: border-color 0.2s; }
  .cand-item:hover { border-color: var(--accent-light); }
  .cand-item.warn { background: #fffbf5; border-color: #f0dfc0; }
  .cand-item.warn:hover { border-color: var(--accent); }
  .cand-emoji { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }
  .cand-name { font-weight: 500; font-size: 0.9rem; color: var(--primary); margin-bottom: 2px; }
  .cand-desc { font-size: 0.83rem; color: var(--text-light); line-height: 1.5; }

  /* ─── COST ─── */
  .cost { background: var(--primary); }
  .cost .section-title { color: var(--white); }
  .cost .section-label { color: var(--accent); }
  .cost .section-desc { color: rgba(255,255,255,0.6); }
  .cost-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
  .cost-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(201,169,110,0.2); border-radius: 20px; padding: 2.5rem 2rem; text-align: center; transition: all 0.3s; position: relative; overflow: hidden; }
  .cost-card.featured { background: rgba(201,169,110,0.1); border-color: rgba(201,169,110,0.5); transform: scale(1.03); }
  .cost-card.featured::before { content: 'Most Popular'; position: absolute; top: 1rem; left: 50%; transform: translateX(-50%); background: var(--accent); color: var(--white); font-size: 0.7rem; letter-spacing: 1px; padding: 0.25rem 0.85rem; border-radius: 20px; white-space: nowrap; }
  .cost-card:hover:not(.featured) { transform: translateY(-4px); border-color: rgba(201,169,110,0.4); }
  .cost-label { font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 0.75rem; }
  .cost-range { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 700; color: var(--white); line-height: 1.1; margin-bottom: 0.25rem; }
  .cost-range span { font-size: 1rem; color: rgba(255,255,255,0.4); }
  .cost-sub { font-size: 0.82rem; color: rgba(255,255,255,0.45); margin-bottom: 1.75rem; }
  .cost-features { display: flex; flex-direction: column; gap: 0.6rem; text-align: left; margin-bottom: 2rem; }
  .cost-feature { display: flex; gap: 0.6rem; font-size: 0.85rem; color: rgba(255,255,255,0.65); align-items: center; }
  .cost-feature::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; }
  .cost-btn { display: block; width: 100%; padding: 0.85rem; border: 1px solid rgba(201,169,110,0.4); background: transparent; color: var(--accent); border-radius: 50px; font-family: 'DM Sans', sans-serif; font-size: 0.88rem; cursor: pointer; transition: all 0.2s; }
  .cost-btn:hover, .cost-card.featured .cost-btn { background: var(--accent); color: var(--white); border-color: var(--accent); }

  /* ─── FAQ ─── */
  .faq { background: var(--white); }
  .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
  .faq-image img { width: 100%; border-radius: 20px; height: 560px; object-fit: cover; }
  .faq-items { display: flex; flex-direction: column; gap: 0.75rem; }
  .faq-item { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: border-color 0.2s; }
  .faq-item.open { border-color: var(--accent-light); }
  .faq-q { display: flex; justify-content: space-between; align-items: center; padding: 1.1rem 1.25rem; cursor: pointer; font-weight: 500; font-size: 0.93rem; color: var(--primary); gap: 1rem; }
  .faq-q:hover { color: var(--accent); }
  .faq-icon { width: 24px; height: 24px; border-radius: 50%; background: var(--off-white); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; transition: background 0.2s, transform 0.3s; }
  .faq-item.open .faq-icon { background: var(--accent); color: var(--white); transform: rotate(45deg); }
  .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; padding: 0 1.25rem; font-size: 0.9rem; color: var(--text-light); line-height: 1.75; }
  .faq-item.open .faq-a { max-height: 300px; padding: 0 1.25rem 1.1rem; }

  /* ─── REVIEWS ─── */
  .reviews { background: var(--off-white); }
  .reviews-header { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 1.5rem; margin-bottom: 3rem; }
  .overall-rating { display: flex; align-items: center; gap: 1.5rem; }
  .rating-big { font-family: 'Cormorant Garamond', serif; font-size: 5rem; font-weight: 700; color: var(--primary); line-height: 1; }
  .rating-meta { display: flex; flex-direction: column; gap: 0.25rem; }
  .stars { color: #f59e0b; font-size: 1.3rem; letter-spacing: 2px; }
  .rating-count { font-size: 0.85rem; color: var(--text-light); }
  .rating-source { font-size: 0.78rem; color: var(--accent); }
  .reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .review-card { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 1.75rem; transition: all 0.3s; position: relative; }
  .review-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.08); border-color: var(--accent-light); }
  .review-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1rem; }
  .reviewer { display: flex; align-items: center; gap: 0.75rem; }
  .reviewer-avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 700; color: var(--white); flex-shrink: 0; }
  .reviewer-name { font-weight: 500; font-size: 0.93rem; color: var(--primary); }
  .reviewer-date { font-size: 0.78rem; color: var(--text-light); margin-top: 1px; }
  .review-stars { color: #f59e0b; font-size: 0.9rem; }
  .review-badge { position: absolute; top: 1.25rem; right: 1.25rem; background: var(--off-white); border: 1px solid var(--border); border-radius: 20px; padding: 0.2rem 0.65rem; font-size: 0.7rem; color: var(--text-light); }
  .review-text { font-size: 0.9rem; color: var(--text); line-height: 1.75; }
  .review-treatment { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--border); font-size: 0.78rem; color: var(--accent); font-weight: 500; }
  .review-treatment::before { content: '🩸 '; }
  .reviews-footer { text-align: center; margin-top: 2.5rem; }
  .google-badge { display: inline-flex; align-items: center; gap: 0.75rem; background: var(--white); border: 1px solid var(--border); border-radius: 50px; padding: 0.75rem 1.5rem; font-size: 0.88rem; color: var(--text); }
  .google-g { font-weight: 700; font-size: 1.1rem; }
  .g-b{color:#4285F4}.g-r{color:#EA4335}.g-y{color:#FBBC05}.g-gr{color:#34A853}

  /* ─── APPOINTMENT ─── */
  .appointment { background: var(--off-white); }
  .appt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
  .appt-form { background: var(--white); border-radius: 20px; padding: 3rem; border: 1px solid var(--border); box-shadow: 0 8px 40px rgba(0,0,0,0.06); }
  .appt-form h3 { font-size: 1.8rem; color: var(--primary); margin-bottom: 0.5rem; }
  .appt-form p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 2rem; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .form-group { margin-bottom: 1.25rem; }
  .form-group label { display: block; font-size: 0.8rem; font-weight: 500; color: var(--text); letter-spacing: 0.5px; margin-bottom: 0.4rem; }
  .form-group input, .form-group select { width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--border); border-radius: 10px; font-family: 'DM Sans', sans-serif; font-size: 0.9rem; color: var(--text); background: var(--white); transition: border-color 0.2s, box-shadow 0.2s; outline: none; appearance: none; }
  .form-group input:focus, .form-group select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(201,169,110,0.12); }
  .form-full { grid-column: 1 / -1; }
  .submit-btn { width: 100%; padding: 1rem; background: linear-gradient(135deg, var(--accent), #b8924f); color: var(--white); border: none; border-radius: 10px; font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 500; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; margin-top: 0.5rem; }
  .submit-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,169,110,0.35); }
  .contact-info { padding-top: 1rem; }
  .contact-info h3 { font-size: 2rem; color: var(--primary); margin-bottom: 1rem; }
  .contact-info p { color: var(--text-light); line-height: 1.7; margin-bottom: 2rem; }
  .info-items { display: flex; flex-direction: column; gap: 1.5rem; }
  .info-item { display: flex; gap: 1rem; align-items: flex-start; }
  .info-icon { width: 44px; height: 44px; background: linear-gradient(135deg, #f5ede0, #ead5b4); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
  .info-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: var(--accent); margin-bottom: 2px; }
  .info-value { color: var(--text); font-size: 0.93rem; line-height: 1.5; }

  /* ─── FOOTER ─── */
  footer { background: #111126; color: rgba(255,255,255,0.65); padding: 5rem 0 0; }
  .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 4rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .footer-logo-top { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 700; color: var(--white); }
  .footer-logo-top span { color: var(--accent); }
  .footer-logo-sub { font-size: 0.65rem; color: rgba(255,255,255,0.4); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 1rem; display: block; }
  .footer-about p { font-size: 0.88rem; line-height: 1.75; }
  .footer-heading { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--white); margin-bottom: 1.25rem; padding-bottom: 0.5rem; border-bottom: 1px solid rgba(201,169,110,0.3); }
  .footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
  .footer-links a { color: rgba(255,255,255,0.6); font-size: 0.88rem; transition: color 0.2s; display: flex; align-items: center; gap: 0.4rem; }
  .footer-links a::before { content: '›'; color: var(--accent); }
  .footer-links a:hover { color: var(--accent); }
  .footer-hours { display: flex; flex-direction: column; gap: 0.5rem; }
  .footer-hours li { display: flex; justify-content: space-between; font-size: 0.85rem; padding-bottom: 0.4rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .footer-bar { padding: 1.5rem 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: 0.82rem; }
  .footer-bar a { color: var(--accent); }

  /* ─── RESPONSIVE ─── */
  @media(max-width:1024px) {
    .overview-layout { grid-template-columns: 1fr; }
    .ov-center { min-height: 280px; }
    .bs-grid { grid-template-columns: 1fr; }
    .cond-header { grid-template-columns: 1fr; }
    .mosaic { grid-template-columns: 1fr 1fr; }
    .mosaic-card.span2 { grid-column: span 2; }
    .timeline-scroll { grid-template-columns: 1fr 1fr 1fr; }
    .timeline-scroll::before { display: none; }
    .cand-grid { grid-template-columns: 1fr; }
    .cost-cards { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
    .cost-card.featured { transform: none; }
    .faq-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .appt-grid { grid-template-columns: 1fr; }
    .ba-grid { grid-template-columns: 1fr 1fr; }
    .zz-step { grid-template-columns: 1fr; }
    .zz-center { display: none; }
    .zz-step:nth-child(even) { direction: ltr; }
  }
  @media(max-width:768px) {
    .main-nav, .header-cta { display: none; }
    .hamburger { display: flex; }
    .hero-badge-float { display: none; }
    .hero-particles { display: none; }
    .mosaic { grid-template-columns: 1fr; }
    .mosaic-card.span2 { grid-column: span 1; flex-direction: column; }
    .timeline-scroll { grid-template-columns: 1fr 1fr; }
    .ba-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .reviews-header { flex-direction: column; }
    .form-row { grid-template-columns: 1fr; }
    .page-hero-stats { gap: 1.5rem; }
  }
