
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --navy:       #0D1F35;
    --navy-mid:   #162B45;
    --teal:       #22B8CF;
    --teal-light: #67D5E8;
    --teal-pale:  #E0F7FA;
    --gold:       #B87820;
    --gold-light: #D4921C;
    --gold-pale:  #FDF6EC;
    --cream:      #F8F5F0;
    --cream-dark: #EFE9E0;
    --border:     #E8E3DB;
    --border-dark:#D0C8BC;
    --text:       #111827;
    --text-mid:   #4B5563;
    --text-light: #9CA3AF;
    --white:      #FFFFFF;
    --serif:      'Cormorant Garamond', Georgia, serif;
    --sans:       'DM Sans', system-ui, sans-serif;
    --r:          4px;
    --rl:         12px;
  }
  html { scroll-behavior: smooth; }
  body { font-family: var(--sans); color: var(--text); background: var(--white); overflow-x: hidden; }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 5%; height: 70px;
    background: rgba(255,255,255,0.95); backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s;
  }
  nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.07); }
  .nav-logo { font-family: var(--serif); font-size: 16px; font-weight: 600; color: var(--navy); text-decoration: none; letter-spacing: 0.01em; }
  .nav-logo span { color: var(--teal); }
  .nav-links { display: flex; align-items: center; gap: 32px; }
  .nav-links a { font-size: 14px; font-weight: 400; color: var(--text-mid); text-decoration: none; letter-spacing: 0.02em; transition: color 0.2s; }
  .nav-links a:hover { color: var(--navy); }
  .nav-cta { background: var(--navy) !important; color: var(--white) !important; padding: 10px 22px; border-radius: var(--r); font-weight: 500 !important; font-size: 13px !important; letter-spacing: 0.04em; transition: background 0.2s !important; }
  .nav-cta:hover { background: var(--teal) !important; }
  .nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
  .nav-hamburger span { width: 22px; height: 1.5px; background: var(--navy); }

  /* HERO */
  .hero {
    padding: 140px 5% 100px; background: var(--white);
    border-bottom: 1px solid var(--border);
  }
  .hero-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; align-items: center; }
  .hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--border-dark); border-radius: 100px; padding: 6px 16px; margin-bottom: 28px; }
  .hero-eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); animation: pulse 2.2s infinite; }
  @keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }
  .hero-eyebrow span { font-size: 11px; font-weight: 500; color: var(--teal); letter-spacing: 0.12em; text-transform: uppercase; }
  .hero h1 { font-family: var(--serif); font-size: clamp(42px, 5vw, 66px); font-weight: 300; color: var(--navy); line-height: 1.1; letter-spacing: -0.01em; margin-bottom: 24px; }
  .hero h1 em { font-style: italic; color: var(--teal); }
  .hero-sub { font-size: 16px; font-weight: 300; color: var(--text-mid); line-height: 1.8; margin-bottom: 44px; max-width: 500px; }
  .hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }
  .btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--navy); color: var(--white); padding: 14px 28px; border-radius: var(--r); font-weight: 500; font-size: 14px; letter-spacing: 0.03em; text-decoration: none; transition: background 0.2s, transform 0.15s; }
  .btn-primary:hover { background: var(--teal); transform: translateY(-1px); }
  .btn-outline { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--text-mid); border: 1px solid var(--border-dark); padding: 13px 28px; border-radius: var(--r); font-weight: 400; font-size: 14px; text-decoration: none; transition: all 0.2s; }
  .btn-outline:hover { border-color: var(--navy); color: var(--navy); }
  .hero-trust { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; padding-top: 28px; border-top: 1px solid var(--border); }
  .hero-trust-item { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 400; color: var(--text-light); }
  .hero-trust-item svg { color: var(--teal); flex-shrink: 0; }

  /* HERO STATS - right column */
  .hero-right { display: flex; flex-direction: column; gap: 3px; }
  .stat-card { background: var(--cream); border: 1px solid var(--border); padding: 28px 32px; position: relative; overflow: hidden; }
  .stat-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; }
  .stat-card:nth-child(1)::before { background: var(--teal); }
  .stat-card:nth-child(2)::before { background: var(--gold); }
  .stat-card:nth-child(3)::before { background: var(--navy); }
  .stat-card-num { font-family: var(--serif); font-size: 44px; font-weight: 300; color: var(--navy); line-height: 1; margin-bottom: 8px; }
  .stat-card:nth-child(1) .stat-card-num { color: var(--teal); }
  .stat-card:nth-child(2) .stat-card-num { color: var(--gold); }
  .stat-card-label { font-size: 13px; font-weight: 300; color: var(--text-mid); line-height: 1.55; }
  .stat-card-label strong { color: var(--text); font-weight: 500; display: block; margin-bottom: 2px; }

  /* TRUST BAR */
  .trust-bar { background: var(--navy); padding: 18px 5%; }
  .trust-bar-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
  .trust-item { display: flex; align-items: center; gap: 8px; }
  .trust-item svg { color: var(--gold-light); flex-shrink: 0; }
  .trust-text { font-size: 12px; font-weight: 400; color: rgba(255,255,255,0.65); letter-spacing: 0.03em; }

  /* SECTION SHARED */
  section { padding: 96px 5%; }
  .section-inner { max-width: 1200px; margin: 0 auto; }
  .section-eyebrow { font-size: 11px; font-weight: 500; color: var(--teal); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 12px; }
  .section-title { font-family: var(--serif); font-size: clamp(32px, 4vw, 50px); font-weight: 300; line-height: 1.18; color: var(--navy); margin-bottom: 18px; }
  .section-title em { font-style: italic; color: var(--teal); }
  .section-sub { font-size: 15px; font-weight: 300; color: var(--text-mid); line-height: 1.8; max-width: 540px; }

  /* AUDIENCES */
  .audiences { background: var(--cream); }
  .audiences-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 56px; }
  .audience-card { background: var(--white); padding: 48px 44px; border-top: 3px solid transparent; }
  .audience-card.surgeons { border-top-color: var(--teal); }
  .audience-card.patients { border-top-color: var(--gold); }
  .audience-tag { display: inline-block; font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; padding: 5px 14px; border-radius: 100px; margin-bottom: 22px; }
  .audience-card.surgeons .audience-tag { background: var(--teal-pale); color: var(--teal); }
  .audience-card.patients .audience-tag { background: var(--gold-pale); color: var(--gold); }
  .audience-card h3 { font-family: var(--serif); font-size: 28px; font-weight: 300; color: var(--navy); margin-bottom: 14px; line-height: 1.3; }
  .audience-card p { font-size: 14px; font-weight: 300; color: var(--text-mid); line-height: 1.8; margin-bottom: 26px; }
  .audience-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
  .audience-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--text-mid); line-height: 1.6; }
  .audience-list li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; margin-top: 8px; flex-shrink: 0; }
  .audience-card.surgeons .audience-list li::before { background: var(--teal); }
  .audience-card.patients .audience-list li::before { background: var(--gold); }
  .audience-link { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; text-decoration: none; transition: gap 0.2s; }
  .audience-card.surgeons .audience-link { color: var(--teal); }
  .audience-card.patients .audience-link { color: var(--gold); }
  .audience-link:hover { gap: 12px; }

  /* HOW IT WORKS */
  .how { background: var(--white); }
  .how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 60px; }
  .step { background: var(--cream); padding: 40px 36px; position: relative; border-top: 2px solid var(--border); transition: border-top-color 0.2s; }
  .step:hover { border-top-color: var(--teal); }
  .step-num { font-family: var(--serif); font-size: 60px; font-weight: 300; color: rgba(13,31,53,0.06); line-height: 1; position: absolute; top: 20px; right: 24px; }
  .step-icon { width: 44px; height: 44px; border-radius: var(--r); background: var(--navy); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; }
  .step h4 { font-family: var(--serif); font-size: 21px; font-weight: 400; color: var(--navy); margin-bottom: 10px; }
  .step p { font-size: 14px; font-weight: 300; color: var(--text-mid); line-height: 1.75; }

  /* SERVICES */
  .services { background: var(--cream); }
  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 60px; }
  .service-card { background: var(--white); padding: 36px 32px; border-bottom: 2px solid transparent; transition: border-bottom-color 0.25s, box-shadow 0.25s; }
  .service-card:hover { border-bottom-color: var(--teal); box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
  .service-icon-wrap { width: 44px; height: 44px; border: 1.5px solid var(--border-dark); border-radius: var(--r); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
  .service-card h4 { font-family: var(--serif); font-size: 20px; font-weight: 400; color: var(--navy); margin-bottom: 10px; line-height: 1.35; }
  .service-card p { font-size: 13.5px; font-weight: 300; color: var(--text-mid); line-height: 1.75; margin-bottom: 18px; }
  .service-turnaround { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 500; color: var(--teal); letter-spacing: 0.03em; }
  .service-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--teal); }

  /* WHY IT MATTERS */
  .why { background: var(--white); }
  .why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 96px; align-items: center; }
  .why-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
  .why-stat { background: var(--cream); padding: 30px 26px; border-left: 3px solid var(--border-dark); }
  .why-stat:nth-child(1) { border-left-color: var(--teal); }
  .why-stat:nth-child(2) { border-left-color: var(--gold); }
  .why-stat:nth-child(3) { border-left-color: var(--navy); }
  .why-stat:nth-child(4) { border-left-color: var(--teal-light); }
  .why-stat-num { font-family: var(--serif); font-size: 46px; font-weight: 300; color: var(--navy); line-height: 1; margin-bottom: 8px; }
  .why-stat:nth-child(1) .why-stat-num { color: var(--teal); }
  .why-stat:nth-child(2) .why-stat-num { color: var(--gold); }
  .why-stat-label { font-size: 12px; font-weight: 400; color: var(--text-light); line-height: 1.6; }
  .why-stat-label strong { color: var(--text-mid); font-weight: 500; display: block; margin-bottom: 2px; }
  .why-content { display: flex; flex-direction: column; gap: 28px; }
  .why-point { display: flex; gap: 18px; }
  .why-point-bar { width: 3px; min-height: 100%; background: var(--teal); flex-shrink: 0; border-radius: 2px; }
  .why-point h4 { font-family: var(--serif); font-size: 19px; font-weight: 400; color: var(--navy); margin-bottom: 6px; }
  .why-point p { font-size: 14px; font-weight: 300; color: var(--text-mid); line-height: 1.75; }

  /* ABOUT */
  .about { background: var(--cream); }
  .about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
  .about-quote-block { background: var(--navy); border-radius: var(--rl); padding: 44px 40px; }
  .about-quote { font-family: var(--serif); font-size: 20px; font-weight: 300; font-style: italic; color: rgba(255,255,255,0.9); line-height: 1.6; margin-bottom: 24px; }
  .about-attr { font-size: 12px; font-weight: 400; color: rgba(255,255,255,0.4); line-height: 1.6; }
  .about-attr strong { color: rgba(255,255,255,0.7); display: block; margin-bottom: 2px; }
  .about-badges { display: flex; flex-direction: column; gap: 10px; margin-top: 28px; }
  .badge { display: flex; align-items: center; gap: 12px; padding: 14px 16px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--r); }
  .badge-icon { width: 30px; height: 30px; border-radius: 50%; background: rgba(196,132,26,0.18); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .badge-text { font-size: 12.5px; font-weight: 400; color: rgba(255,255,255,0.6); line-height: 1.5; }
  .badge-text strong { color: rgba(255,255,255,0.88); font-weight: 500; display: block; }
  .about-content h2 { font-family: var(--serif); font-size: clamp(28px, 3vw, 42px); font-weight: 300; color: var(--navy); line-height: 1.22; margin-bottom: 18px; }
  .about-content p { font-size: 14px; font-weight: 300; color: var(--text-mid); line-height: 1.82; margin-bottom: 18px; }
  .credentials { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
  .credential { display: flex; align-items: flex-start; gap: 14px; padding: 14px 18px; background: var(--white); border: 1px solid var(--border); border-radius: var(--r); border-left: 3px solid var(--teal); }
  .credential p { font-size: 13px; font-weight: 300; color: var(--text-mid); line-height: 1.6; }
  .credential p strong { color: var(--navy); font-weight: 500; display: block; margin-bottom: 2px; }

  /* FAQ */
  .faq { background: var(--white); }
  .faq-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 96px; }
  .faq-list { display: flex; flex-direction: column; gap: 1px; }
  .faq-item { border-bottom: 1px solid var(--border); }
  .faq-question { width: 100%; background: none; border: none; padding: 20px 0; text-align: left; display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; cursor: pointer; font-family: var(--serif); font-size: 17px; font-weight: 400; color: var(--navy); line-height: 1.35; transition: color 0.2s; }
  .faq-question:hover { color: var(--teal); }
  .faq-chevron { width: 18px; height: 18px; color: var(--text-light); flex-shrink: 0; margin-top: 2px; transition: transform 0.3s; }
  .faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--teal); }
  .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
  .faq-answer-inner { padding: 0 0 20px; font-size: 14px; font-weight: 300; color: var(--text-mid); line-height: 1.8; }
  .faq-item.open .faq-answer { max-height: 400px; }

  /* CTA / CONTACT */
  .cta-section { background: var(--cream); border-top: 1px solid var(--border); padding: 96px 5%; }
  .cta-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
  .cta-section h2 { font-family: var(--serif); font-size: clamp(32px, 4vw, 50px); font-weight: 300; color: var(--navy); line-height: 1.18; margin-bottom: 16px; }
  .cta-section h2 em { font-style: italic; color: var(--teal); }
  .cta-section > .cta-inner > div > p { font-size: 15px; font-weight: 300; color: var(--text-mid); line-height: 1.8; margin-bottom: 36px; }
  .contact-details { display: flex; flex-direction: column; gap: 14px; }
  .contact-item { display: flex; align-items: flex-start; gap: 14px; padding: 16px 18px; background: var(--white); border: 1px solid var(--border); border-radius: var(--r); }
  .contact-item-icon { width: 34px; height: 34px; border: 1px solid var(--border-dark); border-radius: var(--r); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .contact-item-text { font-size: 13px; font-weight: 300; color: var(--text-mid); line-height: 1.55; }
  .contact-item-text strong { color: var(--text); font-weight: 500; display: block; margin-bottom: 2px; }
  .contact-item-text a { color: var(--teal); text-decoration: none; }

  /* REFERRAL FORM */
  .referral-form { background: var(--white); border: 1px solid var(--border); border-radius: var(--rl); padding: 40px; }
  .form-title { font-family: var(--serif); font-size: 24px; font-weight: 400; color: var(--navy); margin-bottom: 6px; }
  .form-sub { font-size: 13px; font-weight: 300; color: var(--text-light); margin-bottom: 28px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
  .form-group { display: flex; flex-direction: column; gap: 6px; }
  .form-group label { font-size: 11px; font-weight: 500; color: var(--text-light); letter-spacing: 0.1em; text-transform: uppercase; }
  .form-group input, .form-group select, .form-group textarea {
    background: var(--cream); border: 1px solid var(--border-dark);
    border-radius: var(--r); padding: 11px 14px; font-family: var(--sans);
    font-size: 14px; font-weight: 300; color: var(--text); outline: none;
    transition: border-color 0.2s; width: 100%;
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--teal); background: var(--white); }
  .form-group textarea { resize: none; }
  .form-full { grid-column: 1 / -1; }
  .form-submit { margin-top: 20px; width: 100%; background: var(--navy); color: var(--white); border: none; padding: 14px 28px; border-radius: var(--r); font-family: var(--sans); font-size: 14px; font-weight: 500; letter-spacing: 0.04em; cursor: pointer; transition: background 0.2s; }
  .form-submit:hover { background: var(--teal); }
  .form-disclaimer { font-size: 11px; color: var(--text-light); line-height: 1.65; margin-top: 14px; text-align: center; }

  /* FOOTER */
  footer { background: var(--navy); padding: 56px 5% 32px; }
  .footer-inner { max-width: 1200px; margin: 0 auto; }
  .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .footer-brand-name { font-family: var(--serif); font-size: 18px; font-weight: 600; color: var(--white); margin-bottom: 12px; }
  .footer-brand-name span { color: var(--teal-light); }
  .footer-brand-desc { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.4); line-height: 1.7; margin-bottom: 18px; max-width: 280px; }
  .footer-col h5 { font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.3); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 18px; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col ul li a { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
  .footer-col ul li a:hover { color: var(--white); }
  .footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; flex-wrap: wrap; gap: 12px; }
  .footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.22); }
  .footer-legal { display: flex; gap: 22px; }
  .footer-legal a { font-size: 12px; color: rgba(255,255,255,0.22); text-decoration: none; }
  .footer-legal a:hover { color: rgba(255,255,255,0.5); }

  /* ANIMATIONS */
  .fade-up { opacity: 0; transform: translateY(20px); transition: opacity 0.65s ease, transform 0.65s ease; }
  .fade-up.visible { opacity: 1; transform: translateY(0); }
  .fade-up:nth-child(2) { transition-delay: 0.1s; }
  .fade-up:nth-child(3) { transition-delay: 0.2s; }
  .fade-up:nth-child(4) { transition-delay: 0.3s; }
  .fade-up:nth-child(5) { transition-delay: 0.35s; }
  .fade-up:nth-child(6) { transition-delay: 0.4s; }

  /* MOBILE */
  @media (max-width: 900px) {
    .hero-inner, .audiences-grid, .how-grid, .services-grid, .why-inner, .about-inner, .faq-inner, .cta-inner, .footer-top { grid-template-columns: 1fr; gap: 36px; }
    .why-stats { grid-template-columns: 1fr 1fr; }
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .trust-bar-inner { justify-content: flex-start; }
  }
  @media (max-width: 600px) {
    section { padding: 64px 5%; }
    .hero { padding: 100px 5% 60px; }
    .footer-top { grid-template-columns: 1fr; }
    .why-stats { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
  }
  #hsmh-bar { position: fixed; top: 0; left: 0; right: 0; z-index: 101; }
  nav { top: 38px !important; }
  .hero { padding-top: 158px !important; }
