:root{
  --bg:#07070b;
  --panel:#0f1018;
  --ink:#f5f5f7;
  --muted:rgba(245,245,247,.72);
  --line:rgba(255,255,255,.10);
  --accent:#FFD86B; /* bright gold */
  --accent_dim:#D4AF37; /* classic gold */
  --goldGlow: 0 0 18px rgba(255,216,107,.35), 0 0 70px rgba(255,216,107,.16);
  --goldGlowStrong: 0 0 26px rgba(255,216,107,.55), 0 0 120px rgba(255,216,107,.18);
  --accent2:#0F766E; /* emerald */
  --gold_grad: linear-gradient(135deg, #FFD86B 0%, #FFF3CF 38%, #D4AF37 70%, #B8860B 100%);
  --shadow: 0 22px 70px rgba(0,0,0,.55);
  --radius: 20px;
  --radius2: 28px;
  --max: 1140px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--ink);
  background: radial-gradient(920px 520px at 15% 0%, rgba(212,175,55,.22), transparent 62%),
              radial-gradient(780px 480px at 85% 10%, rgba(15,118,110,.16), transparent 60%),
              radial-gradient(1200px 700px at 50% 120%, rgba(255,255,255,.06), transparent 60%),
              var(--bg);
  line-height:1.55;
}

a{color:inherit}
img{max-width:100%; display:block}
.container{max-width:var(--max); margin:0 auto; padding:0 18px}
.section{padding:78px 0}
.section--tight{padding:58px 0}
.h-eyebrow{
  letter-spacing:.18em;
  text-transform:uppercase;
  font-size:13px;
  font-weight:800;
  color:var(--muted);
}
h1,h2,h3{
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  letter-spacing:-.02em;
  margin:0 0 12px;
}
h1{font-size: clamp(34px, 5vw, 58px); line-height:1.06}
h2{font-size: clamp(26px, 3.4vw, 40px); line-height:1.12}
h3{font-size: 22px; line-height:1.2}

/* Gold typography helpers */
.title-gold{
  background: linear-gradient(90deg, #FFD86B 0%, #FFF3CF 40%, #D4AF37 75%, #B8860B 100%);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  color:transparent;
  text-shadow: 0 0 18px rgba(255,216,107,.18);
}
.title-glow{ text-shadow: 0 0 26px rgba(255,216,107,.28), 0 0 90px rgba(255,216,107,.12); }

p{margin:0 0 14px; color:rgba(245,245,247,.82)}
.small{font-size:14px; color:rgba(245,245,247,.78)}
.muted{color:var(--muted)}
.dot{padding:0 8px; color:rgba(245,245,247,.35)}
/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 18px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(16,16,24,.72);
  backdrop-filter: blur(10px);
  text-decoration:none;
  font-weight:650;
  font-size:14px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  cursor:pointer;
}
.btn:hover{transform: translateY(-1px); box-shadow: 0 14px 35px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.10)}
.btn--primary{
  border-color: rgba(255,216,107,.72);
  background: var(--gold_grad);
  color:#0b0b0f;
  box-shadow: 0 18px 55px rgba(0,0,0,.65), 0 0 0 1px rgba(255,216,107,.22), var(--goldGlow);
}
.btn--primary:hover{box-shadow: 0 24px 85px rgba(0,0,0,.72), 0 0 0 1px rgba(255,216,107,.32), var(--goldGlowStrong)}
.btn--ghost{background: transparent; color: rgba(245,245,247,.92)}
.btn--wide{width:100%}

/* Header */
.top-strip{
  background: rgba(16,16,24,.72);
  border-bottom:1px solid var(--line);
}
.top-strip__inner{display:flex; align-items:center; justify-content:space-between; gap:14px; padding:10px 0}
.top-strip__left{display:flex; align-items:center; gap:8px; flex-wrap:wrap}
.top-strip__link{font-weight:650; text-decoration:none}
.top-strip__muted{font-size:13px; color:var(--muted)}
.top-strip__right{display:flex; gap:10px}

.site-header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(12px);
}
.nav-bar{
  background: rgba(7,7,11,.72);
  border-bottom:1px solid var(--line);
}
.nav-bar__inner{display:flex; align-items:center; justify-content:space-between; gap:16px; padding:14px 0}
.brand{display:flex; gap:12px; align-items:center; text-decoration:none}

/* Logo mark */
.brand__logo,
.brand__mark{
  width:44px; height:44px; border-radius:16px;
  flex:0 0 auto;
  box-shadow: 0 12px 30px rgba(0,0,0,.55), 0 0 18px rgba(255,216,107,.14);
}
.brand__logo{display:block}

/* Fallback: if the span mark is used */
.brand__mark{
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,.8), rgba(255,255,255,.15) 40%, transparent 60%),
              linear-gradient(135deg, rgba(15,118,110,1), rgba(212,175,55,.95));
}

/* Name + tagline */
.brand__name{
  display:block;
  font-weight: 820;
  font-size: 20px;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: rgba(245,245,247,.96);
  text-shadow: 0 10px 30px rgba(0,0,0,.55);
}
@supports (-webkit-background-clip:text){
  .brand__name{
    background: linear-gradient(90deg, rgba(245,245,247,.98), rgba(255,216,107,.92));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}

.brand__tag{
  display:block;
  font-size: 12.5px;
  color: rgba(245,245,247,.70);
  margin-top: 4px;
  max-width: 360px;
  overflow: hidden;
}

/* Tagline as running text */
.brand__tag.brand-marquee{
  position: relative;
  white-space: nowrap;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}
.brand-marquee__track{
  display:inline-flex;
  gap: 28px;
  will-change: transform;
  animation: brandMarquee 14s linear infinite;
}
.brand-marquee__item{padding-right: 28px}
@keyframes brandMarquee{
  from{transform: translateX(0)}
  to{transform: translateX(-50%)}
}
@media (prefers-reduced-motion: reduce){
  .brand-marquee__track{animation:none}
}

@media (max-width: 520px){
  .brand__logo, .brand__mark{width:40px; height:40px; border-radius:15px}
  .brand__name{font-size:18px}
  .brand__tag{max-width: 220px; font-size:12px}
}

.nav-links{display:flex; gap:18px; align-items:center}
.nav-link{
  text-decoration:none;
  font-weight:650;
  font-size:14px;
  color:rgba(245,245,247,.74);
  position:relative;
}
.nav-link:hover{color:rgba(245,245,247,.94)}
.nav-link.is-active{color:rgba(245,245,247,.94)}
.nav-link.is-active::after{
  content:"";
  position:absolute; left:0; right:0; bottom:-10px; height:2px;
  background: linear-gradient(90deg, rgba(15,118,110,1), rgba(255,216,107,1));
  border-radius:999px;
  box-shadow: 0 0 16px rgba(255,216,107,.35);
}
.nav-cta{display:flex; align-items:center; gap:10px}

.nav-trust{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(16,16,24,.50);
  text-decoration:none;
  font-size:12px;
  font-weight:650;
  color: rgba(245,245,247,.82);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.nav-trust:hover{
  transform: translateY(-1px);
  border-color: rgba(255,216,107,.45);
  box-shadow: 0 0 18px rgba(255,216,107,.10);
  background: rgba(16,16,24,.72);
}
.nav-trust__star{
  color: rgba(255,216,107,.92);
  filter: drop-shadow(0 0 6px rgba(255,216,107,.18));
}
.nav-trust__text{line-height:1}

.menu-btn{
  width:42px; height:42px;
  border-radius:14px; border:1px solid var(--line);
  background: rgba(16,16,24,.72);
  display:none;
  flex-direction:column;
  align-items:center; justify-content:center;
  gap:5px;
}
.menu-btn span{width:18px; height:2px; background:rgba(245,245,247,.72); border-radius:999px}

/* Mobile menu (FIX: backdrop must be behind panel) */
.mobile-menu{
  position:fixed;
  inset:0;
  display:none;
  z-index:9999;          /* ให้ลอยเหนือทุกอย่าง */
}
.mobile-menu.is-open{display:block}

.mobile-menu__backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.62);
  z-index:0;              /* อยู่ข้างหลัง */
}

.mobile-menu__panel{
  position:absolute;
  top:0; right:0; bottom:0;
  height:auto;
  width:min(360px, 92vw);
  z-index:1;              /* อยู่ข้างหน้า backdrop => กดลิงก์ได้ */
  background: rgba(15,15,22,.92);
  backdrop-filter: blur(14px);
  border-left:1px solid var(--line);
  box-shadow: var(--shadow);
  padding:18px;
  padding-bottom: calc(18px + env(safe-area-inset-bottom));
  overflow-y:auto;
  -webkit-overflow-scrolling: touch;
  display:flex;
  flex-direction:column;
  transform: translateX(12px);
  animation: slideIn .18s ease forwards;
}

@keyframes slideIn{to{transform: translateX(0)}}
.mobile-menu__head{display:flex; justify-content:space-between; align-items:center; margin-bottom:10px}
.mobile-menu__title{font-weight:760}
.icon-btn{
  width:38px; height:38px;
  border:1px solid var(--line);
  background: rgba(16,16,24,.72);
  border-radius:14px;
  display:inline-flex; align-items:center; justify-content:center;
  text-decoration:none;
  cursor:pointer;
}
.icon{font-weight:800; opacity:.75}
.mobile-link{
  padding:12px 10px;
  border-radius:14px;
  text-decoration:none;
  font-weight:650;
  color:rgba(245,245,247,.86);
}
.mobile-link:hover{background: rgba(15,118,110,.14)}
.mobile-menu__footer{margin-top:auto; display:grid; gap:10px}

/* Hero */
.hero{
  position:relative;
  min-height: 78vh;
  display:flex;
  align-items:flex-end;
  padding: 40px 0 0;
  overflow:hidden;
}
.hero-video, .hero-poster{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit: cover;
  filter: saturate(1.18) contrast(1.14) brightness(0.98);
}
.hero-video{opacity:1}
.hero-overlay{
  position:absolute;
  inset:0;
  /* Show video background 100% (no dark/bright gradient overlay) */
  background: none;
}
.hero-content{
  position:relative;
  width:100%;
  padding: 40px 0 40px;
}
.hero-card{
  width:min(740px, 100%);
  background: rgba(15,15,22,.78);
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  padding: 26px 24px;
  backdrop-filter: blur(12px);
}

/* Make hero headings pop (gold-dominant + glow) */
.hero h1{
  background: linear-gradient(90deg, #FFD86B 0%, #FFF3CF 30%, #D4AF37 62%, #B8860B 82%, #0F766E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: 0 0 22px rgba(255,216,107,.22), 0 0 75px rgba(255,216,107,.14);
}
@supports not (-webkit-background-clip: text){
  .hero h1{ color: var(--ink); }
}
.hero-actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:16px}

/* Mobile tidy layout for hero actions/badges (reduces clutter)
   - 2 actions: stacked full-width (clean + tap-friendly)
   - 3 actions: first row 2 columns, last action full-width */
@media (max-width: 520px){
  .hero-actions{
    display:grid;
    grid-template-columns: 1fr;
    gap:10px;
  }
  .hero-actions .btn{width:100%}

  .hero-actions.hero-actions--n3{grid-template-columns: repeat(2, minmax(0, 1fr));}
  .hero-actions.hero-actions--n3 .btn:nth-child(3){grid-column: 1 / -1;}
  .hero-actions.hero-actions--n4{grid-template-columns: repeat(2, minmax(0, 1fr));}
  .hero-actions.hero-actions--n4 .btn:nth-child(3),
  .hero-actions.hero-actions--n4 .btn:nth-child(4){grid-column: 1 / -1;}

  .trust-line__link{width:100%; justify-content:center}

  .hero-badges{
    display:grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap:8px;
  }
  .hero-badges .badge{width:100%; text-align:center; padding:9px 10px}
}

/* Desktop tidy layout for hero actions/badges (keeps alignment + avoids ragged wraps) */
@media (min-width: 768px){
  .hero-actions{
    display:grid;
    gap:12px;
    margin-top:18px;
    align-items:stretch;
  }
  .hero-actions .btn{
    width:100%;
    justify-content:center;
    white-space:nowrap;
  }
  .hero-actions.hero-actions--n2{grid-template-columns: repeat(2, minmax(0, 1fr));}
  .hero-actions.hero-actions--n3{grid-template-columns: repeat(3, minmax(0, 1fr));}
  .hero-actions.hero-actions--n4{grid-template-columns: repeat(4, minmax(0, 1fr));}

  .hero-badges{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap:10px;
  }
  .hero-badges .badge{
    width:100%;
    text-align:center;
  }
}

/* Mid-size screens: keep 3 actions comfortable (2 + full-width) */
@media (min-width: 768px) and (max-width: 980px){
  .hero-actions.hero-actions--n3{grid-template-columns: repeat(2, minmax(0, 1fr));}
  .hero-actions.hero-actions--n3 .btn:nth-child(3){grid-column: 1 / -1;}
}

.trust-line{margin-top:12px}
.trust-line__link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,216,107,.28);
  background: rgba(255,216,107,.10);
  text-decoration:none;
  color: rgba(245,245,247,.88);
  font-weight:650;
  font-size:14px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.trust-line__link:hover{
  transform: translateY(-1px);
  border-color: rgba(255,216,107,.42);
  background: rgba(255,216,107,.14);
  box-shadow: 0 0 22px rgba(255,216,107,.12);
}
.trust-line__star{
  color: rgba(255,216,107,.95);
  filter: drop-shadow(0 0 8px rgba(255,216,107,.18));
}
.trust-line__arrow{opacity:.92}

.hero-badges{display:flex; flex-wrap:wrap; gap:10px; margin-top:16px}
.badge{
  font-size:12px;
  padding:8px 10px;
  border-radius:999px;
  background: rgba(15,118,110,.18);
  border:1px solid rgba(15,118,110,.26);
  color: rgba(245,245,247,.80);
  font-weight:650;
}
.badge--gold{
  background: rgba(255,216,107,.22);
  border-color: rgba(255,216,107,.42);
  box-shadow: 0 0 18px rgba(255,216,107,.10);
}

.marquee{
  position:relative;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background: rgba(15,15,22,.62);
  overflow:hidden;
}
.marquee__track{
  display:flex; gap:26px; white-space:nowrap;
  padding: 12px 0;
  will-change: transform;
  animation: marquee 18s linear infinite;
}
.marquee__item{
  font-size:13px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
  color: rgba(245,245,247,.62);
}
/* Rainbow marquee */
@supports (-webkit-background-clip:text){
  .marquee__item{
    background: linear-gradient(90deg,
      #ff2d55 0%,
      #ff9500 14%,
      #ffd60a 28%,
      #34c759 42%,
      #0ea5e9 58%,
      #2563eb 72%,
      #af52de 86%,
      #ff2d55 100%
    );
    -webkit-background-clip:text;
    background-clip:text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-shadow: 0 0 22px rgba(255,255,255,.10);
  }
}

@keyframes marquee{
  from{transform: translateX(0)}
  to{transform: translateX(-50%)}
}

/* Cards / grids */
.grid-2{display:grid; grid-template-columns: 1.2fr .8fr; gap:24px; align-items:start}
.grid-3{display:grid; grid-template-columns: repeat(3, 1fr); gap:18px}
.grid-4{display:grid; grid-template-columns: repeat(4, 1fr); gap:16px}
@media (max-width: 980px){
  .grid-2{grid-template-columns:1fr}
  .grid-4{grid-template-columns: repeat(2, 1fr)}
  .grid-3{grid-template-columns:1fr}
  .nav-links{display:none}
  .nav-trust{display:none}
  /* Mobile header: remove the small "Book" pill in the top bar */
  .nav-cta > a.btn--ghost{display:none}
  .menu-btn{display:flex}
}
@media (max-width: 520px){
  .grid-4{grid-template-columns: 1fr}
  .hero{min-height: 82vh}
  .hero-card{padding:20px}
}

@media (max-width: 520px){
  .brand__name{font-size:18px}
  .brand__tag{max-width: 240px; font-size:12px}
  .brand__logo,.brand__mark{width:40px; height:40px; border-radius:14px}
}

.card{
  background: rgba(15,15,22,.74);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(0,0,0,.50);
  overflow:hidden;
}
.card__media{
  aspect-ratio: 4 / 3;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,.10), rgba(255,255,255,.04) 45%, transparent 70%),
              linear-gradient(135deg, rgba(15,118,110,.42), rgba(212,175,55,.38));
  position:relative;
}
.card__media img{width:100%; height:100%; object-fit:cover; opacity:.95}
.card__body{padding:16px}
.card__title{display:flex; align-items:center; justify-content:space-between; gap:10px}
.pill{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(16,16,24,.72);
  color: rgba(245,245,247,.78);
  font-weight:650;
}
.card__actions{display:flex; gap:10px; margin-top:12px; flex-wrap:wrap}
.card--hover{transition: transform .18s ease, box-shadow .18s ease}
.card--hover:hover{transform: translateY(-2px); box-shadow: 0 18px 44px rgba(0,0,0,.55)}
/* Feature list */
.feature{
  display:flex; gap:14px;
  padding:14px;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: rgba(16,16,24,.72);
}
.feature__icon{
  width:42px; height:42px;
  border-radius:16px;
  background: rgba(15,118,110,.18);
  border:1px solid rgba(15,118,110,.20);
  display:flex; align-items:center; justify-content:center;
  font-weight:900;
  color: rgba(245,245,247,.74);
}
.feature__title{font-weight:760; margin:0 0 2px}
.feature__text{margin:0; font-size:14px; color: rgba(245,245,247,.78)}
/* Split panel */
.panel{
  background: rgba(16,16,24,.72);
  border:1px solid var(--line);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  padding:22px;
}
.panel__title{font-weight:760; margin:0 0 10px}
.kv{display:grid; grid-template-columns: 140px 1fr; gap:10px; align-items:start; font-size:14px}
.kv div{padding:8px 0; border-bottom:1px dashed var(--line)}
.kv div:nth-child(odd){color: var(--muted); font-weight:650}
.kv div:last-child, .kv div:nth-last-child(2){border-bottom:none}

/* Reviews */
.quote{
  padding:18px;
  padding-bottom: calc(18px + env(safe-area-inset-bottom));
  overflow-y:auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  background: rgba(16,16,24,.72);
  border:1px solid var(--line);
}
.quote p{margin:0 0 10px}
.quote .who{font-weight:760; font-size:14px}
.quote .stars{letter-spacing:.12em; color: rgba(212,175,55,.9); font-weight:800}

/* Footer */
.site-footer{border-top:1px solid var(--line); background: rgba(7,7,11,.78)}
.footer__grid{display:grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap:18px; padding:38px 0}
.footer__brand{font-weight:820}
.footer__title{font-weight:760; margin-bottom:8px}
.footer__link{color: rgba(245,245,247,.76); text-decoration:none}
.footer__link:hover{color: rgba(245,245,247,.94)}
.footer__muted{color: var(--muted); font-size:14px}
.footer__tiny{color: rgba(245,245,247,.66); font-size:12px}
.footer__tinylink{color: rgba(245,245,247,.66); text-decoration:none}
.footer__tinylink:hover{color: rgba(245,245,247,.82)}
.footer__spacer{height:12px}
.footer__bottom{display:flex; justify-content:space-between; gap:12px; padding:16px 0; border-top:1px solid rgba(0,0,0,.50)}
@media (max-width: 980px){
  .footer__grid{grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px){
  .footer__grid{grid-template-columns: 1fr; }
  .footer__bottom{flex-direction:column}
}

/* Floating CTA */
.floating-cta-wrap{
  position:fixed;
  right: calc(16px + env(safe-area-inset-right));
  bottom: calc(16px + env(safe-area-inset-bottom));
  z-index:90;
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:8px;
}
.floating-cta{
  background: linear-gradient(135deg, rgba(15,118,110,1), rgba(212,175,55,.96));
  color:#fff;
  text-decoration:none;
  font-weight:820;
  padding:12px 16px;
  border-radius: 999px;
  box-shadow: 0 16px 36px rgba(0,0,0,.60);
  display:inline-flex;
  align-items:center;
  gap:10px;
}
.floating-cta--toggle{
  border:0;
  cursor:pointer;
}
.floating-cta--toggle:focus{ outline:none; }
.floating-cta--toggle:focus-visible{
  outline:2px solid rgba(212,175,55,.75);
  outline-offset:3px;
}
.floating-cta__label{display:inline}
@media (max-width: 520px){
  .floating-cta__label{display:none}
}

/* Visually hidden utility (keeps text for screen readers) */
.sr-only{
  position:absolute !important;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

/* Icon-only toggle button */
.floating-cta--toggle{
  width:60px;
  height:60px;
  padding:0;
  justify-content:center;
  gap:0;
  position:relative;
  --aura-rgb: 212,175,55;
  z-index:0;
}
.floating-cta--toggle{
  box-shadow: 0 18px 44px rgba(0,0,0,.62), 0 0 0 6px rgba(212,175,55,.12);
}
.floating-cta--toggle::before{
  content:"";
  position:absolute;
  inset:-3px;
  border-radius:999px;
  background: conic-gradient(from 180deg,
    rgba(var(--aura-rgb),.95),
    rgba(255,216,107,.88),
    rgba(15,118,110,.88),
    rgba(var(--aura-rgb),.95)
  );
  filter: blur(.7px);
  opacity:.70;
  z-index:-2;
  pointer-events:none;
}
.floating-cta--toggle::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:999px;
  background: radial-gradient(circle at 30% 25%, rgba(255,255,255,.40), rgba(255,255,255,0) 55%);
  opacity:.55;
  mix-blend-mode: overlay;
  pointer-events:none;
}

.floating-cta--toggle .floating-cta__pulse{
  position:absolute;
  top:50%;
  left:50%;
  right:auto;
  width:60px;
  height:60px;
  transform: translate(-50%,-50%);
  border-radius:999px;
  background: radial-gradient(circle at 50% 50%, rgba(var(--aura-rgb),.22) 0%, rgba(var(--aura-rgb),.14) 35%, rgba(var(--aura-rgb),0) 72%);
  box-shadow: 0 0 0 0 rgba(var(--aura-rgb),.40), 0 0 0 0 rgba(var(--aura-rgb),.22);
  filter: drop-shadow(0 0 18px rgba(var(--aura-rgb),.16));
  animation: auraPulse 2.2s ease-out infinite;
  pointer-events:none;
  z-index:-1;
}
@keyframes auraPulse{
  0%{ box-shadow: 0 0 0 0 rgba(var(--aura-rgb),.40), 0 0 0 0 rgba(var(--aura-rgb),.22); opacity:.85; }
  70%{ box-shadow: 0 0 0 20px rgba(var(--aura-rgb),0), 0 0 0 44px rgba(var(--aura-rgb),0); opacity:.35; }
  100%{ box-shadow: 0 0 0 28px rgba(var(--aura-rgb),0), 0 0 0 56px rgba(var(--aura-rgb),0); opacity:0; }
}
.floating-cta--toggle .fab-ico{
  margin:0;
  width:22px;
  height:22px;
}
.floating-cta--toggle .fab-ico svg{ width:22px; height:22px; }
.floating-cta--toggle .fab-ico--close{
  margin:0;
  font-size:22px;
  line-height:1;
}

.fab-ico{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:18px;
  height:18px;
  margin-left:2px;
  margin-right:4px;
  opacity:.95;
}
.fab-ico svg{width:18px;height:18px;display:block}
.fab-ico--close{ display:none; font-size:20px; line-height:1; margin-right:6px; }
.floating-cta-wrap.is-open .fab-ico--open{ display:none; }
.floating-cta-wrap.is-open .fab-ico--close{ display:inline-flex; }

/* When the quick-action menu is open, hide the small reviews pill to reduce visual clutter */
.floating-cta-wrap.is-open .floating-cta-reviews{ display:none; }

.floating-cta-reviews{
  display:inline-flex;
  align-items:center;
  gap:6px;
  text-decoration:none;
  font-weight:780;
  font-size:12px;
  color: rgba(245,245,247,.92);
  background: rgba(15,15,22,.78);
  border: 1px solid rgba(212,175,55,.35);
  padding:7px 10px;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(0,0,0,.52);
  backdrop-filter: blur(12px);
}
.floating-cta-reviews .star{
  color: rgba(212,175,55,.98);
  filter: drop-shadow(0 0 10px rgba(212,175,55,.24));
}
.floating-cta-reviews:hover{ border-color: rgba(212,175,55,.60); transform: translateY(-1px); }
.floating-cta-reviews:active{ transform: translateY(0); }

.floating-cta__pulse{
  width:10px;
  height:10px;
  border-radius:999px;
  background: rgba(212,175,55,.95);
  box-shadow: 0 0 0 0 rgba(16,16,24,.72);
  animation: pulse 1.8s ease infinite;
}
@keyframes pulse{
  0%{box-shadow: 0 0 0 0 rgba(212,175,55,.55)}
  70%{box-shadow: 0 0 0 14px rgba(255,255,255,0)}
  100%{box-shadow: 0 0 0 0 rgba(255,255,255,0)}
}

.floating-cta-menu{
  display:none;
  flex-direction:column;
  align-items:flex-end;
  gap:8px;
  margin-bottom:6px;
}
.floating-cta-wrap.is-open .floating-cta-menu{ display:flex; }

/* Mobile: keep the expanded menu neat + aligned (same width items) */
@media (max-width: 520px){
  .floating-cta-menu{ width: min(260px, calc(100vw - 32px)); }
  .floating-cta-item{ width:100%; justify-content:flex-start; }
  .floating-cta-item{ font-size:13px; padding:10px 12px; min-height:50px; }
  .floating-cta-item__ico{ width:32px; height:32px; border-radius:999px; }
  .floating-cta-item__ico svg{ width:16px; height:16px; }
}

/* Desktop: keep the expanded menu aligned + same width items */
@media (min-width: 521px){
  .floating-cta-menu{ width: 280px; }
  .floating-cta-item{ width:100%; justify-content:flex-start; }
  .floating-cta-item{ font-size:13.5px; padding:11px 14px; }
  .floating-cta-item__ico{ width:34px; height:34px; border-radius:999px; }
  .floating-cta-item__ico svg{ width:16px; height:16px; }
}

.floating-cta-item__ico{display:inline-flex;align-items:center;justify-content:center}
.floating-cta-item__ico svg{width:16px;height:16px;display:block}

.floating-cta-item{
  --accent-rgb: 212,175,55;
  position:relative;
  overflow:hidden;
  display:inline-flex;
  align-items:center;
  gap:10px;
  width:100%;
  min-height:52px;
  padding:11px 14px;
  border-radius:12px;
  text-decoration:none;
  font-weight:820;
  font-size:13.5px;
  letter-spacing:.2px;
  color: rgba(15,23,42,.92);
  background: #ffffff;
  border: 1px solid rgba(15,23,42,.14);
  box-shadow: 0 16px 30px rgba(0,0,0,.28);
  white-space:nowrap;
  transform: translateY(4px);
  opacity: 0;
  pointer-events:none;
  transition: opacity .18s ease, transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.floating-cta-item::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  right:0;
  height:4px;
  background: rgb(var(--accent-rgb));
  opacity:.95;
}
.floating-cta-item::after{
  content:"";
  position:absolute;
  inset:0;
  background: none;
  opacity:0;
  pointer-events:none;
}

.floating-cta-wrap.is-open .floating-cta-item{
  transform: translateY(0);
  opacity: 1;
  pointer-events:auto;
}
.floating-cta-wrap.is-open .floating-cta-item:nth-child(1){ transition-delay:.02s; }
.floating-cta-wrap.is-open .floating-cta-item:nth-child(2){ transition-delay:.04s; }
.floating-cta-wrap.is-open .floating-cta-item:nth-child(3){ transition-delay:.06s; }
.floating-cta-wrap.is-open .floating-cta-item:nth-child(4){ transition-delay:.08s; }
.floating-cta-wrap.is-open .floating-cta-item:nth-child(5){ transition-delay:.10s; }

.floating-cta-item__ico{
  width:34px;
  height:34px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background: rgba(var(--accent-rgb), .22);
  border: 1px solid rgba(var(--accent-rgb), .32);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.65), 0 10px 16px rgba(0,0,0,.10);
  color: rgb(var(--accent-rgb));
  flex: 0 0 auto;
}
.floating-cta-item__ico svg{
  width:16px;
  height:16px;
  display:block;
  fill: currentColor;
  stroke: currentColor;
}

.floating-cta-wrap.is-open .floating-cta-item:hover{
  box-shadow: 0 22px 46px rgba(0,0,0,.30);
  transform: translateY(-1px);
  filter: brightness(1.02);
}
.floating-cta-wrap.is-open .floating-cta-item:active{
  transform: translateY(0);
  filter: brightness(.99);
}

/* Color accents for each channel */
.floating-cta-item--book{ --accent-rgb: 37,99,235; --accent2-rgb: 99,102,241; }
.floating-cta-item--call{ --accent-rgb: 34,197,94; --accent2-rgb: 16,185,129; }
.floating-cta-item--map{ --accent-rgb: 249,115,22; --accent2-rgb: 239,68,68; }
.floating-cta-item--facebook{ --accent-rgb: 24,119,242; --accent2-rgb: 59,130,246; }
.floating-cta-item--instagram{ --accent-rgb: 225,48,108; --accent2-rgb: 255,149,0; }

/* Backward compatibility */
.floating-cta-item--primary{ --accent-rgb: 37,99,235; --accent2-rgb: 99,102,241; }
.floating-cta-item__dot{
  width:10px;
  height:10px;
  border-radius:999px;
  background: rgba(212,175,55,.95);
  box-shadow: 0 0 0 0 rgba(16,16,24,.72);
}

/* Reveal on scroll */
.reveal{opacity:0; transform: translateY(10px); transition: opacity .6s ease, transform .6s ease}
.reveal.is-visible{opacity:1; transform:none}
@media (prefers-reduced-motion: reduce){
  .marquee__track{animation:none}
  .reveal{opacity:1; transform:none}
  .floating-cta__pulse{animation:none}
  .btn, .card--hover{transition:none}
}

/* Utility */
.hr{height:1px; background: var(--line); margin:18px 0}
.breadcrumbs{font-size:13px; color: rgba(245,245,247,.62)}
.breadcrumbs a{color: rgba(245,245,247,.78); text-decoration:none}
.breadcrumbs a:hover{color: rgba(245,245,247,.94)}

/* ===== Video background section (reusable) ===== */
.section--video{
  position: relative;
  overflow: hidden;
}

/* คลิปพื้นหลัง */
.section--video .vbg-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: cover;
  /* เพิ่มความชัด/สี/คอนทราสต์เหมือน hero */
  filter: saturate(1.18) contrast(1.14) brightness(0.98);
  opacity: 1;
}

/* overlay ทับคลิป (สำคัญ: อย่าลบ position:absolute / inset:0) */
.section--video .vbg-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(920px 420px at 18% 18%,
      rgba(212,175,55,.14),
      rgba(15,118,110,.10) 45%,
      rgba(0,0,0,.72) 82%
    ),
    linear-gradient(180deg,
      rgba(0,0,0,.22),
      rgba(0,0,0,.78) 78%
    );
}

/* ให้เนื้อหาอยู่เหนือวิดีโอ */
.section--video > .container{
  position: relative;
  z-index: 1;
}

/* ถ้าต้องการ “การ์ดทับคลิป” แบบ hero */
.vbg-card{
  width: min(820px, 100%);
  background: rgba(15,15,22,.78);
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  padding: 26px 24px;
  backdrop-filter: blur(12px);
}

.section--video .panel,
.section--video .quote,
.section--video .feature,
.section--video .card{
  background: rgba(15,15,22,.78);
}

/* Readability fix: headline + intro text on video background.
   In light theme the base text is dark, which can blend into darker video. */
.section--video .grid-2 > div.reveal > .h-eyebrow,
.section--video .grid-2 > div.reveal > h2,
.section--video .grid-2 > div.reveal > p.muted{
  color: rgba(255,255,255,.94);
  text-shadow: 0 2px 18px rgba(0,0,0,.62);
}
.section--video .grid-2 > div.reveal > p.muted{
  color: rgba(255,255,255,.82);
}
.section--video .grid-2 > div.reveal > .h-eyebrow{
  color: rgba(255,255,255,.78);
  letter-spacing: .12em;
}

/* Hide floating button while menu open */
body.menu-open .floating-cta-wrap{display:none;}

/* Mobile safe padding */
@media (max-width: 520px){
  .container{
    padding-left: calc(18px + env(safe-area-inset-left));
    padding-right: calc(18px + env(safe-area-inset-right));
  }
  .floating-cta-wrap{
    right: calc(16px + env(safe-area-inset-right));
    bottom: calc(16px + env(safe-area-inset-bottom));
  }
}

/* Fix: prevent long text (email, address) from overflowing in contact panel */
.kv{
  grid-template-columns: 110px minmax(0, 1fr);
}
.kv > div{
  min-width: 0;               /* สำคัญมาก: ให้ช่องขวาหดได้ */
}
.kv a,
.kv div{
  overflow-wrap: anywhere;    /* ตัดคำ/ตัดอีเมลได้ */
  word-break: break-word;
}

/* Mobile tighter */
@media (max-width: 520px){
  .kv{
    grid-template-columns: 92px minmax(0, 1fr);
  }
}


/* Health fund rebate block */
.healthfund-card{
  background: rgba(15,15,22,.82);
  border:2px solid rgba(212,175,55,.55);
  border-radius: var(--radius2);
  padding: 26px 22px;
  box-shadow: 0 18px 60px rgba(0,0,0,.60);
  backdrop-filter: blur(12px);
}

.healthfund-title{
  margin:0;
  text-align:center;
  font-size: clamp(26px, 3.4vw, 40px);
  color: rgba(245,245,247,.94);
  text-transform: none;
  letter-spacing: -.02em;
}
.healthfund-sub{
  margin:8px 0 18px;
  text-align:center;
  font-size:14px;
  color: var(--muted);
}
.healthfund-logos{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  align-items:center;
  gap: 14px 18px;
  padding: 10px 6px 2px;
}
.healthfund-logos img{
  height: 40px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: saturate(1.05) contrast(1.02);
}

/* Infinite marquee (single row) */
.healthfund-marquee{
  overflow: hidden;
  min-height: 92px; /* prevent blank while images load */
  padding: 10px 6px 2px;
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
}
.healthfund-marquee__inner{
  display: flex;
  width: max-content;
  align-items: center;
  /* iOS Safari can occasionally fail to paint images while animating a large flex row.
     We'll start the animation only after JS marks it ready. */
  animation: healthfundMarquee 34s linear infinite;
  animation-play-state: paused;
  opacity: 0;
  transform: translate3d(0,0,0);
}
.healthfund-marquee__group{
  display: flex;
  align-items: center;
  gap: 18px;
  padding-right: 18px;
}
.healthfund-logo{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 16px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 10px 22px rgba(2,6,23,.08);
}
.healthfund-logo img{
  height: 56px; /* bigger */
  width: auto;
  max-width: 190px;
  object-fit: contain;
  display:block;
}

.healthfund-marquee:hover .healthfund-marquee__inner{
  animation-play-state: paused;
}

@keyframes healthfundMarquee{
  from{ transform: translate3d(0,0,0); }
  to{ transform: translate3d(calc(-1 * var(--hf-marquee-distance, 50%)),0,0); }
}

/* Start marquee only when ready */
.healthfund-marquee.is-ready .healthfund-marquee__inner{
  animation-play-state: running;
  opacity: 1;
}

@media (max-width: 520px){
  .healthfund-marquee__inner{ animation-duration: 42s; }
  .healthfund-logo{ padding: 10px 14px; border-radius: 14px; }
  .healthfund-logo img{ height: 46px; max-width: 170px; }
}

@media (prefers-reduced-motion: reduce){
  .healthfund-marquee{ overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .healthfund-marquee__inner{ animation: none; }
}
@media (max-width: 520px){
  .healthfund-card{
    padding: 22px 16px;
  }
  .healthfund-logos img{
    height: 30px;
    max-width: 110px;
  }
}

/* =======================
   Light theme (white + blue)
   Usage: add class="theme-light" on <body>
   ======================= */
body.theme-light{
  --bg:#f7fbff;
  --panel:#ffffff;
  --ink:#0f172a;
  --muted:rgba(15,23,42,.68);
  --line:rgba(15,23,42,.12);

  /* accents */
  --accent:#2563eb;      /* primary blue */
  --accent_dim:#1d4ed8;  /* deeper blue */
  --accent2:#0ea5e9;     /* sky */

  /* reuse existing vars without rewriting whole CSS */
  --gold_grad: linear-gradient(135deg, #2563eb 0%, #60a5fa 55%, #0ea5e9 100%);
  --shadow: 0 18px 55px rgba(2,6,23,.12);
  --goldGlow: 0 0 0 rgba(0,0,0,0);
  --goldGlowStrong: 0 0 0 rgba(0,0,0,0);

  color: var(--ink);
  background:
    radial-gradient(920px 520px at 15% 0%, rgba(37,99,235,.10), transparent 62%),
    radial-gradient(780px 480px at 85% 10%, rgba(14,165,233,.08), transparent 60%),
    var(--bg);
}

/* Text */
body.theme-light p{color: rgba(15,23,42,.78)}
body.theme-light .small{color: rgba(15,23,42,.70)}
body.theme-light .dot{color: rgba(15,23,42,.35)}
body.theme-light .h-eyebrow{color: rgba(15,23,42,.55)}

/* Header / nav */
body.theme-light .top-strip{
  background: rgba(255,255,255,.82);
  border-bottom:1px solid var(--line);
}
body.theme-light .nav-bar{
  background: rgba(255,255,255,.72);
  border-bottom:1px solid var(--line);
}
body.theme-light .brand__mark{
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,.95), rgba(255,255,255,.35) 45%, transparent 70%),
              linear-gradient(135deg, rgba(37,99,235,1), rgba(14,165,233,1));
  box-shadow: 0 12px 30px rgba(2,6,23,.10);
}

/* Brand text needs higher contrast on light header */
body.theme-light .brand__name{
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  color: rgba(15,23,42,.96);
  -webkit-text-fill-color: rgba(15,23,42,.96);
  text-shadow: 0 10px 28px rgba(2,6,23,.10);
}

body.theme-light .brand__tag{
  color: rgba(15,23,42,.70);
  font-weight: 650;
  font-size: 12.75px;
  line-height: 1.2;
}
body.theme-light .brand__tag{
  color: rgba(15,23,42,.70);
  font-weight: 650;
}
body.theme-light .nav-link{color: rgba(15,23,42,.72)}
body.theme-light .nav-link:hover,
body.theme-light .nav-link.is-active{color: rgba(15,23,42,.92)}
body.theme-light .nav-link.is-active::after{
  background: linear-gradient(90deg, rgba(37,99,235,1), rgba(14,165,233,1));
  box-shadow: 0 0 16px rgba(37,99,235,.22);
}
body.theme-light .nav-trust{
  background: rgba(255,255,255,.70);
  color: rgba(15,23,42,.78);
}
body.theme-light .nav-trust__star{
  color: rgba(37,99,235,.92);
  filter: drop-shadow(0 0 6px rgba(37,99,235,.18));
}
body.theme-light .menu-btn{
  background: rgba(255,255,255,.80);
  border-color: var(--line);
}
body.theme-light .menu-btn span{background: rgba(15,23,42,.65)}
/* Top strip social icons */
body.theme-light .top-strip .icon-btn{
  border-color: rgba(37,99,235,.22);
  background: linear-gradient(135deg, rgba(37,99,235,1), rgba(14,165,233,1));
  box-shadow: 0 10px 24px rgba(37,99,235,.22);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
body.theme-light .top-strip .icon-btn .icon{
  color: rgba(255,255,255,.96);
  opacity: 1;
  text-shadow: 0 2px 10px rgba(2,6,23,.25);
}
body.theme-light .top-strip .icon-btn:hover{
  transform: translateY(-1px);
  filter: brightness(1.05) saturate(1.08);
  box-shadow: 0 14px 30px rgba(37,99,235,.28);
}
body.theme-light .top-strip .icon-btn:active{
  transform: translateY(0);
  filter: brightness(.98);
}
body.theme-light .top-strip .icon-btn:focus-visible{
  outline: 3px solid rgba(37,99,235,.28);
  outline-offset: 2px;
}

/* Top strip social icons */
body.theme-light .top-strip .icon-btn{
  border-color: rgba(37,99,235,.22);
  background: linear-gradient(135deg, rgba(37,99,235,1), rgba(14,165,233,1));
  box-shadow: 0 10px 24px rgba(37,99,235,.22);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
body.theme-light .top-strip .icon-btn .icon{
  color: rgba(255,255,255,.96);
  opacity: 1;
  text-shadow: 0 2px 10px rgba(2,6,23,.25);
}
body.theme-light .top-strip .icon-btn:hover{
  transform: translateY(-1px);
  filter: brightness(1.05) saturate(1.08);
  box-shadow: 0 14px 30px rgba(37,99,235,.28);
}
body.theme-light .top-strip .icon-btn:active{
  transform: translateY(0);
  filter: brightness(.98);
}


/* Mobile menu */
body.theme-light .mobile-menu__backdrop{background: rgba(2,6,23,.45)}

/* =======================
   Contact form (CONTACT US card)
   ======================= */
.contact-us-wrap{max-width:760px; margin-left:auto; margin-right:auto}
.contact-us-card{
  background:#fff;
  color:#111827;
  border:1px solid rgba(15,23,42,.12);
  border-radius:22px;
  overflow:hidden;
  box-shadow: var(--shadow);
}
.contact-us-head{
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent_dim) 100%);
  padding:34px 18px 18px;
  text-align:center;
}
.contact-us-title{
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  text-transform:uppercase;
  letter-spacing:.22em;
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,.92);
  text-stroke: 2px rgba(255,255,255,.92);
}
.contact-us-underline{
  margin:14px auto 0;
  width:min(520px, 84%);
  height:6px;
  background: rgba(255,255,255,.92);
  border-radius:999px;
}
.contact-us-meta{padding: 18px 22px 4px; text-align:center}
.contact-us-meta__line{font-size:18px; color:#111827; display:flex; gap:14px; justify-content:center; flex-wrap:wrap}
.contact-us-meta__line a{color:inherit; text-decoration:none}
.contact-us-meta__line a:hover{text-decoration:underline}
.contact-us-meta__line .sep{opacity:.55}
.contact-us-meta__addr{margin-top:6px; font-size:18px; color: rgba(17,24,39,.82)}

.contact-us-body{padding: 10px 22px 26px}
.contact-us-alert{
  border-radius:14px;
  padding:12px 14px;
  margin: 8px 0 12px;
  font-weight:650;
}
.contact-us-alert--ok{background: rgba(16,185,129,.12); border:1px solid rgba(16,185,129,.22)}
.contact-us-alert--err{background: rgba(239,68,68,.10); border:1px solid rgba(239,68,68,.20)}

.contact-us-form{padding-top:6px}
.contact-us-form .hp{position:absolute; left:-10000px; top:auto; width:1px; height:1px; overflow:hidden}
.contact-us-label{
  display:block;
  font-size:28px;
  font-weight:500;
  color: rgba(17,24,39,.78);
  margin: 16px 0 10px;
}
.contact-us-input,
.contact-us-textarea{
  width:100%;
  font: inherit;
  font-size:20px;
  padding: 10px 0 12px;
  border:0;
  border-bottom: 2px solid rgba(34,65,52,.65);
  outline: none;
  background: transparent;
  color:#111827;
}
.contact-us-textarea{min-height:120px; resize:vertical}
.contact-us-input:focus,
.contact-us-textarea:focus{border-bottom-color: rgba(34,65,52,.92)}
.contact-us-textarea::placeholder{color: rgba(17,24,39,.45)}

.contact-us-submit{
  display:block;
  margin: 28px auto 0;
  padding: 14px 62px;
  border:0;
  border-radius: 4px;
  background:#3a3a3a;
  color:#fff;
  font-weight:650;
  font-size:18px;
  cursor:pointer;
}
.contact-us-submit:hover{filter: brightness(1.08)}
.contact-us-submit:active{transform: translateY(1px)}
body.theme-light .mobile-menu__panel{background: rgba(255,255,255,.92)}
body.theme-light .mobile-link{color: rgba(15,23,42,.86)}
body.theme-light .mobile-link:hover{background: rgba(37,99,235,.10)}

/* Buttons */
body.theme-light .btn{
  background: rgba(255,255,255,.78);
  border-color: var(--line);
  box-shadow: 0 12px 26px rgba(2,6,23,.08);
}
body.theme-light .btn:hover{box-shadow: 0 16px 34px rgba(2,6,23,.10)}
body.theme-light .btn--primary{
  background: var(--gold_grad);
  border-color: rgba(37,99,235,.35);
  color:#fff;
  box-shadow: 0 18px 45px rgba(37,99,235,.18);
}
body.theme-light .btn--ghost{color: rgba(15,23,42,.86)}

/* Cards / panels */
body.theme-light .card,
body.theme-light .panel,
body.theme-light .feature,
body.theme-light .quote,
body.theme-light .vbg-card{
  background: rgba(255,255,255,.86);
  border-color: var(--line);
  box-shadow: 0 18px 45px rgba(2,6,23,.10);
}
body.theme-light .pill{
  background: rgba(37,99,235,.08);
  border-color: rgba(37,99,235,.18);
  color: rgba(15,23,42,.80);
}
body.theme-light .feature__icon{
  background: rgba(37,99,235,.10);
  border-color: rgba(37,99,235,.18);
  color: rgba(15,23,42,.74);
}
body.theme-light .feature__text{color: rgba(15,23,42,.70)}
body.theme-light .quote .stars{color: rgba(37,99,235,.92)}

/* Marquee */
body.theme-light .marquee{background: rgba(255,255,255,.72)}
body.theme-light .marquee__item{color: rgba(15,23,42,.55)}

/* Hero */
body.theme-light .hero-video, 
body.theme-light .hero-poster{
  filter: saturate(1.06) contrast(1.06) brightness(1.02);
}
body.theme-light .hero-overlay{
  /* Show video background 100% (no gradient wash) */
  background: none;
}
body.theme-light .hero-card{
  background: rgba(255,255,255,.86);
  border-color: var(--line);
  box-shadow: 0 22px 65px rgba(2,6,23,.12);
}
body.theme-light .hero h1{
  /* Gradient text (clip to text to avoid big blue block) */
  background: linear-gradient(90deg, #1d4ed8 0%, #2563eb 45%, #0ea5e9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: 0 0 22px rgba(37,99,235,.18);
}
@supports not (-webkit-background-clip: text){
  body.theme-light .hero h1{
    background: none;
    -webkit-text-fill-color: initial;
    color: var(--ink);
    text-shadow: none;
  }
}
body.theme-light .trust-line__link{
  border-color: rgba(37,99,235,.22);
  background: rgba(37,99,235,.10);
  color: rgba(15,23,42,.86);
}
body.theme-light .trust-line__star{
  color: rgba(37,99,235,.92);
  filter: drop-shadow(0 0 8px rgba(37,99,235,.18));
}
body.theme-light .badge{
  background: rgba(37,99,235,.10);
  border-color: rgba(37,99,235,.18);
  color: rgba(15,23,42,.78);
}
body.theme-light .badge--gold{
  background: rgba(14,165,233,.10);
  border-color: rgba(14,165,233,.18);
  box-shadow: none;
}

/* Footer */
body.theme-light .site-footer{
  background: rgba(255,255,255,.82);
}
body.theme-light .footer__link{color: rgba(15,23,42,.72)}
body.theme-light .footer__link:hover{color: rgba(15,23,42,.92)}
body.theme-light .footer__tiny,
body.theme-light .footer__tinylink{color: rgba(15,23,42,.55)}
body.theme-light .footer__tinylink:hover{color: rgba(15,23,42,.78)}
body.theme-light .footer__bottom{border-top:1px solid var(--line)}

/* Floating CTA */
body.theme-light .floating-cta{
  background: linear-gradient(135deg, rgba(37,99,235,1), rgba(14,165,233,1));
  box-shadow: 0 16px 36px rgba(37,99,235,.22);
}
body.theme-light .floating-cta--toggle{ --aura-rgb: 37,99,235; }
body.theme-light .floating-cta-reviews{
  color: rgba(15,23,42,.86);
  background: rgba(255,255,255,.86);
  border-color: rgba(37,99,235,.25);
  box-shadow: 0 14px 30px rgba(2,6,23,.10);
}
body.theme-light .floating-cta-reviews .star{
  color: rgba(37,99,235,.92);
  filter: drop-shadow(0 0 10px rgba(37,99,235,.16));
}
body.theme-light .floating-cta-item{
  background: #ffffff;
  color: rgba(15,23,42,.90);
  border-color: rgba(15,23,42,.12);
  box-shadow: 0 14px 26px rgba(2,6,23,.10);
}
body.theme-light .floating-cta-item__ico{
  background: rgba(var(--accent-rgb), .18);
  border-color: rgba(var(--accent-rgb), .26);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.70), 0 10px 16px rgba(2,6,23,.08);
}
body.theme-light .floating-cta-wrap.is-open .floating-cta-item:hover{
  box-shadow: 0 20px 44px rgba(2,6,23,.12);
}
body.theme-light .floating-cta--toggle{
  box-shadow: 0 18px 44px rgba(37,99,235,.25), 0 0 0 6px rgba(37,99,235,.14);
}


body.theme-light .floating-cta__pulse{
  background: rgba(37,99,235,.92);
}


body.theme-light .floating-cta--toggle .floating-cta__pulse{
  background: radial-gradient(circle at 50% 50%, rgba(var(--aura-rgb),.22) 0%, rgba(var(--aura-rgb),.14) 35%, rgba(var(--aura-rgb),0) 72%);
}
/* Breadcrumbs */
body.theme-light .breadcrumbs{color: rgba(15,23,42,.55)}
body.theme-light .breadcrumbs a{color: rgba(15,23,42,.70)}
body.theme-light .breadcrumbs a:hover{color: rgba(15,23,42,.92)}

/* Health fund block */
body.theme-light .healthfund-card{
  background: rgba(255,255,255,.86);
  border:2px solid rgba(37,99,235,.35);
  box-shadow: 0 18px 60px rgba(2,6,23,.10);
}
body.theme-light .healthfund-title{color: rgba(15,23,42,.92)}
body.theme-light .healthfund-marquee{
  background: rgba(255,255,255,.78);
  border-color: rgba(37,99,235,.18);
}
body.theme-light .healthfund-logo{
  background: #fff;
  border-color: rgba(15,23,42,.08);
  box-shadow: 0 10px 24px rgba(2,6,23,.06);
}

/* Promo popup (homepage) */
.promo-modal{display:none; position:fixed; inset:0; z-index:9999;}
.promo-modal.is-open{display:block;}
.promo-modal__backdrop{position:absolute; inset:0; background:rgba(2,6,23,.70);}
.promo-modal__dialog{
  position:absolute; left:50%; top:50%; transform:translate(-50%,-48%);
  width:min(92vw, 760px);
  max-height:86vh;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(15,23,42,.18);
  border-radius:18px;
  box-shadow: 0 24px 80px rgba(2,6,23,.36);
  overflow:hidden;
  opacity:0;
  transition: transform .22s ease, opacity .22s ease;
}
.promo-modal.is-open .promo-modal__dialog{opacity:1; transform:translate(-50%,-50%);}

.promo-modal__close{
  position:absolute; right:10px; top:10px;
  width:40px; height:40px;
  border-radius:999px;
  border:1px solid rgba(15,23,42,.14);
  background:rgba(255,255,255,.86);
  color:rgba(15,23,42,.82);
  font-size:22px; line-height:1;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer;
  z-index:3;
}
.promo-modal__close:hover{background:#fff; color:rgba(15,23,42,.95)}

.promo-modal__viewport{width:100%; height:100%;}
.promo-modal__track{display:flex; width:100%; height:100%; will-change:transform; transition: transform .38s ease;}
.promo-modal__slide{min-width:100%; display:flex; align-items:center; justify-content:center; padding:14px;}
.promo-modal__img{
  width:100%;
  height:auto;
  max-height:80vh;
  object-fit:contain;
  border-radius:14px;
  box-shadow: 0 18px 60px rgba(2,6,23,.14);
}
.promo-modal__link{display:block; width:100%;}

.promo-modal__nav{
  position:absolute; top:50%; transform:translateY(-50%);
  width:42px; height:42px;
  border-radius:999px;
  border:1px solid rgba(15,23,42,.16);
  background:rgba(255,255,255,.84);
  color:rgba(15,23,42,.78);
  display:flex; align-items:center; justify-content:center;
  cursor:pointer;
  z-index:3;
}
.promo-modal__nav:hover{background:#fff; color:rgba(15,23,42,.95)}
.promo-modal__nav--prev{left:10px;}
.promo-modal__nav--next{right:10px;}
.promo-modal__nav[disabled]{opacity:.35; cursor:default; pointer-events:none;}

.promo-modal__dots{
  position:absolute; left:0; right:0; bottom:10px;
  display:flex; gap:8px; justify-content:center;
  z-index:3;
}
.promo-modal__dot{
  width:8px; height:8px; border-radius:999px;
  border:1px solid rgba(15,23,42,.20);
  background:rgba(255,255,255,.75);
  cursor:pointer;
}
.promo-modal__dot.is-active{background:rgba(37,99,235,.80); border-color:rgba(37,99,235,.25)}

@media (max-width: 520px){
  .promo-modal__slide{padding:10px;}
  .promo-modal__nav{display:none;}
  .promo-modal__close{right:8px; top:8px; width:38px; height:38px;}
}

/* ------------------------------
   Price list page
-------------------------------- */
.price-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:14px;
}
@media (max-width: 900px){
  .price-grid{ grid-template-columns: 1fr; }
}
.price-card{ padding:18px 18px; }
.price-card__title{ margin:0 0 10px; font-size:18px; letter-spacing:.2px; }
.price-row{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:14px;
  padding:8px 0;
  border-bottom:1px dashed var(--line);
  font-size:14px;
}
.price-row:last-child{ border-bottom:none; }
.price-left{ display:flex; align-items:baseline; gap:10px; flex-wrap:wrap; }
.price-name{ font-weight:750; color: var(--ink); }
.price-dur{ color: var(--muted); font-weight:650; font-size:13px; }
.price-val{ font-weight:800; color: var(--ink); }
.price-row.is-highlight .price-name,
.price-row.is-highlight .price-val{ color: #D14343; }

/* Non-clickable review badges */
.nav-trust[role="note"],
.trust-line__link[role="note"],
.floating-cta-reviews[role="note"],
.footer__tinylink[role="note"]{
  cursor: default;
}


/* Clear video overlay for specific homepage sections (show video directly) */
#choose-treatment .vbg-overlay,
#why-people-come-back .vbg-overlay{
  display:none !important;
}
