﻿/**
 * ═══════════════════════════════════════════════════════════════
 *  PHARMACY MENTOR — MAIN FRONT-END STYLESHEET
 * ═══════════════════════════════════════════════════════════════
 *
 *  Ported from the static html-theme design. Brand colors are NOT
 *  defined here — they live in assets/css/colors.css (driven by the
 *  Customizer). Mobile rules live in assets/css/responsive.css.
 *  Per-page styles live in assets/css/pages/*.css.
 *
 *  SECTION MAP (search for the heading to jump):
 *    :root / base ............ design tokens, resets, typography, buttons
 *    HEADER .................. top bar, main header, nav, mega menu, mobile drawer
 *    HERO ................... homepage hero + side card
 *    .trust-bar ............. trust features strip
 *    .weight-loss .......... weight-loss promo + calculator card
 *    .shop / .product-card .. popular products grid
 *    .how-it-works ......... numbered steps
 *    .categories-section ... "Conditions we treat" cards
 *    .services-section ..... in-clinic services cards
 *    .reviews-section ...... patient reviews + video stories + lightbox
 *    .team-section ......... who-are-we / team grid
 *    .partners-section ..... partner / accreditation logos
 *    .blog-section ......... "from the blog" cards
 *    .faq-section .......... FAQ accordion
 *    .cta-banner ........... closing call-to-action
 *    FOOTER ................ footer columns, pharmacy details, copyright bar
 *
 *  Each homepage section is rendered by template-parts/home/<name>.php.
 * ═══════════════════════════════════════════════════════════════
 */
:root {
    --section-pad: clamp(60px, 8vw, 120px);
    --content-max: 1200px;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-pill: 100px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
  body {
    font-family: 'DM Sans', -apple-system, sans-serif;
    color: var(--navy);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
  }
  h1, h2, h3, h4 {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.02em;
  }
  img { max-width: 100%; display: block; }
  a { text-decoration: none; color: inherit; }
  .container {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 40px);
  }

  /* ── UTILITY BAR ── */
  .utility-bar {
    background: var(--navy);
    color: var(--on-dark-70);
    font-size: 13px;
    padding: 8px 0;
    letter-spacing: 0.02em;
  }
  .utility-bar .container { display: flex; justify-content: space-between; align-items: center; }
  .utility-bar a { color: var(--on-dark-85); transition: color var(--transition); }
  .utility-bar a:hover { color: var(--teal); }
  .utility-links { display: flex; gap: 20px; align-items: center; }
  .utility-links svg { width: 14px; height: 14px; }

  /* ── HEADER ── */
  .site-header {
    background: var(--white);
    border-bottom: 1px solid var(--grey-200);
    position: sticky; top: 0; z-index: 100;
    transition: box-shadow var(--transition);
  }
  .site-header.scrolled { box-shadow: var(--shadow-md); }
  .header-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 0; gap: 32px;
    position: relative;
  }
  .logo {
    display: flex; align-items: center; gap: 10px;
    font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 20px;
    color: var(--navy); white-space: nowrap; flex-shrink: 0;
  }
  .logo-icon {
    width: 36px; height: 36px; background: var(--teal);
    border-radius: 8px; display: flex; align-items: center; justify-content: center;
  }
  .logo-icon svg { width: 20px; height: 20px; fill: var(--white); }
  .logo span { color: var(--teal); }

  .main-nav { display: flex; gap: 0; align-items: center; position: static; }
  .nav-item {
    position: static;
  }
  .nav-item > a {
    display: flex; align-items: center; gap: 4px;
    font-size: 14px; font-weight: 500; color: var(--grey-700);
    transition: color var(--transition); white-space: nowrap;
    padding: 8px 14px; position: relative; cursor: pointer;
  }
  .nav-item > a:hover { color: var(--navy); }
  .nav-item > a .chevron {
    width: 12px; height: 12px; transition: transform var(--transition);
  }
  .nav-item.open > a { color: var(--teal); }
  .nav-item.open > a .chevron { transform: rotate(180deg); }

  /* ── MEGA MENU ── */
  .mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    width: 860px;
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    box-shadow: 0 20px 60px var(--dark-12);
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 200;
    display: grid;
    grid-template-columns: 1fr 280px;
  }
  .mega-menu.mega-wide { width: 960px; }
  .nav-item.open .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
  .mega-overlay {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: var(--dark-15); z-index: 199;
    display: none;
  }
  .mega-overlay.active { display: block; }
  .mega-main {
    padding: 28px 32px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 28px;
  }
  .mega-col {}
  .mega-col-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--teal); margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--grey-100);
  }
  .mega-col ul { list-style: none; }
  .mega-col li { margin-bottom: 4px; }
  .mega-col a {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 12px; border-radius: 8px;
    font-size: 14px; font-weight: 500; color: var(--grey-700);
    transition: all var(--transition);
  }
  .mega-col a:hover {
    background: var(--teal-subtle); color: var(--navy);
  }
  .mega-col a::after { display: none; }
  .mega-icon {
    width: 32px; height: 32px; background: var(--grey-100);
    border-radius: 8px; display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; transition: all var(--transition);
  }
  .mega-col a:hover .mega-icon { background: var(--teal-glow); }
  .mega-icon svg { width: 16px; height: 16px; color: var(--grey-500); }
  .mega-col a:hover .mega-icon svg { color: var(--teal); }
  .mega-link-text { display: flex; flex-direction: column; }
  .mega-link-text span { font-size: 14px; font-weight: 500; }
  .mega-link-text small { font-size: 11px; color: var(--grey-500); font-weight: 400; margin-top: 1px; }

  .mega-featured {
    background: var(--off-white);
    border-left: 1px solid var(--grey-200);
    padding: 32px;
    border-radius: 0 0 var(--radius-lg) 0;
    display: flex; flex-direction: column; justify-content: center;
  }
  .mega-featured-label {
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.08em; color: var(--teal); margin-bottom: 12px;
  }
  .mega-featured h4 {
    font-size: 20px; margin-bottom: 10px; line-height: 1.3;
  }
  .mega-featured p {
    font-size: 13px; color: var(--grey-500); line-height: 1.6; margin-bottom: 20px;
  }
  .mega-featured-stat {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 16px; background: var(--white);
    border-radius: var(--radius); border: 1px solid var(--grey-200);
    margin-bottom: 20px;
  }
  .mega-featured-stat-icon {
    width: 36px; height: 36px; background: var(--teal-glow); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  }
  .mega-featured-stat-icon svg { width: 16px; height: 16px; color: var(--teal); }
  .mega-featured-stat-num { font-family: 'Fraunces', Georgia, serif; font-size: 20px; font-weight: 600; color: var(--teal); }
  .mega-featured-stat-label { font-size: 11px; color: var(--grey-500); }
  .mega-featured .btn-primary { font-size: 13px; padding: 10px 20px; }

  /* Mega menu for services — 2 columns in main */
  .mega-main.mega-services {
    grid-template-columns: 1fr 1fr;
  }

  .header-actions { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
  .icon-btn {
    width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--grey-200);
    background: transparent; display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all var(--transition); color: var(--grey-700);
  }
  .icon-btn:hover { border-color: var(--teal); color: var(--teal); }
  .icon-btn svg { width: 18px; height: 18px; }
  .cart-btn { position: relative; }
  .cart-count {
    position: absolute; top: -2px; right: -2px; width: 18px; height: 18px;
    background: var(--teal); color: var(--white); font-size: 10px; font-weight: 700;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
  }

  /* ── BUTTONS ── */
  .btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 28px; background: var(--teal); color: var(--white);
    font-size: 14px; font-weight: 600; border-radius: var(--radius-pill);
    border: none; cursor: pointer; transition: all var(--transition); white-space: nowrap;
    font-family: 'DM Sans', sans-serif;
  }
  .btn-primary:hover { background: var(--teal-dark); transform: translateY(-1px); box-shadow: 0 4px 16px var(--primary-30); }
  .btn-primary svg { width: 16px; height: 16px; }
  .btn-white {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px; background: var(--white); color: var(--navy);
    font-size: 15px; font-weight: 600; border-radius: var(--radius-pill);
    border: none; cursor: pointer; transition: all var(--transition);
    font-family: 'DM Sans', sans-serif;
  }
  .btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
  .btn-outline-white {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 28px; background: transparent; color: var(--white);
    font-size: 14px; font-weight: 600; border-radius: var(--radius-pill);
    border: 2px solid var(--on-dark-40); cursor: pointer; transition: all var(--transition);
    font-family: 'DM Sans', sans-serif;
  }
  .btn-outline-white:hover { border-color: var(--white); background: var(--on-dark-10); }
  .btn-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 28px; background: transparent; color: var(--navy);
    font-size: 14px; font-weight: 600; border-radius: var(--radius-pill);
    border: 2px solid var(--grey-200); cursor: pointer; transition: all var(--transition);
    font-family: 'DM Sans', sans-serif;
  }
  .btn-secondary:hover { border-color: var(--navy); }

  /* ── SECTION HELPERS ── */
  .section-eyebrow {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.1em; color: var(--teal); margin-bottom: 16px;
  }
  .section-eyebrow::before { content: ''; width: 20px; height: 2px; background: var(--teal); border-radius: 1px; }
  .section-header { text-align: center; margin-bottom: 48px; }
  .section-header h2 { font-size: clamp(28px, 3.5vw, 40px); margin-bottom: 12px; }
  .section-header p { font-size: 16px; color: var(--grey-500); max-width: 540px; margin: 0 auto; }

  /* ════════════════════════════════════════
     HERO
  ════════════════════════════════════════ */
  .hero {
    position: relative;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--color-dark-tint) 100%);
    padding: clamp(80px, 10vw, 140px) 0;
    overflow: clip;
  }
  .hero::before {
    content: ''; position: absolute; top: -50%; right: -20%;
    width: 700px; height: 700px;
    background: radial-gradient(circle, var(--primary-08) 0%, transparent 70%);
    border-radius: 50%;
  }
  .hero .container {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
    overflow: visible;
  }
  .hero-content { color: var(--white); }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 16px; background: var(--primary-15); border: 1px solid var(--primary-30);
    border-radius: var(--radius-pill); font-size: 13px; font-weight: 600; color: var(--teal);
    margin-bottom: 24px; letter-spacing: 0.03em; text-transform: uppercase;
  }
  .hero h1 { font-size: clamp(36px, 5vw, 56px); color: var(--white); margin-bottom: 20px; line-height: 1.1; }
  .hero h1 em { font-style: normal; color: var(--teal); }
  .hero-sub { font-size: 18px; color: var(--on-dark-70); margin-bottom: 32px; max-width: 480px; line-height: 1.7; }
  .hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
  .hero-trust {
    display: flex; align-items: center; gap: 24px;
    padding-top: 24px; border-top: 1px solid var(--on-dark-10); flex-wrap: wrap;
  }
  .trust-item { display: flex; align-items: center; gap: 8px; }
  .trust-stars { display: flex; gap: 2px; }
  .trust-stars svg { width: 16px; height: 16px; fill: var(--color-star); }
  .trust-label { font-size: 13px; color: var(--on-dark-60); }
  .trust-label strong { color: var(--white); font-weight: 600; }
  .trust-sep { width: 1px; height: 32px; background: var(--on-dark-15); }
  .gphc-badge-hero { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--on-dark-50); }
  .gphc-badge-hero svg { width: 18px; height: 18px; opacity: 0.6; }

  /* Hero card */
  .hero-visual { display: flex; justify-content: center; position: relative; }
  .hero-card-stack { position: relative; width: 100%; max-width: 460px; }
  .hero-card {
    background: var(--white); border-radius: var(--radius-lg); padding: 32px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2); position: relative;
  }
  .hero-card-label { font-size: 12px; font-weight: 600; color: var(--grey-500); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
  .hero-card h3 { font-size: 22px; margin-bottom: 16px; }
  .hero-card-categories { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
  .cat-tag {
    padding: 8px 16px; background: var(--grey-100); border-radius: var(--radius-pill);
    font-size: 13px; font-weight: 500; color: var(--grey-700);
    transition: all var(--transition); cursor: pointer;
  }
  .cat-tag:hover, .cat-tag.active { background: var(--teal); color: var(--white); }
  .hero-card-process { display: flex; gap: 12px; }
  .process-step { flex: 1; text-align: center; padding: 16px 8px; background: var(--cream); border-radius: var(--radius); }
  .process-step-num {
    width: 28px; height: 28px; background: var(--teal); color: var(--white);
    font-size: 13px; font-weight: 700; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; margin: 0 auto 8px;
  }
  .process-step-label { font-size: 11px; font-weight: 600; color: var(--grey-700); line-height: 1.3; }

  .hero-floating-stat {
    display: flex; align-items: center; gap: 10px;
    background: var(--teal-subtle); border: 1px solid var(--primary-20);
    border-radius: var(--radius); padding: 14px 20px;
    margin-bottom: 20px;
    animation: float-subtle 3s ease-in-out infinite;
  }
  .floating-icon {
    width: 36px; height: 36px; background: var(--teal-glow); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
  }
  .floating-icon svg { width: 18px; height: 18px; color: var(--teal); }
  .floating-num { font-size: 20px; font-weight: 700; color: var(--navy); }
  .floating-label { font-size: 11px; color: var(--grey-500); }
  @keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
  @keyframes float-subtle { 0%, 100% { box-shadow: 0 0 0 0 var(--primary-00); } 50% { box-shadow: 0 0 0 4px var(--primary-08); } }

  /* ── TRUST BAR ── */
  .trust-bar { background: var(--white); border-bottom: 1px solid var(--grey-200); padding: 20px 0; }
  .trust-bar .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .trust-feature { display: flex; align-items: center; gap: 14px; padding: 12px 0; }
  .trust-icon {
    width: 44px; height: 44px; background: var(--teal-subtle); border-radius: 10px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  }
  .trust-icon svg { width: 20px; height: 20px; color: var(--teal); }
  .trust-icon i { font-size: 20px; color: var(--teal); }
  .trust-text h4 { font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 600; margin-bottom: 2px; }
  .trust-text p { font-size: 12px; color: var(--grey-500); line-height: 1.4; }

  /* ════════════════════════════════════════
     WEIGHT LOSS SECTION (POM-compliant)
  ════════════════════════════════════════ */
  .weight-loss-section {
    padding: var(--section-pad) 0; background: var(--off-white);
    position: relative; overflow: hidden;
  }
  .weight-loss-section::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 20% 50%, var(--teal-subtle) 0%, transparent 50%);
  }
  .wl-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    align-items: start; position: relative; z-index: 2;
  }
  .wl-content h2 { font-size: clamp(28px, 3.5vw, 40px); margin-bottom: 16px; }
  .wl-content h2 em { font-style: normal; color: var(--teal); }
  .wl-content > p { font-size: 16px; color: var(--grey-700); margin-bottom: 28px; line-height: 1.7; }
  .wl-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 32px; }
  .wl-stat {
    text-align: center; padding: 20px 12px; background: var(--white);
    border-radius: var(--radius); box-shadow: var(--shadow-sm);
  }
  .wl-stat-num { font-family: 'Fraunces', Georgia, serif; font-size: 28px; font-weight: 600; color: var(--teal); }
  .wl-stat-label { font-size: 12px; color: var(--grey-500); margin-top: 4px; line-height: 1.3; }
  .wl-features { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
  .wl-feature-tag {
    display: flex; align-items: center; gap: 6px;
    padding: 8px 16px; background: var(--white); border: 1px solid var(--grey-200);
    border-radius: var(--radius-pill); font-size: 13px; font-weight: 500;
    transition: all var(--transition); cursor: pointer;
  }
  .wl-feature-tag:hover { border-color: var(--teal); background: var(--teal-subtle); }
  .wl-feature-tag svg { width: 14px; height: 14px; color: var(--teal); }

  /* Calculator embed container */
  .wl-calculator {
    background: var(--white); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg); overflow: hidden;
  }
  .calc-header {
    background: var(--navy); color: var(--white); padding: 24px 28px;
    display: flex; align-items: center; gap: 12px;
  }
  .calc-header-icon {
    width: 40px; height: 40px; background: var(--primary-20); border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
  }
  .calc-header-icon svg { width: 20px; height: 20px; color: var(--teal); }
  .calc-header h3 { font-size: 18px; color: var(--white); margin-bottom: 2px; }
  .calc-header p { font-size: 13px; color: var(--on-dark-60); }
  .calc-embed-area {
    padding: 0;
    min-height: 400px;
    display: flex; align-items: center; justify-content: center;
    background: var(--cream);
    position: relative;
  }
  .calc-embed-area iframe {
    width: 100%; height: 100%; min-height: 400px; border: none;
  }
  .embed-placeholder {
    text-align: center; padding: 40px; color: var(--grey-500);
  }
  .embed-placeholder svg { width: 48px; height: 48px; color: var(--grey-300); margin-bottom: 12px; }
  .embed-placeholder p { font-size: 14px; }
  .embed-placeholder code {
    display: block; margin-top: 12px; padding: 12px 16px;
    background: var(--grey-100); border-radius: 8px;
    font-size: 12px; color: var(--grey-700); word-break: break-all;
  }

  /* ════════════════════════════════════════
     SHOP PRODUCTS (P-lines & GSL only)
  ════════════════════════════════════════ */
  .shop-section { padding: var(--section-pad) 0; background: var(--white); }
  .product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .product-card {
    background: var(--white); border: 1px solid var(--grey-200);
    border-radius: var(--radius-lg); overflow: hidden;
    transition: all var(--transition); cursor: pointer; position: relative;
  }
  .product-card:hover { border-color: var(--teal); box-shadow: var(--shadow-md); transform: translateY(-4px); }
  .product-badge {
    position: absolute; top: 12px; left: 12px; padding: 4px 12px;
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.06em; border-radius: var(--radius-pill); z-index: 2;
  }
  .badge-popular { background: var(--teal); color: var(--white); }
  .badge-gsl { background: var(--navy); color: var(--white); }
  .badge-new { background: var(--coral); color: var(--white); }
  .product-image {
    height: 200px; background: var(--grey-100);
    display: flex; align-items: center; justify-content: center; padding: 20px;
  }
  .product-placeholder {
    width: 80px; height: 80px; background: var(--grey-200); border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center; color: var(--grey-300);
  }
  .product-placeholder svg { width: 36px; height: 36px; }
  .product-info { padding: 20px; }
  .product-category {
    font-size: 11px; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.08em; color: var(--teal); margin-bottom: 8px;
  }
  .product-name {
    font-family: 'DM Sans', sans-serif; font-size: 16px; font-weight: 600;
    margin-bottom: 8px; color: var(--navy); line-height: 1.3;
  }
  .product-price { font-size: 14px; color: var(--grey-500); margin-bottom: 16px; }
  .product-price strong { color: var(--navy); font-size: 18px; font-weight: 700; }
  .product-card .btn-primary { width: 100%; justify-content: center; padding: 10px 20px; font-size: 13px; }

  /* ════════════════════════════════════════
     HOW IT WORKS
  ════════════════════════════════════════ */
  .how-it-works {
    padding: var(--section-pad) 0; background: var(--navy);
    color: var(--white); position: relative; overflow: hidden;
  }
  .how-it-works::before {
    content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 800px; height: 800px;
    background: radial-gradient(circle, var(--primary-06) 0%, transparent 60%);
  }
  .how-it-works .section-header h2 { color: var(--white); }
  .how-it-works .section-header p { color: var(--on-dark-60); }
  .steps-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; position: relative; z-index: 2; }
  .step-card {
    text-align: center; padding: 36px 24px;
    background: var(--on-dark-04); border: 1px solid var(--on-dark-08);
    border-radius: var(--radius-lg); transition: all var(--transition); position: relative;
  }
  .step-card:hover { background: var(--on-dark-08); transform: translateY(-4px); }
  .step-number {
    width: 52px; height: 52px; background: var(--teal); color: var(--white);
    font-family: 'Fraunces', Georgia, serif; font-size: 22px; font-weight: 600;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
  }
  .step-card h3 { font-size: 18px; color: var(--white); margin-bottom: 10px; }
  .step-card p { font-size: 14px; color: var(--on-dark-60); line-height: 1.6; }
  .step-connector {
    position: absolute; top: 50px; right: -30px;
    color: var(--on-dark-15); font-size: 20px; z-index: 3;
  }

  /* ════════════════════════════════════════
     TREATMENT CATEGORIES (conditions, no POM names)
  ════════════════════════════════════════ */
  .categories-section { padding: var(--section-pad) 0; background: var(--off-white); }
  .category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .category-card {
    background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
    border: 1px solid var(--grey-200); transition: all var(--transition); cursor: pointer;
  }
  .category-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--teal); }
  .category-image {
    height: 160px; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
  }
  .category-image-label { font-family: 'Fraunces', Georgia, serif; font-size: 22px; color: var(--white); position: relative; z-index: 2; }
  .category-image::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 30% 70%, var(--primary-15) 0%, transparent 60%);
  }
  .category-body { padding: 24px; }
  .category-body h3 { font-size: 20px; margin-bottom: 8px; }
  .category-body p { font-size: 14px; color: var(--grey-500); line-height: 1.6; margin-bottom: 16px; }
  .category-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 14px; font-weight: 600; color: var(--teal); transition: gap var(--transition);
  }
  .category-link:hover { gap: 10px; }
  .category-link svg { width: 16px; height: 16px; }

  /* ════════════════════════════════════════
     IN-CLINIC SERVICES
  ════════════════════════════════════════ */
  .services-section { padding: var(--section-pad) 0; background: var(--white); }
  .services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .service-card {
    padding: 32px 24px; background: var(--cream); border-radius: var(--radius-lg);
    border: 1px solid var(--grey-200); text-align: center;
    transition: all var(--transition); cursor: pointer;
  }
  .service-card:hover { border-color: var(--teal); box-shadow: var(--shadow-md); transform: translateY(-4px); }
  .service-icon {
    width: 56px; height: 56px; background: var(--teal-glow); border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
  }
  .service-icon svg { width: 24px; height: 24px; color: var(--teal); }
  .service-icon i { font-size: 24px; color: var(--teal); }
  .service-card h3 { font-size: 17px; margin-bottom: 8px; font-family: 'DM Sans', sans-serif; font-weight: 600; }
  .service-card p { font-size: 13px; color: var(--grey-500); line-height: 1.6; margin-bottom: 16px; }
  .service-card .category-link { font-size: 13px; }

  /* ════════════════════════════════════════
     REVIEWS + VIDEO TESTIMONIALS
  ════════════════════════════════════════ */
  .reviews-section { padding: var(--section-pad) 0; background: var(--off-white); }
  .reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 60px; }
  .review-card {
    padding: 28px; background: var(--white); border-radius: var(--radius-lg);
    border: 1px solid var(--grey-200); position: relative;
  }
  .review-quote {
    position: absolute; top: 16px; right: 20px;
    font-family: 'Fraunces', Georgia, serif; font-size: 48px; color: var(--teal);
    opacity: 0.2; line-height: 1;
  }
  .review-stars { display: flex; gap: 3px; margin-bottom: 16px; }
  .review-stars svg { width: 16px; height: 16px; fill: var(--color-star); }
  .review-text { font-size: 15px; color: var(--grey-700); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
  .review-author { display: flex; align-items: center; gap: 12px; }
  .review-avatar {
    width: 40px; height: 40px; background: var(--teal); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-weight: 700; font-size: 14px;
  }
  .review-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
  .review-meta strong { display: block; font-size: 14px; color: var(--navy); }
  .review-meta span { font-size: 12px; color: var(--grey-500); }
  .reviews-embed { margin: 0 auto; }

  /* Video testimonials */
  .video-testimonials-header { text-align: center; margin-bottom: 32px; }
  .video-testimonials-header h3 { font-size: 24px; margin-bottom: 8px; }
  .video-testimonials-header p { font-size: 14px; color: var(--grey-500); }
  .video-scroll-container { position: relative; }
  .video-scroll {
    display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory;
    padding: 8px 4px 20px; -webkit-overflow-scrolling: touch;
    scrollbar-width: thin; scrollbar-color: var(--grey-300) transparent;
  }
  .video-scroll::-webkit-scrollbar { height: 6px; }
  .video-scroll::-webkit-scrollbar-track { background: transparent; }
  .video-scroll::-webkit-scrollbar-thumb { background: var(--grey-300); border-radius: 3px; }
  .video-card {
    flex: 0 0 200px; scroll-snap-align: start;
    border-radius: var(--radius-lg); overflow: hidden;
    background: var(--navy); position: relative; cursor: pointer;
    aspect-ratio: 9/16; transition: all var(--transition);
    width: 200px; padding: 0; border: none; text-align: left;
    font: inherit; color: inherit; display: block; -webkit-appearance: none; appearance: none;
  }
  .video-card:focus-visible { outline: 2px solid var(--teal); outline-offset: 2px; }
  .video-card:hover { transform: scale(1.03); box-shadow: var(--shadow-lg); }
  .video-card-bg {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, var(--dark-10) 0%, var(--dark-70) 70%, var(--dark-95) 100%);
    z-index: 1;
  }
  .video-card-pattern {
    position: absolute; inset: 0;
    background: repeating-linear-gradient(0deg, transparent, transparent 4px, var(--on-dark-02) 4px, var(--on-dark-02) 5px);
    z-index: 0;
  }
  .video-play {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 48px; height: 48px; background: var(--on-dark-20);
    backdrop-filter: blur(8px); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    z-index: 2; transition: all var(--transition);
    border: 2px solid var(--on-dark-30);
  }
  .video-card:hover .video-play { background: var(--teal); border-color: var(--teal); }
  .video-play svg { width: 20px; height: 20px; color: var(--white); margin-left: 2px; }
  .video-card-info {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 20px 16px; z-index: 2;
  }
  .video-card-name { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
  .video-card-desc { font-size: 11px; color: var(--on-dark-60); line-height: 1.4; }
  .video-card-stars { display: flex; gap: 2px; margin-bottom: 8px; }
  .video-card-stars svg { width: 12px; height: 12px; fill: var(--color-star); }

  .video-modal {
    position: fixed; inset: 0; z-index: 9999;
    display: none; align-items: center; justify-content: center; padding: 20px;
  }
  .video-modal.open { display: flex; }
  .video-modal-backdrop { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.8); }
  .video-modal-dialog {
    position: relative; z-index: 1; width: 100%; max-width: 420px;
  }
  .video-modal-body {
    position: relative; width: 100%; aspect-ratio: 9/16; max-height: 85vh;
    margin: 0 auto; border-radius: var(--radius-lg); overflow: hidden; background: #000;
  }
  .video-modal-body iframe,
  .video-modal-body video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
  .video-modal-close {
    position: absolute; top: -44px; right: 0; z-index: 2;
    width: 36px; height: 36px; border-radius: 50%; border: none; cursor: pointer;
    background: rgba(255, 255, 255, 0.15); color: #fff; font-size: 24px; line-height: 1;
    display: flex; align-items: center; justify-content: center;
  }
  .video-modal-close:hover { background: rgba(255, 255, 255, 0.3); }
  body.video-modal-open { overflow: hidden; }

  .video-scroll-arrows {
    display: flex; gap: 8px; justify-content: center; margin-top: 16px;
  }
  .scroll-arrow {
    width: 40px; height: 40px; border-radius: 50%;
    border: 1px solid var(--grey-200); background: var(--white);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all var(--transition); color: var(--grey-700);
  }
  .scroll-arrow:hover { border-color: var(--teal); color: var(--teal); }
  .scroll-arrow svg { width: 18px; height: 18px; }

  /* ════════════════════════════════════════
     WHO ARE WE / TEAM
  ════════════════════════════════════════ */
  .team-section { padding: var(--section-pad) 0; background: var(--white); }
  .team-grid-layout {
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center;
  }
  .team-content h2 { font-size: clamp(28px, 3.5vw, 40px); margin-bottom: 16px; }
  .team-content h2 em { font-style: normal; color: var(--teal); }
  .team-content > p { font-size: 16px; color: var(--grey-700); line-height: 1.7; margin-bottom: 24px; }
  .team-values { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
  .team-value {
    display: flex; align-items: flex-start; gap: 12px;
  }
  .team-value-icon {
    width: 32px; height: 32px; background: var(--teal-glow); border-radius: 8px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
  }
  .team-value-icon svg { width: 16px; height: 16px; color: var(--teal); }
  .team-value strong { display: block; font-size: 14px; margin-bottom: 2px; }
  .team-value span { font-size: 13px; color: var(--grey-500); line-height: 1.5; }
  .team-photos {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  }
  .team-photo {
    border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/4;
    background: var(--grey-100); position: relative;
  }
  .team-photo-placeholder {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    color: var(--white); gap: 8px;
  }
  .team-photo-placeholder svg { width: 32px; height: 32px; opacity: 0.4; }
  .team-photo-placeholder span { font-size: 12px; font-weight: 600; opacity: 0.6; text-align: center; padding: 0 8px; }
  .team-photo:nth-child(2) .team-photo-placeholder { background: linear-gradient(135deg, var(--color-dark-tint), #2a5a9a); }
  .team-photo:nth-child(3) .team-photo-placeholder { background: linear-gradient(135deg, #2a4a3a, #3a6a5a); }
  .team-photo:nth-child(4) .team-photo-placeholder { background: linear-gradient(135deg, #3a2a5a, #5a4a7a); }
  .team-photo:nth-child(5) .team-photo-placeholder { background: linear-gradient(135deg, #4a3a2a, #6a5a4a); }
  .team-photo:nth-child(6) .team-photo-placeholder { background: linear-gradient(135deg, #2a3a4a, #4a5a6a); }
  .team-photo-placeholder .team-photo-role { font-size: 11px; font-weight: 500; opacity: 0.5; }
  .team-value-icon i { font-size: 16px; color: var(--teal); }
  .team-photo-img {
    position: absolute; inset: 0; background-size: cover; background-position: center;
    display: flex; align-items: flex-end;
  }
  .team-photo-img::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(11, 29, 58, 0.85) 100%);
  }
  .team-photo-overlay {
    position: relative; z-index: 1; width: 100%; padding: 14px 12px; color: var(--white);
  }
  .team-photo-overlay strong { display: block; font-size: 13px; font-weight: 600; }
  .team-photo-overlay span { display: block; font-size: 11px; opacity: 0.75; margin-top: 2px; }

  /* ════════════════════════════════════════
     PARTNER LOGOS
  ════════════════════════════════════════ */
  .partners-section {
    padding: 48px 0; background: var(--cream); border-top: 1px solid var(--grey-200);
    border-bottom: 1px solid var(--grey-200);
    overflow: hidden;
  }
  .partners-label {
    text-align: center; font-size: 12px; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.1em; color: var(--grey-500); margin-bottom: 32px;
  }
  .partners-scroll-container { position: relative; }
  .partners-scroll-container::before,
  .partners-scroll-container::after {
    content: ''; position: absolute; top: 0; bottom: 0; width: 60px; z-index: 2; pointer-events: none;
  }
  .partners-scroll-container::before { left: 0; background: linear-gradient(to right, var(--cream), transparent); }
  .partners-scroll-container::after { right: 0; background: linear-gradient(to left, var(--cream), transparent); }
  .partners-grid {
    display: flex; align-items: center; gap: 56px;
    overflow-x: auto; scroll-snap-type: x mandatory;
    padding: 8px 40px; -webkit-overflow-scrolling: touch;
    scrollbar-width: none; flex-wrap: nowrap;
  }
  .partners-grid::-webkit-scrollbar { display: none; }
  .partner-logo {
    height: 32px; opacity: 0.35;
    transition: opacity var(--transition);
    flex-shrink: 0; scroll-snap-align: center;
  }
  .partner-logo:hover { opacity: 0.7; }
  img.partner-logo { width: auto; max-height: 40px; object-fit: contain; }
  .partner-link { flex-shrink: 0; scroll-snap-align: center; display: inline-flex; }

  /* ════════════════════════════════════════
     BLOG
  ════════════════════════════════════════ */
  .blog-section { padding: var(--section-pad) 0; background: var(--white); }
  .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .blog-card {
    background: var(--white); border: 1px solid var(--grey-200);
    border-radius: var(--radius-lg); overflow: hidden;
    transition: all var(--transition); cursor: pointer;
  }
  .blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--teal); }
  .blog-image {
    height: 200px; background: var(--grey-100); position: relative; overflow: hidden;
  }
  .blog-image-inner {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--color-dark-tint) 100%);
    display: flex; align-items: center; justify-content: center;
  }
  .blog-image-inner svg { width: 40px; height: 40px; color: var(--on-dark-15); }
  .blog-tag {
    position: absolute; top: 12px; left: 12px;
    padding: 4px 12px; background: var(--teal); color: var(--white);
    border-radius: var(--radius-pill); font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.04em; z-index: 2;
  }
  .blog-body { padding: 24px; }
  .blog-meta { font-size: 12px; color: var(--grey-500); margin-bottom: 10px; }
  .blog-meta span { color: var(--teal); font-weight: 600; }
  .blog-body h3 a { color: inherit; text-decoration: none; }
  .blog-body h3 a:hover { color: var(--teal); }
  .blog-cta { text-align: center; margin-top: 40px; }
  .blog-body h3 {
    font-size: 18px; margin-bottom: 10px; line-height: 1.3;
    font-family: 'DM Sans', sans-serif; font-weight: 600;
  }
  .blog-body p { font-size: 14px; color: var(--grey-500); line-height: 1.6; margin-bottom: 16px; }

  /* ════════════════════════════════════════
     FAQ
  ════════════════════════════════════════ */
  .faq-section { padding: var(--section-pad) 0; background: var(--off-white); }
  .faq-list { max-width: 720px; margin: 0 auto; }
  .faq-item {
    background: var(--white); border: 1px solid var(--grey-200);
    border-radius: var(--radius); margin-bottom: 12px; overflow: hidden;
    transition: all var(--transition);
  }
  .faq-item:hover { border-color: var(--teal); }
  .faq-question {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 24px; cursor: pointer; font-weight: 600; font-size: 15px;
    color: var(--navy); gap: 16px;
  }
  .faq-toggle {
    width: 28px; height: 28px; background: var(--grey-100); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; transition: all var(--transition);
  }
  .faq-item:hover .faq-toggle { background: var(--teal-glow); }
  .faq-toggle svg { width: 14px; height: 14px; color: var(--grey-500); transition: transform var(--transition); }
  .faq-item.open .faq-toggle svg { transform: rotate(45deg); }
  .faq-item.open .faq-toggle { background: var(--teal); }
  .faq-item.open .faq-toggle svg { color: var(--white); }
  .faq-answer {
    padding: 0 24px 20px; font-size: 14px; color: var(--grey-700);
    line-height: 1.7; display: none;
  }
  .faq-item.open .faq-answer { display: block; }
  .faq-answer p:last-child { margin-bottom: 0; }
  .faq-cta { text-align: center; margin-top: 40px; }

  /* ════════════════════════════════════════
     CTA BANNER
  ════════════════════════════════════════ */
  .cta-banner {
    padding: var(--section-pad) 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    text-align: center; color: var(--white); position: relative; overflow: hidden;
  }
  .cta-banner::before {
    content: ''; position: absolute; top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, var(--primary-10) 0%, transparent 60%);
    border-radius: 50%;
  }
  .cta-banner h2 { font-size: clamp(28px, 4vw, 44px); color: var(--white); margin-bottom: 16px; position: relative; }
  .cta-banner p { font-size: 17px; color: var(--on-dark-70); max-width: 500px; margin: 0 auto 32px; }
  .cta-buttons { display: flex; gap: 16px; justify-content: center; position: relative; z-index: 2; }

  /* ════════════════════════════════════════
     FOOTER
  ════════════════════════════════════════ */
  .site-footer { background: var(--navy); color: var(--on-dark-70); padding: 60px 0 0; }
  .footer-grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px; padding-bottom: 40px;
    border-bottom: 1px solid var(--on-dark-08);
  }
  .footer-brand .logo { color: var(--white); margin-bottom: 16px; }
  .footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
  .footer-socials { display: flex; gap: 10px; }
  .social-link {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid var(--on-dark-15);
    display: flex; align-items: center; justify-content: center;
    color: var(--on-dark-60); transition: all var(--transition);
  }
  .social-link:hover { border-color: var(--teal); color: var(--teal); }
  .social-link svg { width: 16px; height: 16px; }

  .footer-col h4 {
    font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 700;
    color: var(--white); margin-bottom: 20px; text-transform: uppercase;
    letter-spacing: 0.06em;
  }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 10px; }
  .footer-col a { font-size: 14px; color: var(--on-dark-60); transition: color var(--transition); }
  .footer-col a:hover { color: var(--teal); }

  /* Pharmacy details in footer */
  .footer-pharmacy {
    margin-top: 32px; padding-top: 32px;
    border-top: 1px solid var(--on-dark-08);
  }
  .pharmacy-details-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  }
  .pharmacy-detail h5 {
    font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--teal); margin-bottom: 10px;
  }
  .pharmacy-detail p {
    font-size: 13px; line-height: 1.7; color: var(--on-dark-50);
  }
  .pharmacy-detail p strong { color: var(--on-dark-80); font-weight: 600; }
  .pharmacy-detail a { color: var(--teal); text-decoration: underline; text-underline-offset: 2px; }

  .footer-bottom {
    padding: 24px 0; display: flex; justify-content: space-between;
    align-items: center; font-size: 12px; color: var(--on-dark-40);
    flex-wrap: wrap; gap: 16px;
    margin-top: 24px;
  }
  .footer-bottom-links { display: flex; gap: 20px; }
  .footer-bottom-links a { color: var(--on-dark-40); transition: color var(--transition); }
  .footer-bottom-links a:hover { color: var(--teal); }
  .footer-payments { display: flex; gap: 8px; }
  .payment-icon {
    width: 40px; height: 26px; background: var(--on-dark-08);
    border-radius: 4px; display: flex; align-items: center; justify-content: center;
    font-size: 9px; font-weight: 700; color: var(--on-dark-50);
  }

  /* ════════════════════════════════════════
     RESPONSIVE
  ════════════════════════════════════════ */
  @media (max-width: 1024px) {
    .hero .container { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(3, 1fr); }
    .step-connector { display: none; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .wl-grid { grid-template-columns: 1fr; }
    .team-grid-layout { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .pharmacy-details-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 768px) {
    .trust-bar .container { grid-template-columns: repeat(2, 1fr); }
    .category-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .team-photos { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 480px) {
    .product-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .trust-bar .container { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-ctas { flex-direction: column; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .wl-stats { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .pharmacy-details-grid { grid-template-columns: 1fr; }
    .team-photos { grid-template-columns: repeat(2, 1fr); }
  }
