:root{
  --brand:#17695c;
  --brand-dark:#0e5146;
  --brand-deep:#082f29;
  --brand-soft:#edf7f4;
  --brand-soft-2:#f6fbf9;
  --gold:#d5b36b;
  --gold-2:#f0ddb2;
  --gold-3:#a77a32;
  --silver:#e8efec;
  --silver-2:#b8c8c3;
  --ink:#142722;
  --text:#3d504a;
  --muted:#71817c;
  --white:#ffffff;
  --soft:#f6f9f8;
  --line:#dde7e3;
  --danger:#c64f4f;
  --success:#16825a;
  --shadow-xs:0 5px 18px rgba(7,49,41,.05);
  --shadow-sm:0 12px 34px rgba(7,49,41,.09);
  --shadow-md:0 24px 65px rgba(7,49,41,.14);
  --shadow-lg:0 38px 95px rgba(5,35,29,.21);
  --container:1220px;
}

/* RESET */

*{box-sizing:border-box}
html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:"Be Vietnam Pro",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--ink);
  background:#fff;
  font-size:15px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

body.modal-open{overflow:hidden}
a{color:inherit;text-decoration:none}
button,input,select,textarea{font:inherit}
button{cursor:pointer}
img{display:block;max-width:100%}
svg{width:20px;height:20px;stroke-width:1.85}

.container{
  width:min(var(--container),calc(100% - 48px));
  margin:0 auto;
}

.section{position:relative;padding:96px 0}

.section-soft{
  background:
    radial-gradient(circle at 80% 5%,rgba(222,238,233,.55),transparent 24%),
    #f6f9f8;
}

/* BUTTON */

.btn{
  min-height:46px;
  padding:0 18px;
  border:0;
  border-radius:12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  font-size:13px;
  font-weight:700;
  line-height:1;
  transition:
    transform .2s ease,
    box-shadow .2s ease,
    background .2s ease,
    border-color .2s ease;
}

.btn:hover{transform:none}

.btn-primary{
  color:#fff;
  background:linear-gradient(145deg,#207668,var(--brand) 48%,#0e5146);
  box-shadow:
    0 12px 28px rgba(23,105,92,.23),
    inset 0 1px 0 rgba(255,255,255,.18);
}

.btn-primary:hover{
  box-shadow:
    0 17px 35px rgba(23,105,92,.31),
    inset 0 1px 0 rgba(255,255,255,.23);
}

.btn-outline{
  color:var(--ink);
  border:1px solid #cedbd7;
  background:#fff;
}

.btn-outline:hover{
  border-color:#99bcb2;
  background:#f9fcfb;
}

.btn-light{color:var(--brand-deep);background:#fff}

.btn-gold{
  position:relative;
  overflow:hidden;
  color:#233a34;
  background:linear-gradient(135deg,#b98d42,#eed69f 42%,#d1a95d 72%,#f3e3bd);
  box-shadow:
    0 12px 30px rgba(180,137,60,.25),
    inset 0 1px 0 rgba(255,255,255,.6);
}

.btn-gold::after{
  content:"";
  position:absolute;
  top:-30%;
  bottom:-30%;
  left:-80%;
  width:45%;
  transform:skewX(-22deg);
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.5),transparent);
  animation:goldButtonSweep 4.2s ease-in-out infinite;
}

.btn-gold>*{position:relative;z-index:2}
.btn-small{min-height:40px;padding:0 14px;font-size:12px}
.btn-large-simple{min-height:56px;padding:0 23px}

/* ANNOUNCEMENT */

.announcement{
  position:relative;
  overflow:hidden;
  color:#fff;
  background:linear-gradient(90deg,#062b25,#0c4c42 35%,#17695c 58%,#0b443b);
}

.announcement::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(110deg,transparent 20%,rgba(239,215,163,.13) 44%,transparent 67%);
  transform:translateX(-100%);
  animation:announcementSweep 5s linear infinite;
}

.announcement-inner{
  position:relative;
  z-index:2;
  min-height:43px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.announcement-message{
  display:flex;
  align-items:center;
  gap:9px;
  font-size:12px;
  font-weight:600;
}

.announcement-message svg{width:17px;color:#f1dcae}

.announcement-action{
  padding:0;
  border:0;
  background:transparent;
  color:#f5dfa9;
  display:flex;
  align-items:center;
  gap:6px;
  font-size:12px;
  font-weight:800;
}

.announcement-action svg{width:16px}

/* HEADER */

.site-header{
  position:sticky;
  top:0;
  z-index:70;
  border-bottom:1px solid rgba(219,230,226,.88);
  background:rgba(255,255,255,.965);
  backdrop-filter:blur(18px);
}

.navbar{
  height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:26px;
}

.brand{
  flex-shrink:0;
  display:flex;
  align-items:center;
  gap:11px;
}

.brand-logo{width:47px;height:47px;object-fit:contain}

.brand-copy{
  display:flex;
  flex-direction:column;
  line-height:1.2;
}

.brand-copy strong{
  color:var(--brand-deep);
  font-size:16px;
  font-weight:800;
}

.brand-copy span{
  margin-top:3px;
  color:#8b9893;
  font-size:9px;
  font-weight:600;
  letter-spacing:.07em;
}

.desktop-nav{display:flex;align-items:center;gap:27px}

.desktop-nav a{
  position:relative;
  white-space:nowrap;
  color:#495b55;
  font-size:12px;
  font-weight:650;
}

.desktop-nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-10px;
  width:0;
  height:2px;
  border-radius:99px;
  background:var(--brand);
  transition:.2s;
}

.desktop-nav a:hover{color:var(--brand)}
.desktop-nav a:hover::after{width:100%}
.header-actions{display:flex;align-items:center;gap:12px}
.header-phone{display:flex;align-items:center;gap:9px}

.header-phone-icon{
  width:39px;
  height:39px;
  border:1px solid #d9e9e4;
  border-radius:50%;
  display:grid;
  place-items:center;
  color:var(--brand);
  background:var(--brand-soft);
}

.header-phone-icon svg{width:17px}
.header-phone span:last-child{display:flex;flex-direction:column}
.header-phone small{color:#8a9893;font-size:8px}
.header-phone strong{color:var(--brand-dark);font-size:11px}
.btn-header{min-height:42px}

.mobile-menu-button{
  display:none;
  width:42px;
  height:42px;
  border:1px solid var(--line);
  border-radius:11px;
  background:#fff;
  color:var(--ink);
  place-items:center;
}

.mobile-menu{display:none}

/* HERO */

.hero{
  position:relative;
  overflow:hidden;
  padding:78px 0 86px;
  background:
    radial-gradient(circle at 12% 28%,rgba(206,233,226,.72),transparent 25%),
    radial-gradient(circle at 92% 12%,rgba(233,215,176,.35),transparent 27%),
    linear-gradient(118deg,#fbfdfc,#f0f7f5 57%,#e7f1ee);
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  opacity:.36;
  pointer-events:none;
  background-image:
    linear-gradient(rgba(23,105,92,.045) 1px,transparent 1px),
    linear-gradient(90deg,rgba(23,105,92,.045) 1px,transparent 1px);
  background-size:42px 42px;
  mask-image:linear-gradient(to right,black,transparent 85%);
}

.hero-decoration{
  position:absolute;
  border-radius:50%;
  pointer-events:none;
}

.hero-decoration-left{
  width:370px;
  height:370px;
  left:-190px;
  top:-180px;
  background:#d9eee8;
}

.hero-decoration-right{
  width:460px;
  height:460px;
  right:-245px;
  bottom:-290px;
  background:#eee0bf;
  opacity:.52;
}

.hero-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1.03fr .97fr;
  gap:68px;
  align-items:center;
}

.hero-eyebrow,.section-kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-bottom:17px;
  color:var(--brand);
  font-size:11px;
  font-weight:800;
  letter-spacing:.13em;
  text-transform:uppercase;
}

.section-kicker::before{
  content:"";
  width:28px;
  height:2px;
  background:currentColor;
}

.section-kicker.light{color:var(--gold-2)}

.hero h1{
  margin:0 0 22px;
  color:var(--ink);
  font-size:clamp(45px,5vw,67px);
  line-height:1.08;
  letter-spacing:-.045em;
  font-weight:700;
}

.hero h1 span,.hero h1 strong{display:block}

.hero h1 strong{
  margin-top:5px;
  color:var(--brand);
  font-weight:800;
}

.hero-description{
  max-width:610px;
  margin:0 0 29px;
  color:#566862;
  font-size:16px;
  line-height:1.75;
}

.hero-actions{display:flex;flex-wrap:wrap;gap:11px}
.btn-large{min-height:62px;padding:0 22px;gap:13px}

.btn-large>span{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  line-height:1.25;
}

.btn-large>span strong{font-size:13px}

.btn-large>span small{
  margin-top:3px;
  opacity:.72;
  font-size:9px;
  font-weight:500;
}

.hero-assurance{
  margin-top:34px;
  padding-top:24px;
  border-top:1px solid rgba(23,105,92,.15);
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.hero-assurance>div{
  display:flex;
  align-items:flex-start;
  gap:9px;
}

.hero-assurance svg{
  flex:0 0 auto;
  width:18px;
  color:var(--brand);
}

.hero-assurance span{display:flex;flex-direction:column}
.hero-assurance strong{color:#30453f;font-size:11px}
.hero-assurance small{margin-top:2px;color:#87938f;font-size:9px}
.quick-branch{margin-top:27px}

.quick-branch-label{
  display:block;
  margin-bottom:10px;
  color:#53645e;
  font-size:11px;
  font-weight:700;
}

.quick-branch-list{display:flex;flex-wrap:wrap;gap:8px}

.quick-branch-button{
  padding:8px 12px;
  border:1px solid #cfdeda;
  border-radius:999px;
  background:rgba(255,255,255,.85);
  color:#52645e;
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:10px;
  font-weight:700;
  box-shadow:0 4px 12px rgba(7,49,41,.04);
  transition:.18s;
}

.quick-branch-button:hover{
  transform:none;
  border-color:#90b9ae;
  color:var(--brand);
}

.quick-branch-button svg{width:14px}

/* HERO IMAGE */

.hero-media{
  position:relative;
  padding:0 23px 50px 0;
  perspective:1200px;
}

.hero-image-shell{
  position:relative;
  height:610px;
  overflow:hidden;
  border-radius:38px 38px 100px 38px;
  background:#dce9e5;
  box-shadow:
    0 45px 100px rgba(5,42,35,.22),
    0 0 0 1px rgba(255,255,255,.8) inset;
  transform:rotateY(-1.5deg) rotateX(.6deg);
  transform-style:preserve-3d;
}

.hero-image-shell::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:4;
  pointer-events:none;
  border-radius:inherit;
  padding:1px;
  background:linear-gradient(
    135deg,
    rgba(255,255,255,.95),
    rgba(215,181,108,.55),
    rgba(108,149,139,.28),
    rgba(255,255,255,.7)
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
}

.hero-image{width:100%;height:100%;object-fit:cover}

.hero-image-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    180deg,
    rgba(5,35,29,0) 40%,
    rgba(5,35,29,.43) 100%
  );
}

.hero-floating-top,.hero-floating-bottom{
  position:absolute;
  z-index:5;
  border:1px solid rgba(255,255,255,.85);
  background:rgba(255,255,255,.95);
  backdrop-filter:blur(12px);
  box-shadow:0 16px 40px rgba(7,48,40,.15);
}

.hero-floating-top{
  top:19px;
  left:19px;
  padding:12px 14px;
  border-radius:16px;
  display:flex;
  align-items:center;
  gap:10px;
}

.hero-floating-icon{
  width:36px;
  height:36px;
  border-radius:11px;
  display:grid;
  place-items:center;
  color:var(--brand);
  background:var(--brand-soft);
}

.hero-floating-icon svg{width:17px}
.hero-floating-top span:last-child{display:flex;flex-direction:column}
.hero-floating-top strong{font-size:10px}
.hero-floating-top small{color:#83918c;font-size:8px}

.hero-floating-bottom{
  left:19px;
  bottom:20px;
  padding:12px 15px;
  border-radius:16px;
}

.hero-rating{display:flex;gap:2px;color:#d19e3e}
.hero-rating svg{width:12px;height:12px;fill:currentColor}

.hero-floating-bottom strong{
  display:block;
  margin-top:4px;
  font-size:10px;
}

.hero-floating-bottom small{
  display:block;
  margin-top:2px;
  color:#83918c;
  font-size:8px;
}

/* HERO PROMOTION */

.hero-promotion{
  --promo-image:none;
  position:absolute;
  z-index:12;
  right:-6px;
  bottom:0;
  width:280px;
  min-height:215px;
  overflow:hidden;
  padding:22px;
  border-radius:24px;
  color:#fff;
  background:linear-gradient(
    145deg,
    rgba(5,42,35,.96),
    rgba(14,81,70,.93)
  );
  box-shadow:
    0 28px 60px rgba(4,42,34,.33),
    0 0 0 1px rgba(255,255,255,.12) inset;
  animation:none;
}

.hero-promotion::before{
  content:"";
  position:absolute;
  inset:0;
  opacity:.24;
  background-image:
    linear-gradient(120deg,rgba(4,35,29,.3),rgba(4,35,29,.86)),
    var(--promo-image);
  background-size:cover;
  background-position:center;
}

.hero-promotion::after{
  content:"";
  position:absolute;
  top:-30%;
  bottom:-30%;
  left:-95%;
  width:55%;
  transform:skewX(-20deg);
  background:linear-gradient(
    90deg,
    transparent,
    rgba(255,235,190,.26),
    rgba(255,255,255,.34),
    transparent
  );
  animation:heroPromoShine 4.8s ease-in-out infinite;
}

.hero-promotion>*{position:relative;z-index:2}

.hero-promotion-label{
  display:inline-flex;
  padding:6px 9px;
  border:1px solid rgba(255,255,255,.13);
  border-radius:999px;
  color:#ffe9b8;
  background:rgba(255,255,255,.1);
  font-size:8px;
  font-weight:800;
  letter-spacing:.12em;
}

.hero-promotion>strong{
  display:block;
  margin-top:12px;
  color:#f6dfae;
  font-size:28px;
  line-height:1.05;
  letter-spacing:-.025em;
  text-shadow:
    0 2px 0 rgba(255,255,255,.08),
    0 7px 18px rgba(0,0,0,.26);
}

.hero-promotion p{
  margin:8px 0 15px;
  color:rgba(255,255,255,.77);
  font-size:10px;
  line-height:1.55;
}

.hero-promotion button{
  padding:9px 11px;
  border:0;
  border-radius:9px;
  color:#1f392f;
  background:linear-gradient(135deg,#f2dba8,#bf9147);
  display:flex;
  align-items:center;
  gap:6px;
  font-size:9px;
  font-weight:800;
  box-shadow:0 8px 18px rgba(0,0,0,.16);
}

.hero-promotion button svg{width:14px}

/* TRUST */

.trust-bar{
  border-top:1px solid #edf2f0;
  border-bottom:1px solid #e7eeeb;
  background:#fff;
}

.trust-bar-grid{
  min-height:78px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
}

.trust-bar-grid>div{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  border-right:1px solid #e9efed;
  color:#52635e;
  font-size:11px;
  font-weight:700;
}

.trust-bar-grid>div:last-child{border-right:0}
.trust-bar-grid svg{width:18px;color:var(--brand)}

/* SECTION HEADINGS */

.section-heading{
  margin-bottom:43px;
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:50px;
}

.section-heading>div{max-width:720px}

.section-heading h2,
.experience-content h2,
.faq-intro h2,
.final-cta h2{
  margin:0;
  color:var(--ink);
  font-size:clamp(34px,4vw,50px);
  line-height:1.16;
  letter-spacing:-.037em;
  font-weight:700;
}

.section-heading h2 strong,
.experience-content h2 strong,
.faq-intro h2 strong{
  color:var(--brand);
  font-weight:800;
}

.section-heading>p{
  max-width:390px;
  margin:0 0 4px;
  color:var(--muted);
  font-size:13px;
  line-height:1.75;
}

.section-heading.centered{
  display:block;
  max-width:790px;
  margin:0 auto 46px;
  text-align:center;
}

.section-heading.centered .section-kicker{justify-content:center}

.section-heading.centered>p{
  max-width:620px;
  margin:13px auto 0;
}

/* CAMPAIGN SLIDER */

.campaign-section{
  overflow:hidden;
  background:linear-gradient(#fff,#fcfdfd);
}

.campaign-slider{
  position:relative;
  min-height:520px;
  overflow:hidden;
  border-radius:31px;
  background:var(--brand-deep);
  box-shadow:
    0 35px 85px rgba(6,43,36,.20),
    0 0 0 1px rgba(213,179,107,.24);
}

.campaign-slider::before{
  content:"";
  position:absolute;
  inset:-1px;
  z-index:6;
  border-radius:31px;
  pointer-events:none;
  padding:1px;
  background:linear-gradient(
    115deg,
    rgba(255,255,255,.55),
    rgba(223,190,119,.8),
    rgba(255,255,255,.25),
    rgba(125,170,159,.55),
    rgba(255,255,255,.65)
  );
  background-size:300% 100%;
  animation:metalBorderMove 7s linear infinite;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
}

.campaign-track{position:relative;min-height:520px}

.campaign-slide{
  position:absolute;
  inset:0;
  opacity:0;
  pointer-events:none;
  transform:scale(1.018);
  transition:opacity .58s ease,transform .65s ease;
}

.campaign-slide.active{
  opacity:1;
  pointer-events:auto;
  transform:scale(1);
}

.campaign-slide-image{position:absolute;inset:0}
.campaign-slide-image img{width:100%;height:100%;object-fit:cover}

.campaign-slide-image::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    90deg,
    rgba(5,35,29,.94),
    rgba(5,42,35,.80) 42%,
    rgba(5,42,35,.35) 73%,
    rgba(5,42,35,.18)
  );
}

.campaign-slide-content{
  position:relative;
  z-index:2;
  min-height:520px;
  padding:54px 64px;
  display:grid;
  grid-template-columns:1.25fr .75fr;
  align-items:center;
  gap:40px;
}

.campaign-copy{max-width:640px;color:#fff}

.campaign-label{
  display:inline-flex;
  padding:7px 11px;
  border:1px solid rgba(255,255,255,.23);
  border-radius:999px;
  color:#f5deb0;
  background:rgba(255,255,255,.08);
  font-size:9px;
  font-weight:800;
  letter-spacing:.12em;
}

.campaign-copy h3{
  margin:17px 0 12px;
  font-size:clamp(36px,4.5vw,59px);
  line-height:1.08;
  letter-spacing:-.045em;
}

.campaign-copy h3 .shine-text{
  position:relative;
  color:#f1d59a;
  text-shadow:0 5px 22px rgba(223,183,100,.2);
}

.campaign-copy h3 .shine-text::after{
  content:"";
  position:absolute;
  left:-10%;
  right:-10%;
  bottom:-6px;
  height:4px;
  border-radius:99px;
  background:linear-gradient(90deg,transparent,#e9c77e,transparent);
}

.campaign-copy p{
  max-width:540px;
  color:rgba(255,255,255,.73);
  font-size:13px;
  line-height:1.75;
}

.campaign-actions{
  margin-top:24px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.campaign-outline{
  color:#fff;
  border-color:rgba(255,255,255,.34);
  background:rgba(255,255,255,.07);
}

.campaign-stats{
  justify-self:end;
  width:min(300px,100%);
  display:grid;
  gap:11px;
}

.campaign-stat{
  position:relative;
  overflow:hidden;
  padding:19px;
  border:1px solid rgba(255,255,255,.17);
  border-radius:18px;
  color:#fff;
  background:rgba(7,48,40,.72);
  backdrop-filter:blur(11px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.13),
    0 12px 35px rgba(0,0,0,.09);
}

.campaign-stat::after{
  content:"";
  position:absolute;
  top:-40%;
  bottom:-40%;
  left:-80%;
  width:45%;
  transform:skewX(-18deg);
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.16),transparent);
  animation:cardShine 5.4s ease-in-out infinite;
}

.campaign-stat span{
  display:block;
  color:#f1d59b;
  font-size:8px;
  font-weight:800;
  letter-spacing:.1em;
}

.campaign-stat strong{
  display:block;
  margin-top:6px;
  font-size:29px;
}

.campaign-stat small{
  display:block;
  margin-top:5px;
  color:rgba(255,255,255,.65);
  font-size:9px;
  line-height:1.55;
}

.slider-button{
  position:absolute;
  z-index:10;
  top:50%;
  width:44px;
  height:44px;
  border:1px solid rgba(255,255,255,.24);
  border-radius:50%;
  color:#fff;
  background:rgba(6,42,35,.52);
  backdrop-filter:blur(8px);
  display:grid;
  place-items:center;
  transform:translateY(-50%);
  transition:.18s;
}

.slider-button:hover{background:#fff;color:var(--brand)}
.slider-prev{left:16px}
.slider-next{right:16px}

.campaign-pagination{
  position:absolute;
  z-index:10;
  left:52px;
  right:52px;
  bottom:20px;
  display:flex;
  align-items:center;
  gap:16px;
}

#spotlightDots{display:flex;gap:7px}

.spotlight-dot{
  width:8px;
  height:8px;
  padding:0;
  border:0;
  border-radius:99px;
  background:rgba(255,255,255,.43);
  transition:.2s;
}

.spotlight-dot.active{width:28px;background:#f2d9a5}

.campaign-progress{
  flex:1;
  height:2px;
  overflow:hidden;
  background:rgba(255,255,255,.17);
}

.campaign-progress span{
  display:block;
  width:0;
  height:100%;
  background:#f2d9a5;
}

/* PROMOTIONS */

#promotions{position:relative;overflow:hidden}

#promotions::before{
  content:"";
  position:absolute;
  width:650px;
  height:650px;
  top:-340px;
  left:50%;
  transform:translateX(-50%);
  border-radius:50%;
  pointer-events:none;
  background:radial-gradient(
    circle,
    rgba(219,185,111,.25),
    rgba(23,105,92,.055) 43%,
    transparent 70%
  );
}

.promotion-grid{
  position:relative;
  z-index:2;
  max-width:1180px;
  margin:0 auto;
  display:grid;
  grid-template-columns:
    minmax(0,.84fr)
    minmax(0,1.18fr)
    minmax(0,.84fr);
  grid-template-rows:1fr;
  gap:22px;
  align-items:center;
  perspective:1400px;
}

.promotion-card{
  position:relative;
  min-width:0;
  min-height:375px;
  overflow:hidden;
  padding:0;
  border-radius:25px;
  background:#0a4037;
  transform-style:preserve-3d;
  box-shadow:
    0 18px 44px rgba(6,48,40,.13),
    0 3px 8px rgba(6,48,40,.06);
  transition:
    transform .34s cubic-bezier(.2,.8,.2,1),
    box-shadow .34s ease,
    filter .34s ease;
}

.promotion-card.featured{
  grid-column:2;
  grid-row:1;
  min-height:505px;
  z-index:5;
  align-self:center;
  transform:perspective(1200px) translateZ(24px);
  box-shadow:
    0 38px 82px rgba(4,43,36,.24),
    0 13px 32px rgba(4,43,36,.12);
}

.promotion-grid{grid-auto-flow:dense}

.promotion-card:not(.featured){
  min-height:385px;
  align-self:center;
  z-index:2;
}

.promotion-card:not(.featured):nth-child(2){
  grid-column:1;
  grid-row:1;
  transform:perspective(1200px) rotateY(2.2deg) scale(.975);
}

.promotion-card:not(.featured):nth-child(3){
  grid-column:3;
  grid-row:1;
  transform:perspective(1200px) rotateY(-2.2deg) scale(.975);
}

.promotion-card:not(.featured):first-child{
  grid-column:1;
  grid-row:1;
}

.promotion-card:not(.featured):last-child{
  grid-column:3;
  grid-row:1;
}

/* METALLIC BORDER */

.promotion-card::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:9;
  pointer-events:none;
  border-radius:inherit;
  padding:1px;
  background:linear-gradient(
    125deg,
    rgba(255,255,255,.94) 0%,
    rgba(181,202,196,.65) 12%,
    rgba(241,216,165,.95) 27%,
    rgba(165,187,181,.58) 41%,
    rgba(255,243,213,.95) 55%,
    rgba(177,198,192,.58) 69%,
    rgba(224,190,118,.87) 84%,
    rgba(255,255,255,.90) 100%
  );
  background-size:280% 100%;
  animation:promoMetalBorder 7s linear infinite;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
}

.promotion-card.featured::before{
  padding:1.5px;
  background:linear-gradient(
    125deg,
    #fff9e9,
    #b58a42,
    #f5dfad,
    #ffffff,
    #b88738,
    #f8e7be,
    #ffffff
  );
  background-size:300% 100%;
  animation:promoMetalBorder 5.5s linear infinite;
}

/* PROMOTION IMAGE */

.promotion-media{
  position:absolute;
  inset:0;
  overflow:hidden;
}

.promotion-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:
    transform .65s cubic-bezier(.2,.8,.2,1),
    filter .4s ease;
}

.promotion-card:not(.featured) .promotion-media img{
  transform:scale(1.01);
}

.promotion-card.featured .promotion-media img{
  transform:scale(1.035);
}

.promotion-media::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    180deg,
    rgba(4,34,29,.03) 0%,
    rgba(4,34,29,.08) 24%,
    rgba(5,38,32,.40) 58%,
    rgba(4,32,27,.95) 100%
  );
}

.promotion-card.featured .promotion-media::after{
  background:linear-gradient(
    180deg,
    rgba(4,34,29,.01) 0%,
    rgba(4,34,29,.07) 22%,
    rgba(5,38,32,.27) 48%,
    rgba(4,32,27,.97) 100%
  );
}

.promotion-card.featured .promotion-media::before{
  content:"";
  position:absolute;
  z-index:2;
  width:300px;
  height:300px;
  right:-145px;
  bottom:-140px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(239,209,143,.30),transparent 69%);
  pointer-events:none;
}

/* SHINE PASS */

.promotion-shine{
  position:absolute;
  z-index:5;
  top:-35%;
  bottom:-35%;
  left:-100%;
  width:42%;
  transform:skewX(-20deg);
  pointer-events:none;
  background:linear-gradient(
    90deg,
    transparent,
    rgba(255,238,199,.08),
    rgba(255,255,255,.30),
    rgba(249,219,157,.20),
    transparent
  );
  animation:promotionSweep 6.2s ease-in-out infinite;
}

.promotion-card.featured .promotion-shine{
  width:48%;
  background:linear-gradient(
    90deg,
    transparent,
    rgba(255,235,183,.11),
    rgba(255,255,255,.40),
    rgba(245,208,129,.27),
    transparent
  );
  animation-duration:5.2s;
}

/* PROMOTION CONTENT */

.promotion-content{
  position:absolute;
  z-index:6;
  left:0;
  right:0;
  bottom:0;
  padding:24px;
  color:#fff;
  transform:translateZ(25px);
}

.promotion-card.featured .promotion-content{padding:32px}

.promotion-badge{
  display:inline-flex;
  align-items:center;
  min-height:27px;
  padding:0 10px;
  border:1px solid rgba(255,255,255,.20);
  border-radius:999px;
  color:#f4dba6;
  background:rgba(5,43,36,.58);
  backdrop-filter:blur(9px);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.10);
  font-size:8px;
  font-weight:800;
  letter-spacing:.08em;
}

.promotion-card.featured .promotion-badge{
  color:#22372f;
  background:linear-gradient(135deg,#f3dea9,#bf9148);
  border-color:rgba(255,255,255,.30);
  box-shadow:0 7px 16px rgba(0,0,0,.15);
}

.promotion-card h3{
  max-width:94%;
  margin:15px 0 8px;
  color:#fff;
  font-size:20px;
  line-height:1.38;
  font-weight:750;
  letter-spacing:-.025em;
  text-shadow:0 4px 18px rgba(0,0,0,.27);
}

.promotion-card.featured h3{
  max-width:90%;
  margin-top:18px;
  font-size:29px;
  line-height:1.28;
}

.promotion-card p{
  max-width:94%;
  margin:0;
  color:rgba(255,255,255,.70);
  font-size:9px;
  line-height:1.72;
}

.promotion-card.featured p{
  max-width:86%;
  font-size:10px;
}

.promotion-highlight{
  margin-top:16px;
  color:#f4d79c;
  font-size:30px;
  line-height:1;
  font-weight:850;
  letter-spacing:-.04em;
  text-shadow:
    0 3px 0 rgba(255,255,255,.06),
    0 10px 25px rgba(0,0,0,.27);
}

.promotion-card.featured .promotion-highlight{
  margin-top:20px;
  font-size:46px;
  background:linear-gradient(
    110deg,
    #b7893d,
    #f6dfa9 32%,
    #fff0c8 47%,
    #d4aa5a 66%,
    #f7e4b9
  );
  background-size:220% auto;
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  animation:promoGoldText 4s linear infinite;
  filter:drop-shadow(0 8px 16px rgba(0,0,0,.20));
}

.promotion-bottom{
  margin-top:22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.promotion-bottom small{
  color:rgba(255,255,255,.58);
  font-size:8px;
}

.promotion-book{
  flex:0 0 auto;
  width:44px;
  height:44px;
  padding:0;
  border:1px solid rgba(255,255,255,.20);
  border-radius:50%;
  color:#21372f;
  background:linear-gradient(145deg,#f5e0ac,#be8e43);
  display:grid;
  place-items:center;
  box-shadow:
    0 10px 24px rgba(0,0,0,.18),
    inset 0 1px 0 rgba(255,255,255,.65);
  transition:transform .22s ease,box-shadow .22s ease;
}

.promotion-card.featured .promotion-book{
  width:50px;
  height:50px;
}

.promotion-book:hover{
  transform:none;
  box-shadow:0 14px 28px rgba(0,0,0,.23);
}

.promotion-book svg{width:18px}

@media(hover:hover){
  .promotion-card:not(.featured):hover{
    box-shadow:0 30px 65px rgba(4,43,36,.20);
  }

  .promotion-card.featured:hover{
    transform:perspective(1200px) translateZ(24px);
    box-shadow:
      0 44px 95px rgba(4,43,36,.29),
      0 15px 35px rgba(4,43,36,.14);
  }

  .promotion-card:hover .promotion-media img{
    transform:scale(1.075);
  }
}

/* SERVICES */

.service-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:19px;
}

.service-card{
  position:relative;
  min-height:405px;
  overflow:hidden;
  border-radius:24px;
  background:#fff;
  box-shadow:0 12px 34px rgba(8,53,44,.08);
  transform-style:preserve-3d;
  transition:
    transform .32s cubic-bezier(.22,.8,.23,1),
    box-shadow .32s ease;
}

.service-card::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:8;
  pointer-events:none;
  border-radius:inherit;
  padding:1px;
  background:linear-gradient(
    125deg,
    #ffffff,
    #c2d2cd 18%,
    #f3ddb0 36%,
    #8fa9a2 51%,
    #fff4d7 68%,
    #a6bbb5 82%,
    #ffffff
  );
  background-size:240% 100%;
  animation:metalBorderMove 8s linear infinite;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
}

.service-card::after{
  content:"";
  position:absolute;
  z-index:7;
  top:-35%;
  bottom:-35%;
  left:-100%;
  width:42%;
  pointer-events:none;
  transform:skewX(-19deg);
  background:linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.06),
    rgba(248,224,170,.34),
    rgba(255,255,255,.14),
    transparent
  );
  animation:serviceShine 6.5s ease-in-out infinite;
}

.service-card:hover{
  transform:none;
  box-shadow:0 30px 65px rgba(6,50,41,.16);
}

.service-image{
  position:relative;
  height:205px;
  overflow:hidden;
  background:#dde9e5;
}

.service-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .55s ease;
}

.service-card:hover .service-image img{transform:scale(1.065)}

.service-image::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    180deg,
    rgba(4,37,31,.02),
    rgba(4,37,31,.10) 60%,
    rgba(4,37,31,.54)
  );
}

.service-image-label{
  position:absolute;
  z-index:3;
  left:14px;
  bottom:13px;
  padding:7px 10px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:999px;
  color:#fff;
  background:rgba(5,44,36,.65);
  backdrop-filter:blur(8px);
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:8px;
  font-weight:700;
}

.service-image-label svg{width:13px}
.service-card-body{padding:21px}

.service-heading{
  display:flex;
  align-items:flex-start;
  gap:12px;
}

.service-icon{
  flex:0 0 auto;
  width:47px;
  height:47px;
  margin:0;
  border:1px solid #d4e5e0;
  border-radius:14px;
  color:var(--brand);
  background:linear-gradient(145deg,#f9fffd,#dcece7);
  display:grid;
  place-items:center;
  box-shadow:
    inset 0 1px 0 #fff,
    0 8px 17px rgba(12,63,53,.07);
}

.service-icon svg{width:22px}
.service-heading-copy{min-width:0}

.service-card h3{
  margin:1px 0 5px;
  color:#203832;
  font-size:16px;
  line-height:1.35;
}

.service-price{
  margin:0;
  color:var(--brand);
  font-size:10px;
  font-weight:800;
}

.service-card-body>p{
  min-height:52px;
  margin:14px 0 0;
  color:#71817c;
  font-size:10px;
  line-height:1.7;
}

.service-actions{
  margin-top:18px;
  padding-top:15px;
  border-top:1px solid #edf2f0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.service-detail{
  padding:0;
  border:0;
  color:#65766f;
  background:transparent;
  display:flex;
  align-items:center;
  gap:5px;
  font-size:9px;
  font-weight:700;
}

.service-detail svg{width:14px}

.service-book{
  padding:9px 12px;
  border:0;
  border-radius:9px;
  color:#fff;
  background:linear-gradient(145deg,#207366,#11564b);
  font-size:9px;
  font-weight:750;
  box-shadow:0 8px 17px rgba(23,105,92,.17);
}

/* INLINE CONVERSION */

.inline-conversion{padding:0 0 25px}

.conversion-card{
  position:relative;
  overflow:hidden;
  min-height:160px;
  padding:29px 34px;
  border-radius:25px;
  color:#fff;
  background:
    radial-gradient(circle at 85% 0,rgba(235,207,145,.23),transparent 30%),
    linear-gradient(120deg,#0c4c41,#17695c);
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:24px;
  box-shadow:var(--shadow-sm);
}

.conversion-card::after{
  content:"";
  position:absolute;
  left:-20%;
  width:35%;
  top:-50%;
  bottom:-50%;
  transform:skewX(-20deg);
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.12),transparent);
  animation:cardShine 6s ease-in-out infinite;
}

.conversion-card>*{position:relative;z-index:2}

.conversion-icon{
  width:58px;
  height:58px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:17px;
  background:rgba(255,255,255,.10);
  display:grid;
  place-items:center;
}

.conversion-icon svg{width:27px}

.conversion-copy>span{
  display:block;
  color:#f1d7a0;
  font-size:8px;
  font-weight:800;
  letter-spacing:.13em;
}

.conversion-copy>strong{
  display:block;
  margin-top:5px;
  font-size:20px;
}

.conversion-copy p{
  margin:4px 0 0;
  color:rgba(255,255,255,.66);
  font-size:10px;
}

.conversion-button{min-width:170px}

/* PRICE PREMIUM */

.price-section{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 90% 0,rgba(225,238,234,.7),transparent 27%),
    #fff;
}

.price-toolbar{
  margin-bottom:17px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
}

.price-tabs{display:flex;flex-wrap:wrap;gap:8px}

.price-tab{
  min-height:39px;
  padding:0 14px;
  border:1px solid #d8e3df;
  border-radius:999px;
  color:#63736e;
  background:rgba(255,255,255,.93);
  font-size:9px;
  font-weight:750;
  box-shadow:0 3px 10px rgba(7,49,41,.03);
  transition:.18s;
}

.price-tab:hover{
  border-color:#9cbbb2;
  transform:none;
}

.price-tab.active{
  color:#fff;
  border-color:var(--brand);
  background:linear-gradient(145deg,#217669,#105248);
  box-shadow:0 9px 20px rgba(23,105,92,.20);
}

.search-box{
  min-width:245px;
  height:43px;
  padding:0 13px;
  border:1px solid #d8e3df;
  border-radius:12px;
  background:#fff;
  display:flex;
  align-items:center;
  gap:8px;
  box-shadow:0 5px 18px rgba(7,49,41,.04);
}

.search-box svg{width:16px;color:#80908b}

.search-box input{
  width:100%;
  border:0;
  outline:0;
  background:transparent;
  font-size:10px;
}

.price-card{
  position:relative;
  overflow:hidden;
  border-radius:24px;
  background:#fff;
  box-shadow:0 25px 60px rgba(6,47,39,.10);
}

.price-card::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:5;
  pointer-events:none;
  border-radius:inherit;
  padding:1px;
  background:linear-gradient(
    135deg,
    rgba(255,255,255,1),
    #c2d2cd,
    #dfbc75,
    #adc1bb,
    #fff0cf
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
}

.price-table-head{
  position:relative;
  overflow:hidden;
  min-height:58px;
  padding:0 23px;
  color:#fff;
  background:linear-gradient(115deg,#082f29,#11564b 68%,#17695c);
  display:grid;
  grid-template-columns:1fr 220px 115px;
  align-items:center;
  gap:20px;
  font-size:8px;
  font-weight:800;
  letter-spacing:.1em;
  text-transform:uppercase;
}

.price-table-head::after{
  content:"";
  position:absolute;
  left:-50%;
  width:35%;
  top:-30%;
  bottom:-30%;
  transform:skewX(-20deg);
  background:linear-gradient(90deg,transparent,rgba(244,217,160,.14),transparent);
  animation:priceHeaderSweep 6s linear infinite;
}

.price-row{
  position:relative;
  min-height:77px;
  padding:17px 23px;
  border-top:1px solid #e9efed;
  display:grid;
  grid-template-columns:1fr 220px 115px;
  align-items:center;
  gap:20px;
  transition:background .17s,transform .17s;
}

.price-row:hover{
  z-index:2;
  background:linear-gradient(90deg,#f8fcfb,#eef8f5 70%,#fffaf0);
}

.price-row::before{
  content:"";
  position:absolute;
  left:0;
  top:16px;
  bottom:16px;
  width:3px;
  border-radius:0 99px 99px 0;
  background:transparent;
  transition:.18s;
}

.price-row:hover::before{
  background:linear-gradient(180deg,#d5b36b,#17695c);
}

.price-row-main{min-width:0}

.price-category-pill{
  display:inline-flex;
  margin-bottom:5px;
  padding:4px 7px;
  border-radius:999px;
  color:#5d716a;
  background:#edf4f2;
  font-size:7px;
  font-weight:750;
}

.price-row h4{margin:0;color:#253c35;font-size:12px}
.price-row p{margin:4px 0 0;color:#899591;font-size:8px}

.price-value{
  position:relative;
  justify-self:start;
  padding:8px 11px;
  border:1px solid #d8e6e1;
  border-radius:10px;
  color:var(--brand-dark);
  background:linear-gradient(145deg,#ffffff,#eef7f4);
  font-size:12px;
  font-weight:850;
  box-shadow:
    inset 0 1px 0 #fff,
    0 5px 14px rgba(7,50,42,.05);
}

.price-value::after{
  content:"";
  position:absolute;
  left:10px;
  right:10px;
  bottom:-1px;
  height:2px;
  border-radius:99px;
  background:linear-gradient(90deg,transparent,#d3ad63,transparent);
}

.price-book{
  justify-self:end;
  min-width:91px;
  min-height:35px;
  border:1px solid #c7d9d3;
  border-radius:9px;
  color:#4d615a;
  background:#fff;
  font-size:9px;
  font-weight:750;
  transition:.18s;
}

.price-book:hover{
  color:#fff;
  border-color:var(--brand);
  background:linear-gradient(145deg,#207467,#0f5146);
  transform:none;
  box-shadow:0 8px 17px rgba(23,105,92,.18);
}

.price-disclaimer{
  padding:16px 22px;
  border-top:1px solid #e7eeeb;
  color:#83908c;
  background:linear-gradient(90deg,#fbfdfc,#f4f8f7);
  display:flex;
  align-items:flex-start;
  gap:8px;
  font-size:9px;
}

.price-disclaimer svg{width:14px;flex:0 0 auto}

/* EXPERIENCE */

.experience-section{
  color:#fff;
  background:
    radial-gradient(circle at 13% 15%,rgba(214,180,109,.15),transparent 25%),
    linear-gradient(125deg,#062b25,#0d493f 70%,#17695c);
}

.experience-grid{
  display:grid;
  grid-template-columns:1.02fr .98fr;
  gap:72px;
  align-items:center;
}

.experience-image{position:relative}

.experience-image img{
  width:100%;
  height:580px;
  border-radius:30px 30px 80px 30px;
  object-fit:cover;
  box-shadow:0 30px 70px rgba(0,0,0,.25);
}

.experience-badge{
  position:absolute;
  right:-22px;
  bottom:24px;
  padding:14px 18px;
  border-radius:15px;
  color:#253a34;
  background:linear-gradient(145deg,#f2dda9,#c6994e);
  box-shadow:0 18px 35px rgba(0,0,0,.19);
  display:flex;
  align-items:center;
  gap:10px;
}

.experience-badge svg{width:20px}
.experience-badge span{display:flex;flex-direction:column}
.experience-badge strong{font-size:13px}
.experience-badge small{font-size:8px}
.experience-content h2{color:#fff}
.experience-content h2 strong{color:#f0d7a2}

.experience-content>p{
  max-width:560px;
  margin:18px 0 0;
  color:rgba(255,255,255,.65);
  font-size:12px;
  line-height:1.8;
}

.experience-list{
  margin:31px 0 28px;
  display:grid;
  gap:20px;
}

.experience-list>div{
  display:grid;
  grid-template-columns:42px 1fr;
  gap:14px;
}

.experience-number{
  width:39px;
  height:39px;
  border:1px solid rgba(214,180,109,.43);
  border-radius:50%;
  color:#f1d9a5;
  display:grid;
  place-items:center;
  font-size:9px;
  font-weight:700;
}

.experience-list strong{font-size:12px}

.experience-list p{
  margin:4px 0 0;
  color:rgba(255,255,255,.56);
  font-size:10px;
}

/* DOCTORS */

.doctor-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.doctor-card{
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:22px;
  background:#fff;
  box-shadow:var(--shadow-xs);
  transition:.24s;
}

.doctor-card:hover{
  transform:none;
  box-shadow:var(--shadow-sm);
}

.doctor-photo{
  height:390px;
  overflow:hidden;
  background:#edf3f1;
}

.doctor-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.4s;
}

.doctor-card:hover img{transform:scale(1.035)}
.doctor-info{padding:20px}

.doctor-specialty{
  color:var(--brand);
  font-size:9px;
  font-weight:800;
  text-transform:uppercase;
}

.doctor-info h3{margin:6px 0 8px;font-size:17px}

.doctor-info p{
  margin:0;
  color:var(--muted);
  font-size:10px;
  line-height:1.7;
}

/* REVIEWS */

.review-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:17px;
}

.review-card{
  min-height:270px;
  padding:23px;
  border:1px solid var(--line);
  border-radius:20px;
  background:#fff;
  box-shadow:var(--shadow-xs);
  display:flex;
  flex-direction:column;
  transition:.2s;
}

.review-card:hover{
  transform:none;
  box-shadow:var(--shadow-sm);
}

.review-quote-icon{
  width:42px;
  height:42px;
  border-radius:12px;
  color:var(--brand);
  background:var(--brand-soft);
  display:grid;
  place-items:center;
}

.review-quote-icon svg{width:19px}

.review-card blockquote{
  flex:1;
  margin:18px 0;
  color:#344841;
  font-size:13px;
  line-height:1.75;
  font-weight:500;
}

.review-bottom{
  padding-top:15px;
  border-top:1px solid #edf1ef;
  display:flex;
  align-items:center;
  gap:10px;
}

.review-avatar{
  width:39px;
  height:39px;
  border-radius:50%;
  color:#fff;
  background:var(--brand);
  display:grid;
  place-items:center;
  font-size:11px;
  font-weight:800;
}

.review-bottom span{display:flex;flex-direction:column}
.review-bottom strong{font-size:10px}
.review-bottom small{color:#88948f;font-size:8px}

/* BRANCHES */

.branch-layout{
  display:grid;
  grid-template-columns:390px 1fr;
  gap:19px;
}

.branch-list{
  display:grid;
  align-content:start;
  gap:10px;
}

.branch-card{
  padding:17px;
  border:1px solid var(--line);
  border-radius:16px;
  background:#fff;
  cursor:pointer;
  transition:.18s;
}

.branch-card:hover,.branch-card.active{
  border-color:#9dbfb5;
  background:#f7fbfa;
  box-shadow:0 8px 25px rgba(18,74,64,.07);
}

.branch-card-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:10px;
}

.branch-card h3{margin:0;font-size:12px}

.branch-tag{
  padding:4px 7px;
  border-radius:999px;
  color:var(--brand);
  background:var(--brand-soft);
  font-size:7px;
  font-weight:800;
}

.branch-card p{margin:6px 0 0;color:#7f8d88;font-size:9px}

.branch-card-actions{
  margin-top:11px;
  display:flex;
  gap:12px;
}

.branch-card-actions a,.branch-card-actions button{
  padding:0;
  border:0;
  color:var(--brand);
  background:transparent;
  display:flex;
  align-items:center;
  gap:5px;
  font-size:8px;
  font-weight:700;
}

.branch-card-actions svg{width:13px}

.map-card{
  position:relative;
  min-height:520px;
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:22px;
  background:#edf3f1;
}

.map-card iframe{width:100%;height:520px;border:0}

.map-information{
  position:absolute;
  left:15px;
  right:15px;
  bottom:15px;
  padding:15px;
  border-radius:15px;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(10px);
  box-shadow:0 14px 32px rgba(8,46,39,.13);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.map-information div{display:flex;flex-direction:column}

.map-information small{
  color:var(--brand);
  font-size:7px;
  font-weight:800;
}

.map-information strong{font-size:11px}
.map-information span{color:#7e8b87;font-size:8px}

/* FAQ */

.faq-section{background:var(--soft)}

.faq-grid{
  display:grid;
  grid-template-columns:.75fr 1.25fr;
  gap:80px;
  align-items:start;
}

.faq-intro{position:sticky;top:125px}

.faq-intro p{
  margin:17px 0 23px;
  color:var(--muted);
  font-size:12px;
  line-height:1.75;
}

.faq-list{border-top:1px solid #dbe5e1}
.faq-item{border-bottom:1px solid #dbe5e1}

.faq-question{
  width:100%;
  min-height:67px;
  padding:15px 0;
  border:0;
  background:transparent;
  color:var(--ink);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  text-align:left;
  font-size:12px;
  font-weight:700;
}

.faq-question-icon{
  flex:0 0 auto;
  width:30px;
  height:30px;
  border-radius:50%;
  color:var(--brand);
  background:#fff;
  display:grid;
  place-items:center;
  transition:.2s;
}

.faq-question-icon svg{width:15px}

.faq-item.open .faq-question-icon{
  color:#fff;
  background:var(--brand);
  transform:rotate(45deg);
}

.faq-answer{
  display:grid;
  grid-template-rows:0fr;
  transition:.24s;
}

.faq-answer>div{overflow:hidden}
.faq-item.open .faq-answer{grid-template-rows:1fr}

.faq-answer p{
  margin:0;
  padding:0 48px 20px 0;
  color:#75847f;
  font-size:10px;
}

/* FINAL CTA */

.final-cta{padding:28px 0 0}

.final-cta-card{
  padding:48px;
  border-radius:28px;
  color:#fff;
  background:
    radial-gradient(circle at 80% 0,rgba(224,191,120,.19),transparent 25%),
    linear-gradient(110deg,#0b493f,#17695c);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:50px;
  box-shadow:var(--shadow-sm);
}

.final-cta-card>div:first-child{max-width:680px}

.final-cta-card>div:first-child>span{
  color:#f0d49a;
  font-size:9px;
  font-weight:800;
  letter-spacing:.13em;
}

.final-cta h2{margin-top:9px;color:#fff}

.final-cta p{
  margin:11px 0 0;
  color:rgba(255,255,255,.67);
  font-size:11px;
}

.final-cta-actions{
  flex:0 0 auto;
  display:flex;
  align-items:center;
  gap:16px;
}

.final-phone{
  color:#fff;
  display:flex;
  align-items:center;
  gap:9px;
}

.final-phone svg{width:20px}
.final-phone span{display:flex;flex-direction:column}
.final-phone small{color:rgba(255,255,255,.55);font-size:8px}
.final-phone strong{font-size:11px}

/* FOOTER */

.footer{
  margin-top:78px;
  padding:58px 0 24px;
  color:#fff;
  background:#082f28;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.45fr .75fr 1fr 1fr;
  gap:52px;
}

.footer-brand p{
  max-width:350px;
  margin:18px 0 0;
  color:rgba(255,255,255,.54);
  font-size:10px;
}

.footer .brand-copy strong{color:#fff}
.footer .brand-copy span{color:rgba(255,255,255,.42)}

.footer-column{
  display:flex;
  flex-direction:column;
  gap:9px;
}

.footer-column>strong{
  margin-bottom:5px;
  color:#f0d7a1;
  font-size:9px;
  letter-spacing:.08em;
}

.footer-column>a,
.footer-column>span,
.footer-column>p{
  margin:0;
  color:rgba(255,255,255,.61);
  font-size:9px;
}

.footer-booking .btn{width:max-content;margin-top:6px}

.footer-bottom{
  margin-top:43px;
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,.10);
  color:rgba(255,255,255,.34);
  display:flex;
  justify-content:space-between;
  font-size:8px;
}

/* DESKTOP FLOAT BOOKING */

.desktop-floating-booking{
  position:fixed;
  z-index:65;
  right:20px;
  bottom:24px;
  min-width:210px;
  padding:10px 12px;
  border:0;
  border-radius:16px;
  color:#fff;
  background:linear-gradient(135deg,#1f786a,#0c5045);
  box-shadow:
    0 18px 42px rgba(8,65,54,.29),
    0 0 0 1px rgba(255,255,255,.12) inset;
  display:grid;
  grid-template-columns:40px 1fr 21px;
  align-items:center;
  gap:9px;
  text-align:left;
  transition:.2s;
}

.desktop-floating-booking:hover{transform:none}

.desktop-floating-icon{
  width:40px;
  height:40px;
  border-radius:12px;
  color:var(--brand);
  background:#fff;
  display:grid;
  place-items:center;
}

.desktop-floating-icon svg{width:19px}

.desktop-floating-booking>span:nth-child(2){
  display:flex;
  flex-direction:column;
}

.desktop-floating-booking small{
  color:#f0d8a5;
  font-size:7px;
  font-weight:800;
}

.desktop-floating-booking strong{font-size:11px}
.mobile-bottom-bar{display:none}

/* BOOKING MODAL */

.booking-modal{
  position:fixed;
  inset:0;
  z-index:150;
  padding:20px;
  display:none;
  align-items:center;
  justify-content:center;
}

.booking-modal.show{display:flex}

.booking-backdrop{
  position:absolute;
  inset:0;
  background:rgba(5,31,26,.74);
  backdrop-filter:blur(7px);
}

.booking-dialog{
  position:relative;
  z-index:2;
  width:min(940px,100%);
  max-height:92vh;
  overflow:auto;
  border-radius:25px;
  background:#fff;
  box-shadow:0 40px 110px rgba(0,0,0,.30);
}

.booking-close{
  position:absolute;
  z-index:10;
  top:14px;
  right:14px;
  width:38px;
  height:38px;
  border:1px solid #dfe6e4;
  border-radius:50%;
  color:#44554f;
  background:#fff;
  display:grid;
  place-items:center;
}

.booking-dialog-grid{
  display:grid;
  grid-template-columns:340px 1fr;
  min-height:610px;
}

.booking-sidebar{
  padding:36px 30px;
  border-radius:25px 0 0 25px;
  color:#fff;
  background:
    radial-gradient(circle at 10% 8%,rgba(214,180,109,.19),transparent 25%),
    var(--brand-deep);
  display:flex;
  flex-direction:column;
}

.booking-sidebar>img{
  width:69px;
  height:69px;
  padding:5px;
  margin-bottom:28px;
  border-radius:15px;
  background:#fff;
}

.booking-sidebar-label{
  color:#f0d7a1;
  font-size:8px;
  font-weight:800;
  letter-spacing:.13em;
}

.booking-sidebar h3{
  margin:11px 0 13px;
  font-size:27px;
  line-height:1.25;
}

.booking-sidebar>p{
  margin:0;
  color:rgba(255,255,255,.60);
  font-size:10px;
}

.booking-benefits{
  margin-top:28px;
  display:grid;
  gap:13px;
}

.booking-benefits>div{
  color:rgba(255,255,255,.78);
  display:flex;
  align-items:center;
  gap:9px;
  font-size:9px;
}

.booking-benefits svg{width:16px;color:#f1d8a4}

.booking-hotline{
  margin-top:auto;
  padding-top:22px;
  border-top:1px solid rgba(255,255,255,.12);
  display:flex;
  align-items:center;
  gap:10px;
}

.booking-hotline>svg{width:21px;color:#f1d8a4}
.booking-hotline span{display:flex;flex-direction:column}
.booking-hotline small{color:rgba(255,255,255,.45);font-size:8px}
.booking-hotline strong{font-size:12px}
.booking-form{padding:37px 38px 28px}

.booking-form-heading>span{
  color:var(--brand);
  font-size:8px;
  font-weight:800;
}

.booking-form-heading h3{margin:5px 0;font-size:25px}
.booking-form-heading p{margin:0;color:#85918d;font-size:9px}

.booking-form-grid{
  margin-top:24px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:15px;
}

.form-field{display:grid;gap:7px}
.form-field-full{grid-column:1/-1}

.form-field>span{
  color:#4d5f59;
  font-size:9px;
  font-weight:700;
}

.input-shell{
  min-height:48px;
  padding:0 12px;
  border:1px solid #dce6e2;
  border-radius:11px;
  background:#fbfcfc;
  display:flex;
  align-items:center;
  gap:9px;
}

.input-shell:focus-within{
  border-color:#8db6aa;
  background:#fff;
  box-shadow:0 0 0 3px rgba(23,105,92,.07);
}

.input-shell>svg{
  width:16px;
  flex:0 0 auto;
  color:#80908a;
}

.input-shell input,.input-shell select{
  min-width:0;
  width:100%;
  height:46px;
  padding:0;
  border:0;
  outline:0;
  background:transparent;
  font-size:10px;
}

.booking-consent{
  margin-top:18px;
  display:flex;
  align-items:flex-start;
  gap:9px;
  color:#73817d;
  font-size:8px;
}

.booking-consent input{accent-color:var(--brand)}

.booking-submit{
  width:100%;
  min-height:59px;
  margin-top:17px;
  padding:0 18px;
  border:0;
  border-radius:12px;
  color:#fff;
  background:linear-gradient(145deg,#1e7466,#0d5045);
  box-shadow:0 12px 25px rgba(23,105,92,.20);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.booking-submit>span{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}

.booking-submit strong{font-size:12px}
.booking-submit small{color:rgba(255,255,255,.65);font-size:8px}
.booking-submit:disabled{opacity:.6}
.form-status{min-height:18px;margin-top:9px;font-size:9px}
.form-status.success{color:var(--success)}
.form-status.error{color:var(--danger)}

.hp-field{
  position:absolute!important;
  left:-9999px!important;
  width:1px!important;
  height:1px!important;
  overflow:hidden!important;
}

/* SERVICE MODAL */

.service-modal{
  position:fixed;
  inset:0;
  z-index:145;
  padding:20px;
  display:none;
  align-items:center;
  justify-content:center;
}

.service-modal.show{display:flex}

.service-modal-backdrop{
  position:absolute;
  inset:0;
  background:rgba(6,34,29,.70);
  backdrop-filter:blur(7px);
}

.service-modal-card{
  position:relative;
  z-index:2;
  width:min(600px,100%);
  padding:32px;
  border-radius:23px;
  background:#fff;
  box-shadow:0 32px 90px rgba(0,0,0,.27);
}

.service-modal-close{
  position:absolute;
  top:15px;
  right:15px;
  width:37px;
  height:37px;
  border:1px solid var(--line);
  border-radius:50%;
  background:#fff;
  display:grid;
  place-items:center;
}

.service-modal-icon{
  width:54px;
  height:54px;
  margin-bottom:20px;
  border-radius:15px;
  color:var(--brand);
  background:var(--brand-soft);
  display:grid;
  place-items:center;
}

.service-modal-card h3{margin:0 0 10px;font-size:26px}
.service-modal-card>p{color:var(--muted);font-size:11px}

.service-modal-features{
  margin:20px 0;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
}

.service-modal-feature{
  padding:10px 11px;
  border-radius:9px;
  color:#586863;
  background:var(--soft);
  display:flex;
  align-items:center;
  gap:7px;
  font-size:9px;
}

.service-modal-feature svg{width:14px;color:var(--brand)}
.service-modal-actions{display:flex;flex-wrap:wrap;gap:9px}

/* TOAST */

.toast{
  position:fixed;
  z-index:250;
  left:50%;
  bottom:25px;
  max-width:calc(100% - 30px);
  padding:11px 16px;
  border-radius:10px;
  color:#fff;
  background:#102f29;
  box-shadow:var(--shadow-md);
  font-size:10px;
  font-weight:650;
  opacity:0;
  pointer-events:none;
  transform:translate(-50%,18px);
  transition:.22s;
}

.toast.show{
  opacity:1;
  transform:translate(-50%,0);
}

/* ANIMATIONS */

@keyframes announcementSweep{
  0%,25%{transform:translateX(-100%)}
  70%,100%{transform:translateX(110%)}
}

@keyframes heroPromoFloat{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-7px)}
}

@keyframes heroPromoShine{
  0%,25%{left:-95%}
  58%,100%{left:135%}
}

@keyframes promotionSweep{
  0%,30%{left:-100%}
  63%,100%{left:145%}
}

@keyframes serviceShine{
  0%,35%{left:-100%}
  62%,100%{left:145%}
}

@keyframes metalBorderMove{
  from{background-position:0 0}
  to{background-position:240% 0}
}

@keyframes promoMetalBorder{
  0%{background-position:0% 50%}
  100%{background-position:280% 50%}
}

@keyframes promoGoldText{
  0%{background-position:0% center}
  100%{background-position:220% center}
}

@keyframes cardShine{
  0%,35%{left:-80%}
  65%,100%{left:140%}
}

@keyframes priceHeaderSweep{
  0%,25%{left:-50%}
  70%,100%{left:140%}
}

@keyframes goldButtonSweep{
  0%,35%{left:-80%}
  65%,100%{left:135%}
}

/* TABLET */

@media(max-width:1100px){
  .desktop-nav{display:none}
  .mobile-menu-button{display:grid}

  .mobile-menu{
    position:absolute;
    top:78px;
    left:20px;
    right:20px;
    padding:14px;
    border:1px solid var(--line);
    border-radius:15px;
    background:#fff;
    box-shadow:var(--shadow-md);
  }

  .mobile-menu.show{display:grid;gap:3px}
  .mobile-menu>a{padding:10px 9px;font-size:11px;font-weight:650}
  .hero-grid{gap:42px}
  .hero-image-shell{height:550px}
  .service-grid{grid-template-columns:repeat(2,1fr)}
  .branch-layout{grid-template-columns:340px 1fr}
}

/* PROMOTION TABLET */

@media(min-width:781px) and (max-width:1100px){
  .promotion-grid{
    grid-template-columns:.88fr 1.12fr .88fr;
    gap:14px;
  }

  .promotion-card:not(.featured){min-height:340px}

  .promotion-card.featured{
    grid-column:2;
    grid-row:1;
    min-height:440px;
  }

  .promotion-content{padding:18px}
  .promotion-card.featured .promotion-content{padding:25px}
  .promotion-card h3{font-size:17px}
  .promotion-card.featured h3{font-size:24px}
  .promotion-highlight{font-size:25px}
  .promotion-card.featured .promotion-highlight{font-size:38px}
}

/* MOBILE */

@media(max-width:780px){
  body{padding-bottom:68px;font-size:14px}
  .container{width:calc(100% - 28px)}
  .section{padding:65px 0}

  .announcement-inner{
    min-height:42px;
    justify-content:center;
  }

  .announcement-message{font-size:9px;text-align:center}
  .announcement-action{display:none}

  .navbar{height:66px}
  .brand-logo{width:40px;height:40px}
  .brand-copy strong{font-size:13px}
  .brand-copy span{font-size:7px}
  .header-phone,.btn-header{display:none}
  .mobile-menu{top:66px}

  .hero{padding:45px 0 58px}
  .hero-grid{grid-template-columns:1fr;gap:38px}
  .hero-eyebrow{font-size:9px}
  .hero h1{font-size:39px;line-height:1.12}
  .hero-description{font-size:13px}

  .hero-actions{
    display:grid;
    grid-template-columns:1fr;
  }

  .btn-large,.btn-large-simple{width:100%}

  .hero-assurance{
    grid-template-columns:1fr 1fr;
    gap:14px;
  }

  .hero-assurance>div:last-child{grid-column:1/-1}

  .quick-branch-list{
    flex-wrap:nowrap;
    overflow-x:auto;
    scrollbar-width:none;
  }

  .quick-branch-list::-webkit-scrollbar{display:none}
  .quick-branch-button{flex:0 0 auto}
  .hero-media{padding:0 6px 55px 0}

  .hero-image-shell{
    height:455px;
    border-radius:27px 27px 68px 27px;
    transform:none;
  }

  .hero-promotion{
    right:0;
    width:225px;
    min-height:185px;
    padding:17px;
  }

  .hero-promotion>strong{font-size:23px}
  .hero-floating-top,.hero-floating-bottom{padding:10px}

  .trust-bar-grid{grid-template-columns:1fr 1fr}

  .trust-bar-grid>div{
    min-height:55px;
    border-bottom:1px solid #e9efed;
    font-size:9px;
  }

  .section-heading{display:block;margin-bottom:30px}

  .section-heading h2,
  .experience-content h2,
  .faq-intro h2,
  .final-cta h2{
    font-size:34px;
  }

  .section-heading>p{margin-top:12px;font-size:11px}

  .campaign-slider,.campaign-track{min-height:610px}

  .campaign-slide-content{
    min-height:610px;
    padding:32px 23px 72px;
    grid-template-columns:1fr;
    align-content:center;
  }

  .campaign-copy h3{font-size:35px}

  .campaign-stats{
    justify-self:start;
    width:100%;
    grid-template-columns:1fr 1fr;
  }

  .campaign-stat strong{font-size:21px}

  .slider-button{
    top:auto;
    bottom:35px;
    width:38px;
    height:38px;
    transform:none;
  }

  .slider-prev{left:auto;right:58px}
  .slider-next{right:13px}

  .campaign-pagination{
    left:22px;
    right:115px;
    bottom:24px;
  }

  .promotion-grid{
    display:flex;
    flex-direction:column;
    gap:16px;
    max-width:none;
  }

  .promotion-card{
    width:100%;
    grid-column:auto!important;
    grid-row:auto!important;
    transform:none!important;
  }

  .promotion-card.featured{order:-1;min-height:455px}
  .promotion-card:not(.featured){min-height:365px}
  .promotion-card.featured .promotion-content{padding:25px}
  .promotion-card.featured h3{font-size:25px}
  .promotion-card.featured .promotion-highlight{font-size:39px}
  .promotion-card:hover{transform:translateY(-3px)!important}

  .service-grid{grid-template-columns:1fr}
  .service-card{min-height:390px}
  .service-card:hover{transform:translateY(-4px)}
  .service-image{height:215px}

  .conversion-card{
    grid-template-columns:1fr;
    gap:15px;
    padding:25px;
  }

  .conversion-icon{width:50px;height:50px}
  .conversion-button{width:100%}

  .price-toolbar{display:block}

  .price-tabs{
    flex-wrap:nowrap;
    overflow-x:auto;
    padding-bottom:10px;
    scrollbar-width:none;
  }

  .price-tabs::-webkit-scrollbar{display:none}
  .price-tab{flex:0 0 auto}
  .search-box{min-width:0;width:100%}
  .price-table-head{display:none}

  .price-row{
    grid-template-columns:1fr auto;
    gap:9px;
    padding:16px;
  }

  .price-value{
    justify-self:end;
    font-size:10px;
    padding:7px 8px;
  }

  .price-book{grid-column:1/-1;justify-self:start}

  .experience-grid{grid-template-columns:1fr;gap:40px}

  .experience-image img{
    height:410px;
    border-radius:22px 22px 60px 22px;
  }

  .experience-badge{right:8px;bottom:8px}
  .doctor-grid,.review-grid{grid-template-columns:1fr}
  .doctor-photo{height:390px}

  .branch-layout{grid-template-columns:1fr}

  .branch-list{
    display:flex;
    overflow-x:auto;
    scrollbar-width:none;
  }

  .branch-list::-webkit-scrollbar{display:none}
  .branch-card{min-width:270px}

  .map-card,.map-card iframe{
    min-height:390px;
    height:390px;
  }

  .map-information{display:block}
  .map-information .btn{width:100%;margin-top:10px}

  .faq-grid{grid-template-columns:1fr;gap:35px}
  .faq-intro{position:static}

  .final-cta{padding-top:0}
  .final-cta-card{padding:30px 23px;display:block}

  .final-cta-actions{
    margin-top:25px;
    display:grid;
    grid-template-columns:1fr;
  }

  .footer{margin-top:56px}

  .footer-grid{
    grid-template-columns:1fr 1fr;
    gap:34px 25px;
  }

  .footer-brand{grid-column:1/-1}
  .footer-bottom{display:block}
  .footer-bottom span{display:block;margin-top:4px}
  .desktop-floating-booking{display:none}

  .mobile-bottom-bar{
    position:fixed;
    left:0;
    right:0;
    bottom:0;
    z-index:100;
    height:67px;
    padding:6px 8px calc(6px + env(safe-area-inset-bottom));
    border-top:1px solid #dbe5e1;
    background:#fff;
    box-shadow:0 -8px 28px rgba(9,53,45,.09);
    display:grid;
    grid-template-columns:.8fr .8fr 1.4fr;
    gap:5px;
  }

  .mobile-bottom-bar>a,
  .mobile-bottom-bar>button{
    border:0;
    border-radius:10px;
    background:transparent;
    color:#576762;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:2px;
    font-size:8px;
    font-weight:700;
  }

  .mobile-bottom-bar svg{width:18px}

  .mobile-bottom-bar>button{
    color:#fff;
    background:linear-gradient(145deg,#1e7567,#0c5045);
    box-shadow:0 6px 16px rgba(23,105,92,.20);
  }

  .booking-modal{padding:8px;align-items:flex-end}

  .booking-dialog{
    width:100%;
    max-height:94vh;
    border-radius:21px 21px 12px 12px;
  }

  .booking-dialog-grid{display:block;min-height:0}
  .booking-sidebar{display:none}
  .booking-form{padding:26px 17px 18px}
  .booking-form-grid{grid-template-columns:1fr;gap:12px}
  .form-field-full{grid-column:auto}
  .input-shell{min-height:49px}
  .booking-submit{min-height:58px}
  .service-modal-card{padding:27px 19px}
  .service-modal-features{grid-template-columns:1fr}
}

/* SMALL MOBILE */

@media(max-width:480px){
  .hero h1{font-size:36px}
  .hero-image-shell{height:410px}
  .hero-floating-top{max-width:215px}
  .hero-floating-bottom{max-width:220px}
  .hero-promotion{width:215px}
  .campaign-copy h3{font-size:31px}
  .campaign-stats{grid-template-columns:1fr}

  .campaign-slider,
  .campaign-track,
  .campaign-slide-content{
    min-height:685px;
  }

  .promotion-card.featured{min-height:430px}
  .promotion-card:not(.featured){min-height:350px}
  .promotion-card.featured .promotion-highlight{font-size:37px}
  .service-image{height:200px}
  .doctor-photo{height:350px}
  .footer-grid{grid-template-columns:1fr}
  .footer-brand{grid-column:auto}
}

/* REDUCED MOTION */

@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{
    animation:none!important;
    transition:none!important;
    scroll-behavior:auto!important;
  }
}

/* PROMO TICKER PREMIUM */

.promo-marquee-band{
  position:relative;
  z-index:45;
  overflow:hidden;
  border-top:1px solid rgba(213,179,107,.22);
  border-bottom:1px solid rgba(23,105,92,.15);
  background:
    radial-gradient(circle at 10% 0%,rgba(208,236,228,.76),transparent 30%),
    radial-gradient(circle at 92% 0%,rgba(239,215,164,.34),transparent 31%),
    linear-gradient(90deg,#f8fcfb 0%,#edf7f4 50%,#fbf8ef 100%);
  box-shadow:
    0 10px 30px rgba(5,48,40,.06),
    inset 0 1px 0 rgba(255,255,255,.92);
}

.promo-marquee-band::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(
    110deg,
    transparent 8%,
    rgba(255,255,255,.45) 34%,
    rgba(222,188,112,.14) 48%,
    transparent 68%
  );
  transform:translateX(-130%);
  animation:promoBandLight 8.4s ease-in-out infinite;
}

.promo-marquee-band::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:1px;
  pointer-events:none;
  background:linear-gradient(
    90deg,
    transparent,
    rgba(213,179,107,.23),
    rgba(23,105,92,.30),
    rgba(213,179,107,.28),
    transparent
  );
}

.promo-marquee-shell{
  position:relative;
  z-index:2;
  min-height:72px;
  display:grid;
  grid-template-columns:132px minmax(0,1fr) 210px;
  align-items:center;
  gap:14px;
}

.promo-marquee-label-wrap{position:relative;z-index:5}

.promo-marquee-label{
  position:relative;
  overflow:hidden;
  min-height:40px;
  padding:0 15px;
  border:1px solid rgba(255,255,255,.42);
  border-radius:999px;
  color:#fff;
  background:linear-gradient(135deg,#0b5146 0%,#1b796a 50%,#0b4d43 100%);
  box-shadow:
    0 11px 25px rgba(8,79,66,.22),
    inset 0 1px 0 rgba(255,255,255,.24),
    inset 0 -1px 0 rgba(0,0,0,.08);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  white-space:nowrap;
  font-size:9px;
  font-weight:850;
  letter-spacing:.10em;
}

.promo-marquee-label::before{
  content:"";
  width:7px;
  height:7px;
  flex:0 0 auto;
  border-radius:50%;
  background:radial-gradient(
    circle at 32% 28%,
    #fff9e2 0 16%,
    #e6c373 44%,
    #aa792c 100%
  );
  box-shadow:
    0 0 0 4px rgba(226,191,114,.11),
    0 0 15px rgba(226,191,114,.42);
  animation:promoHotDot 1.9s ease-in-out infinite;
}

.promo-marquee-label::after{
  content:"";
  position:absolute;
  top:-40%;
  bottom:-40%;
  left:-75%;
  width:42%;
  transform:skewX(-18deg);
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.42),transparent);
  animation:promoHotShine 4.4s ease-in-out infinite;
}

.promo-marquee-label svg{
  width:15px;
  height:15px;
  color:#f3dba9;
}

.promo-marquee-window{
  position:relative;
  min-width:0;
  width:100%;
  overflow:hidden;
  -webkit-mask-image:linear-gradient(
    90deg,
    transparent 0,
    #000 34px,
    #000 calc(100% - 34px),
    transparent 100%
  );
  mask-image:linear-gradient(
    90deg,
    transparent 0,
    #000 34px,
    #000 calc(100% - 34px),
    transparent 100%
  );
}

.promo-marquee-track{
  --promo-duration:34s;
  width:max-content;
  display:flex;
  align-items:center;
  will-change:transform;
  transform:translate3d(0,0,0);
  animation:promoTickerFlow var(--promo-duration) linear infinite!important;
}

.promo-marquee-loop,
.promo-marquee-group{
  flex:0 0 auto;
  display:flex;
  align-items:center;
  gap:10px;
  padding-right:10px;
}

.promo-marquee-item{
  position:relative;
  flex:0 0 auto;
  min-height:44px;
  padding:0 16px;
  overflow:hidden;
  border:1px solid rgba(194,212,206,.86);
  border-radius:999px;
  color:#324740;
  background:linear-gradient(
    145deg,
    rgba(255,255,255,.97),
    rgba(247,251,249,.93)
  );
  display:inline-flex;
  align-items:center;
  gap:9px;
  white-space:nowrap;
  box-shadow:
    0 7px 18px rgba(6,51,43,.055),
    inset 0 1px 0 rgba(255,255,255,.95);
  transition:
    transform .20s ease,
    border-color .20s ease,
    box-shadow .20s ease,
    background .20s ease;
}

.promo-marquee-item::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  padding:1px;
  pointer-events:none;
  background:linear-gradient(
    120deg,
    rgba(255,255,255,.70),
    rgba(214,180,106,.28),
    rgba(23,105,92,.16),
    rgba(255,255,255,.84)
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
}

.promo-marquee-item::after{
  content:"";
  position:absolute;
  top:-40%;
  bottom:-40%;
  left:-70%;
  width:28%;
  pointer-events:none;
  transform:skewX(-20deg);
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.58),transparent);
  animation:promoItemShine 7.4s ease-in-out infinite;
}

.promo-marquee-spark,
.promo-marquee-dot{
  position:relative;
  z-index:2;
  flex:0 0 auto;
  width:8px;
  height:8px;
  border-radius:50%;
  background:radial-gradient(
    circle at 32% 28%,
    #fff8df 0 16%,
    #e4c279 42%,
    #ad7a2c 100%
  );
  box-shadow:
    0 0 0 4px rgba(213,179,107,.10),
    0 0 14px rgba(213,179,107,.30);
}

.promo-marquee-spark::after,
.promo-marquee-dot::after{
  content:"";
  position:absolute;
  inset:-5px;
  border:1px solid rgba(205,162,82,.26);
  border-radius:50%;
  animation:promoSparkPulse 1.9s ease-out infinite;
}

.promo-marquee-item-badge{
  position:relative;
  z-index:2;
  color:#167061;
  font-size:8.5px;
  font-weight:850;
  letter-spacing:.085em;
  text-transform:uppercase;
}

.promo-marquee-item-title{
  position:relative;
  z-index:2;
  color:#3b5049;
  font-size:10px;
  font-weight:680;
}

.promo-marquee-item-highlight{
  position:relative;
  z-index:2;
  color:#aa7725;
  font-size:10px;
  font-weight:900;
  letter-spacing:.025em;
  text-shadow:0 1px 0 rgba(255,255,255,.85);
}

.promo-marquee-item-highlight::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-2px;
  height:1px;
  background:linear-gradient(90deg,transparent,#d7b66d,transparent);
}

.promo-marquee-item-expiry{
  position:relative;
  z-index:2;
  color:#81908b;
  font-size:8px;
  font-weight:600;
}

@media(hover:hover){
  .promo-marquee-item:hover{
    transform:none;
    border-color:rgba(174,139,69,.43);
    background:#fff;
    box-shadow:
      0 11px 25px rgba(6,51,43,.11),
      0 0 0 1px rgba(213,179,107,.10) inset;
  }
}

/* PROMO CTA */

.promo-marquee-cta{
  position:relative;
  isolation:isolate;
  min-height:54px;
  padding:0 14px 0 10px;
  overflow:visible;
  border:1px solid rgba(255,255,255,.20);
  border-radius:17px;
  color:#fff;
  background:linear-gradient(135deg,#0c5146 0%,#197667 52%,#0d5449 100%);
  display:grid;
  grid-template-columns:36px 1fr 16px;
  align-items:center;
  gap:9px;
  text-align:left;
  box-shadow:
    0 15px 34px rgba(12,83,71,.28),
    0 5px 12px rgba(12,83,71,.12),
    inset 0 1px 0 rgba(255,255,255,.24);
  animation:promoCtaBlink 1.55s ease-in-out infinite!important;
  transition:
    transform .20s ease,
    filter .20s ease,
    box-shadow .20s ease;
}

.promo-marquee-cta::before,
.promo-marquee-cta::after{
  content:"";
  position:absolute;
  inset:-5px;
  z-index:-1;
  border:1.5px solid rgba(23,105,92,.42);
  border-radius:21px;
  pointer-events:none;
  animation:promoCtaWave 2.55s ease-out infinite!important;
}

.promo-marquee-cta::after{
  z-index:-2;
  border-color:rgba(213,179,107,.42);
  animation-delay:1.22s!important;
}

.promo-marquee-cta:hover{
  transform:none;
  filter:brightness(1.06);
  box-shadow:
    0 20px 42px rgba(12,83,71,.34),
    0 7px 18px rgba(12,83,71,.14),
    inset 0 1px 0 rgba(255,255,255,.28);
}

.promo-marquee-cta-icon{
  position:relative;
  width:36px;
  height:36px;
  overflow:hidden;
  border-radius:12px;
  color:var(--brand-dark);
  background:linear-gradient(145deg,#ffffff,#eaf5f2);
  display:grid;
  place-items:center;
  box-shadow:
    0 7px 17px rgba(4,44,37,.17),
    inset 0 1px 0 rgba(255,255,255,.98);
}

.promo-marquee-cta-icon::after{
  content:"";
  position:absolute;
  width:18px;
  height:18px;
  right:-8px;
  top:-8px;
  border-radius:50%;
  background:rgba(222,184,103,.30);
}

.promo-marquee-cta-icon svg{
  position:relative;
  z-index:2;
  width:17px;
  height:17px;
}

.promo-marquee-cta-copy,
.promo-marquee-cta-text{
  min-width:0;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  line-height:1.14;
}

.promo-marquee-cta-copy strong,
.promo-marquee-cta-text strong{
  font-size:10.5px;
  font-weight:850;
  letter-spacing:.005em;
}

.promo-marquee-cta-copy small,
.promo-marquee-cta-text small{
  margin-top:3px;
  color:rgba(255,255,255,.70);
  font-size:7px;
  font-weight:600;
}

.promo-marquee-cta-arrow{display:grid;place-items:center}
.promo-marquee-cta-arrow svg{width:15px;height:15px}

@media(max-width:1100px){
  .promo-marquee-shell{
    grid-template-columns:112px minmax(0,1fr) 178px;
    gap:10px;
  }

  .promo-marquee-label{
    min-height:38px;
    padding:0 12px;
    font-size:8px;
  }

  .promo-marquee-item{padding:0 14px}

  .promo-marquee-cta{
    grid-template-columns:32px 1fr 14px;
    padding:0 10px 0 8px;
  }

  .promo-marquee-cta-icon{width:32px;height:32px}
}

@media(max-width:780px){
  .promo-marquee-band{
    box-shadow:0 5px 18px rgba(5,48,40,.055);
  }

  .promo-marquee-shell{
    width:100%;
    min-height:60px;
    padding:0 8px;
    grid-template-columns:70px minmax(0,1fr) 118px;
    gap:5px;
  }

  .promo-marquee-label{
    width:66px;
    min-height:35px;
    padding:0 7px;
    gap:4px;
    font-size:7px;
    letter-spacing:.045em;
  }

  .promo-marquee-label::before{width:6px;height:6px}
  .promo-marquee-label svg{width:13px;height:13px}

  .promo-marquee-window{
    -webkit-mask-image:linear-gradient(
      90deg,transparent 0,#000 10px,#000 calc(100% - 10px),transparent 100%
    );
    mask-image:linear-gradient(
      90deg,transparent 0,#000 10px,#000 calc(100% - 10px),transparent 100%
    );
  }

  .promo-marquee-track{--promo-duration:30s}
  .promo-marquee-loop,.promo-marquee-group{gap:7px;padding-right:7px}

  .promo-marquee-item{
    min-height:38px;
    padding:0 11px;
    gap:7px;
  }

  .promo-marquee-item-badge{font-size:7px}
  .promo-marquee-item-title,.promo-marquee-item-highlight{font-size:8px}
  .promo-marquee-item-expiry{display:none}
  .promo-marquee-spark,.promo-marquee-dot{width:6px;height:6px}

  .promo-marquee-cta{
    min-height:43px;
    padding:0 8px;
    border-radius:13px;
    grid-template-columns:28px 1fr;
    gap:7px;
  }

  .promo-marquee-cta::before,
  .promo-marquee-cta::after{
    border-radius:17px;
  }

  .promo-marquee-cta-icon{
    width:28px;
    height:28px;
    border-radius:9px;
  }

  .promo-marquee-cta-icon svg{width:14px;height:14px}

  .promo-marquee-cta-copy strong,
  .promo-marquee-cta-text strong{
    font-size:8px;
  }

  .promo-marquee-cta-copy small,
  .promo-marquee-cta-text small{
    display:none;
  }

  .promo-marquee-cta-arrow{display:none}
}

@media(max-width:430px){
  .promo-marquee-shell{
    grid-template-columns:58px minmax(0,1fr) 105px;
  }

  .promo-marquee-label{width:54px;padding:0 5px}
  .promo-marquee-label span{font-size:0}
  .promo-marquee-label span::after{content:"HOT";font-size:8px}

  .promo-marquee-cta{
    grid-template-columns:25px 1fr;
    padding:0 6px;
  }

  .promo-marquee-cta-icon{width:25px;height:25px}

  .promo-marquee-cta-copy strong,
  .promo-marquee-cta-text strong{
    font-size:7px;
  }
}

/* TICKER ANIMATIONS */

@keyframes promoTickerFlow{
  from{transform:translate3d(0,0,0)}
  to{transform:translate3d(-50%,0,0)}
}

@keyframes promoCtaBlink{
  0%,100%{
    transform:scale(1);
    filter:brightness(1);
    box-shadow:
      0 15px 34px rgba(12,83,71,.27),
      0 5px 12px rgba(12,83,71,.11),
      inset 0 1px 0 rgba(255,255,255,.24);
  }
  50%{
    transform:scale(1);
    filter:brightness(1.12);
    box-shadow:
      0 19px 40px rgba(12,83,71,.36),
      0 0 0 7px rgba(23,105,92,.075),
      0 0 28px rgba(213,179,107,.20),
      inset 0 1px 0 rgba(255,255,255,.30);
  }
}

@keyframes promoCtaWave{
  0%{transform:scale(.97);opacity:.58}
  70%{opacity:.08}
  100%{transform:scale(1.16);opacity:0}
}

@keyframes promoSparkPulse{
  0%{transform:scale(.65);opacity:.72}
  100%{transform:scale(1.58);opacity:0}
}

@keyframes promoHotDot{
  0%,100%{transform:scale(.88)}
  50%{transform:scale(1.14)}
}

@keyframes promoHotShine{
  0%,30%{left:-75%}
  64%,100%{left:140%}
}

@keyframes promoItemShine{
  0%,48%{left:-70%}
  70%,100%{left:135%}
}

@keyframes promoBandLight{
  0%,25%{transform:translateX(-130%)}
  68%,100%{transform:translateX(140%)}
}

@media(prefers-reduced-motion:reduce){
  .promo-marquee-track{
    animation:promoTickerFlow var(--promo-duration,34s) linear infinite!important;
  }

  .promo-marquee-cta{
    animation:promoCtaBlink 1.55s ease-in-out infinite!important;
  }

  .promo-marquee-cta::before,
  .promo-marquee-cta::after{
    animation:promoCtaWave 2.55s ease-out infinite!important;
  }
}

/* COMPACT TUNING */

.section{padding:76px 0}
.section-heading{margin-bottom:32px;gap:32px}

.section-heading.centered{
  max-width:760px;
  margin:0 auto 32px;
}

.section-heading.centered>p{
  margin-top:10px;
  max-width:590px;
}

.section-kicker,.hero-eyebrow{margin-bottom:13px}

.price-section{
  background:
    radial-gradient(circle at 92% 2%,rgba(221,238,233,.62),transparent 25%),
    radial-gradient(circle at 4% 90%,rgba(233,215,176,.17),transparent 24%),
    linear-gradient(180deg,#ffffff 0%,#fbfdfc 100%);
}

.price-section .section-heading{margin-bottom:27px}

.price-toolbar{
  max-width:1160px;
  margin:0 auto 13px;
  gap:14px;
}

.price-tabs{gap:6px}

.price-tab{
  min-height:35px;
  padding:0 12px;
  font-size:8px;
  box-shadow:0 3px 9px rgba(7,49,41,.025);
}

.search-box{
  min-width:230px;
  height:39px;
  border-radius:11px;
  box-shadow:0 4px 14px rgba(7,49,41,.035);
}

.price-card{
  max-width:1160px;
  margin:0 auto;
  border-radius:20px;
  box-shadow:
    0 18px 48px rgba(6,47,39,.085),
    0 2px 8px rgba(6,47,39,.035);
}

.price-table-head{
  min-height:50px;
  padding:0 20px;
  grid-template-columns:minmax(0,1fr) 195px 92px;
  gap:16px;
  font-size:7.5px;
  letter-spacing:.09em;
}

.price-row{
  min-height:59px;
  padding:9px 20px;
  grid-template-columns:minmax(0,1fr) 195px 92px;
  gap:16px;
  border-top-color:#edf2f0;
}

.price-row::before{top:10px;bottom:10px;width:3px}

.price-row:hover{
  background:linear-gradient(90deg,#fbfdfc 0%,#f1f8f6 68%,#fffaf0 100%);
}

.price-row-main{
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.price-category-pill{
  width:max-content;
  margin-bottom:3px;
  padding:3px 6px;
  font-size:6.4px;
  line-height:1.2;
  border:1px solid rgba(23,105,92,.055);
}

.price-row h4{
  font-size:11.5px;
  line-height:1.35;
  font-weight:750;
}

.price-row p{
  margin-top:2px;
  font-size:7.4px;
  line-height:1.35;
}

.price-value{
  min-height:34px;
  padding:5px 9px;
  border-radius:9px;
  display:inline-flex;
  align-items:center;
  width:max-content;
  max-width:100%;
  font-size:10.5px;
  line-height:1.2;
  white-space:nowrap;
  box-shadow:
    inset 0 1px 0 #fff,
    0 4px 10px rgba(7,50,42,.045);
}

.price-value::after{left:8px;right:8px}

.price-book{
  min-width:82px;
  min-height:33px;
  border-radius:9px;
  font-size:8px;
  font-weight:800;
}

.price-disclaimer{
  padding:12px 20px;
  font-size:8px;
  line-height:1.45;
}

/* REVIEW COMPACT */

.review-grid{
  max-width:1160px;
  margin:0 auto;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}

.review-card{
  position:relative;
  min-height:208px;
  padding:18px 19px 17px;
  overflow:hidden;
  border:1px solid #e1eae7;
  border-radius:18px;
  background:
    radial-gradient(circle at 100% 0%,rgba(213,179,107,.08),transparent 28%),
    linear-gradient(155deg,#ffffff 0%,#fbfdfc 100%);
  box-shadow:
    0 10px 27px rgba(7,49,41,.055),
    inset 0 1px 0 rgba(255,255,255,.95);
}

.review-card::before{
  content:"";
  position:absolute;
  left:0;
  top:18px;
  bottom:18px;
  width:2px;
  border-radius:0 8px 8px 0;
  background:linear-gradient(180deg,#d7b469,#17695c);
  opacity:.62;
}

.review-card::after{
  content:"";
  position:absolute;
  top:-40%;
  bottom:-40%;
  left:-55%;
  width:22%;
  pointer-events:none;
  transform:skewX(-18deg);
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.50),transparent);
  opacity:.34;
  transition:left .55s ease;
}

@media(hover:hover){
  .review-card:hover{
    transform:translateY(-5px);
    border-color:#cbded8;
    box-shadow:
      0 20px 42px rgba(7,49,41,.10),
      inset 0 1px 0 rgba(255,255,255,.96);
  }

  .review-card:hover::after{left:125%}
}

.review-quote-icon{
  width:36px;
  height:36px;
  border-radius:11px;
  background:linear-gradient(145deg,#f6fbf9,#e5f1ed);
  border:1px solid #d8e8e3;
  box-shadow:inset 0 1px 0 #fff;
}

.review-quote-icon svg{width:16px}

.review-card blockquote{
  margin:12px 0 14px;
  font-size:11.5px;
  line-height:1.62;
  font-weight:520;
  color:#344841;
}

.review-bottom{padding-top:11px;gap:9px}

.review-avatar{
  width:35px;
  height:35px;
  font-size:10px;
  box-shadow:
    0 6px 14px rgba(23,105,92,.16),
    inset 0 1px 0 rgba(255,255,255,.15);
}

.review-bottom strong{font-size:9.5px;line-height:1.25}
.review-bottom small{margin-top:2px;font-size:7.5px}

.service-grid{gap:16px}
.service-card{min-height:382px}
.service-image{height:190px}
.service-card-body{padding:18px}
.service-card-body>p{min-height:44px;margin-top:10px}
.service-actions{margin-top:14px;padding-top:12px}

.promotion-grid{gap:18px}
.promotion-card:not(.featured){min-height:355px}
.promotion-card.featured{min-height:470px}
.promotion-content{padding:21px}
.promotion-card.featured .promotion-content{padding:27px}

.doctor-grid{gap:15px}
.doctor-photo{height:345px}
.doctor-info{padding:17px}
.experience-grid{gap:52px}
.experience-image img{height:520px}
.experience-list{margin:24px 0 23px;gap:15px}

.branch-layout{
  grid-template-columns:360px 1fr;
  gap:16px;
}

.branch-list{gap:8px}
.branch-card{padding:14px 15px}
.map-card,.map-card iframe{min-height:460px;height:460px}
.faq-grid{gap:58px}
.faq-question{min-height:59px;padding:12px 0}
.final-cta-card{padding:38px 40px}
.footer{margin-top:58px;padding:46px 0 22px}
.footer-grid{gap:38px}
.footer-bottom{margin-top:34px}

@media(max-width:1100px){
  .section{padding:66px 0}
  .price-toolbar,.price-card,.review-grid{max-width:100%}

  .price-table-head,.price-row{
    grid-template-columns:minmax(0,1fr) 170px 84px;
    gap:12px;
  }

  .branch-layout{grid-template-columns:320px 1fr}
}

@media(max-width:780px){
  .section{padding:52px 0}
  .section-heading,.section-heading.centered{margin-bottom:24px}

  .section-heading h2,
  .experience-content h2,
  .faq-intro h2,
  .final-cta h2{
    font-size:31px;
    line-height:1.16;
  }

  .section-heading>p,
  .section-heading.centered>p{
    margin-top:9px;
    font-size:10.5px;
    line-height:1.62;
  }

  .price-toolbar{margin-bottom:11px}
  .price-tabs{padding-bottom:7px}
  .search-box{height:39px;margin-top:2px}

  .price-card{
    border-radius:16px;
    box-shadow:0 12px 30px rgba(6,47,39,.07);
  }

  .price-row{
    min-height:auto;
    padding:12px 13px;
    grid-template-columns:minmax(0,1fr) auto;
    gap:7px 10px;
  }

  .price-category-pill{margin-bottom:3px}
  .price-row h4{font-size:11px}
  .price-row p{font-size:7.2px}

  .price-value{
    align-self:center;
    justify-self:end;
    min-height:31px;
    padding:5px 8px;
    font-size:9px;
  }

  .price-book{
    grid-column:1/-1;
    justify-self:stretch;
    width:100%;
    min-height:34px;
    margin-top:2px;
  }

  .price-disclaimer{padding:11px 13px}
  .review-grid{grid-template-columns:1fr;gap:10px}

  .review-card{
    min-height:0;
    padding:16px 16px 14px;
    border-radius:16px;
  }

  .review-card blockquote{
    margin:10px 0 12px;
    font-size:11px;
    line-height:1.58;
  }

  .review-bottom{padding-top:10px}
  .service-card{min-height:0}
  .service-image{height:195px}
  .promotion-card.featured{min-height:420px}
  .promotion-card:not(.featured){min-height:335px}
  .doctor-photo{height:330px}
  .experience-image img{height:390px}
  .branch-layout{grid-template-columns:1fr}
  .map-card,.map-card iframe{min-height:360px;height:360px}
  .faq-grid{gap:28px}
  .final-cta-card{padding:26px 21px}
  .footer{margin-top:46px;padding-top:40px}
}

@media(max-width:480px){
  .section{padding:46px 0}

  .section-heading h2,
  .experience-content h2,
  .faq-intro h2,
  .final-cta h2{
    font-size:28px;
  }

  .price-row{padding:11px 12px}
  .review-card{padding:15px}
}

/* TYPOGRAPHY SYSTEM */

:root{
  --font-display:"Inter","SF Pro Display","SF Pro Text","Be Vietnam Pro",-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  --font-body:"Inter","SF Pro Text","Be Vietnam Pro",-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  --type-body:17px;
  --type-body-small:15px;
  --type-caption:13px;
  --type-label:13px;
  --type-card-title:20px;
  --type-section:clamp(46px,4vw,58px);
  --type-hero:clamp(52px,4.7vw,68px);
}

html{-webkit-text-size-adjust:100%}

body{
  font-family:var(--font-body);
  font-size:var(--type-body);
  line-height:1.58;
  letter-spacing:-.012em;
  color:var(--ink);
}

h1,h2,h3,h4,h5,h6,
.brand-copy strong,
.btn{
  font-family:var(--font-display);
}

p{text-wrap:pretty}

:root{--container:1320px}
.section{padding:96px 0}
.section-heading{margin-bottom:48px;gap:48px}
.section-heading>div{max-width:860px}

.section-heading.centered{
  max-width:920px;
  margin:0 auto 48px;
}

.section-heading.centered>p{
  max-width:720px;
  margin:18px auto 0;
}

.hero-eyebrow,.section-kicker{
  margin-bottom:18px;
  font-size:13px;
  line-height:1.35;
  font-weight:750;
  letter-spacing:.105em;
}

.announcement-message,.announcement-action{font-size:13px}
.navbar{height:82px}
.brand-copy strong{font-size:18px;letter-spacing:-.02em}
.brand-copy span{font-size:11px;line-height:1.35}

.desktop-nav a{
  font-size:14px;
  font-weight:600;
  letter-spacing:-.01em;
}

.header-phone small{font-size:11px}
.header-phone strong{font-size:13px}

.btn{
  min-height:50px;
  padding:0 20px;
  gap:10px;
  font-size:15px;
  font-weight:700;
  letter-spacing:-.012em;
}

.btn-small{min-height:42px;padding:0 16px;font-size:13px}
.btn-large-simple{min-height:58px;padding:0 25px}
.btn-large{min-height:64px;padding:0 24px}
.btn-large>span strong{font-size:15px}

.btn-large>span small{
  margin-top:4px;
  font-size:11px;
  line-height:1.3;
}

.hero{padding:88px 0 98px}

.hero-grid{
  grid-template-columns:minmax(0,1.13fr) minmax(430px,.87fr);
  gap:58px;
}

.hero-content{min-width:0}

.hero h1{
  max-width:780px;
  margin:0 0 28px;
  font-size:var(--type-hero);
  line-height:1.015;
  letter-spacing:-.052em;
  font-weight:700;
  text-wrap:balance;
}

.hero h1 #heroTitle,
.hero h1 #heroAccent{
  display:block;
  white-space:nowrap;
}

.hero h1 strong{margin-top:9px;font-weight:760}

.hero-description{
  max-width:680px;
  margin:0 0 34px;
  font-size:19px;
  line-height:1.62;
  letter-spacing:-.015em;
}

.hero-assurance strong{font-size:13px;line-height:1.35}

.hero-assurance small{
  margin-top:4px;
  font-size:11px;
  line-height:1.45;
}

.quick-branch-label{font-size:13px}
.quick-branch-button{padding:9px 14px;font-size:12px}
.hero-floating-top strong,.hero-floating-bottom strong{font-size:12px}
.hero-floating-top small,.hero-floating-bottom small{font-size:10px}

.section-heading h2,
.experience-content h2,
.faq-intro h2,
.final-cta h2{
  font-size:var(--type-section);
  line-height:1.055;
  letter-spacing:-.046em;
  font-weight:700;
  text-wrap:balance;
}

.section-heading h2 strong,
.experience-content h2 strong,
.faq-intro h2 strong{
  font-weight:760;
}

.section-heading>p{
  max-width:480px;
  margin:0 0 5px;
  font-size:17px;
  line-height:1.65;
  letter-spacing:-.012em;
}

.section-heading h2 .heading-main-line,
.section-heading h2 .heading-accent-line{
  display:block;
}

#offers .section-heading h2 .heading-main-line,
#offers .section-heading h2 .heading-accent-line,
#promotions .section-heading h2 .heading-main-line,
#promotions .section-heading h2 .heading-accent-line,
#services .section-heading h2 .heading-main-line,
#services .section-heading h2 .heading-accent-line{
  white-space:nowrap;
}

.fixed-heading-lines,
#offers .section-heading h2,
#promotions .section-heading h2,
#services .section-heading h2{
  text-wrap:balance;
}

.hero-promotion-label,
.campaign-copy>span,
.campaign-stat span{
  font-size:11px;
}

.hero-promotion h3{font-size:32px;line-height:1.08}
.hero-promotion p{font-size:13px;line-height:1.55}
.hero-promotion button{font-size:12px}

.campaign-copy h3{
  font-size:clamp(44px,4.4vw,62px);
  line-height:1.04;
  letter-spacing:-.048em;
}

.campaign-copy p{
  max-width:620px;
  font-size:17px;
  line-height:1.65;
}

.campaign-stat strong{font-size:34px}
.campaign-stat small{font-size:12px;line-height:1.5}
.promotion-badge{font-size:11px}

.promotion-card h3{
  font-size:24px;
  line-height:1.22;
  letter-spacing:-.03em;
}

.promotion-card.featured h3{font-size:34px;line-height:1.14}
.promotion-card p{font-size:15px;line-height:1.62}
.promotion-card.featured p{font-size:16px}
.promotion-highlight{font-size:36px}
.promotion-card.featured .promotion-highlight{font-size:50px}
.promotion-bottom small{font-size:11px}
.service-image-label{font-size:11px}

.service-card-body h3{
  font-size:21px;
  line-height:1.25;
  letter-spacing:-.025em;
}

.service-price{font-size:14px}

.service-card-body>p{
  min-height:auto;
  font-size:15px;
  line-height:1.62;
}

.service-detail,.service-booking{font-size:13px}
.conversion-copy>span{font-size:11px}

.conversion-copy>strong{
  margin-top:7px;
  font-size:25px;
  line-height:1.25;
}

.conversion-copy p{
  margin-top:6px;
  font-size:14px;
  line-height:1.55;
}

.price-tabs button,.search-box input{font-size:14px}
.price-table-head{font-size:11px}
.price-row h4{font-size:16px;line-height:1.35}
.price-row p{font-size:13px;line-height:1.5}
.price-value{font-size:15px}
.price-card .btn,.price-row button{font-size:13px}
.price-disclaimer{font-size:13px;line-height:1.6}
.experience-badge strong{font-size:16px}
.experience-badge small{font-size:11px}

.experience-content>p{
  max-width:650px;
  font-size:17px;
  line-height:1.7;
}

.experience-number{font-size:12px}
.experience-list strong{font-size:16px}
.experience-list p{font-size:14px;line-height:1.55}
.doctor-specialty{font-size:12px;letter-spacing:.06em}

.doctor-info h3{
  margin:8px 0 10px;
  font-size:21px;
  line-height:1.25;
  letter-spacing:-.025em;
}

.doctor-info p{font-size:15px;line-height:1.62}
.review-card>p,.review-quote{font-size:16px;line-height:1.72}
.review-rating{font-size:13px}
.review-bottom strong{font-size:14px}
.review-bottom small{font-size:12px}
.branch-card h3{font-size:17px;line-height:1.3}
.branch-tag{font-size:11px}
.branch-card p{font-size:14px;line-height:1.55}
.branch-card-actions{font-size:13px}
.map-information small{font-size:11px}
.map-information strong{font-size:15px}
.map-information span{font-size:13px}
.faq-intro>p,.faq-intro p{font-size:17px;line-height:1.65}
.faq-question{font-size:17px;line-height:1.45}
.faq-answer{font-size:15px;line-height:1.7}
.final-cta-card>div:first-child>span{font-size:12px}
.final-cta-card>div:first-child>p{font-size:16px;line-height:1.6}
.final-phone small{font-size:11px}
.final-phone strong{font-size:15px}
.footer-brand p{font-size:14px;line-height:1.65}
.footer-column>strong{font-size:12px}
.footer-column>a,.footer-column>p{font-size:13px;line-height:1.55}
.footer-bottom{font-size:12px}
.desktop-floating-booking small{font-size:10px}
.desktop-floating-booking strong{font-size:13px}
.booking-sidebar-label{font-size:11px}

.booking-sidebar h3{
  font-size:34px;
  line-height:1.12;
  letter-spacing:-.035em;
}

.booking-sidebar>p{font-size:15px;line-height:1.6}
.booking-benefits{font-size:14px}
.booking-hotline small{font-size:11px}
.booking-hotline strong{font-size:16px}

.booking-form-heading h3{
  font-size:26px;
  line-height:1.2;
  letter-spacing:-.03em;
}

.booking-form-heading p,
.form-field span,
.booking-consent{
  font-size:13px;
}

.form-field input,
.form-field select,
.form-field textarea{
  font-size:15px;
}

@media(min-width:781px) and (max-width:1100px){
  :root{
    --container:calc(100vw - 48px);
    --type-section:clamp(40px,4.5vw,50px);
    --type-hero:clamp(44px,5.1vw,56px);
  }

  body{font-size:16px}
  .section{padding:82px 0}
  .hero{padding:72px 0 82px}

  .hero-grid{
    grid-template-columns:minmax(0,1.08fr) minmax(360px,.92fr);
    gap:42px;
  }

  .hero-description{font-size:17px}
  .section-heading>p{font-size:16px}

  #offers .section-heading h2,
  #promotions .section-heading h2,
  #services .section-heading h2{
    font-size:clamp(38px,4.45vw,48px);
  }
}

@media(max-width:780px){
  :root{
    --type-section:clamp(34px,9.2vw,42px);
    --type-hero:clamp(39px,10.6vw,48px);
  }

  body{font-size:16px;line-height:1.58}
  .container{width:min(100% - 32px,var(--container))}
  .section{padding:66px 0}
  .section-heading,.section-heading.centered{margin-bottom:32px}
  .hero{padding:58px 0 68px}

  .hero h1{
    margin-bottom:22px;
    line-height:1.035;
    letter-spacing:-.048em;
  }

  .hero-description{
    margin-bottom:28px;
    font-size:17px;
    line-height:1.58;
  }

  .hero-eyebrow,.section-kicker{
    margin-bottom:14px;
    font-size:12px;
  }

  .section-heading h2,
  .experience-content h2,
  .faq-intro h2,
  .final-cta h2{
    line-height:1.08;
  }

  .section-heading>p,
  .section-heading.centered>p{
    margin-top:13px;
    font-size:16px;
    line-height:1.6;
  }

  #offers .section-heading h2,
  #promotions .section-heading h2,
  #services .section-heading h2{
    font-size:clamp(30px,8.15vw,36px);
    letter-spacing:-.04em;
  }

  .campaign-copy h3{font-size:clamp(36px,10vw,46px)}
  .campaign-copy p{font-size:16px}
  .promotion-card h3{font-size:22px}
  .promotion-card.featured h3{font-size:28px}
  .promotion-card p,.promotion-card.featured p{font-size:15px}
  .service-card-body h3{font-size:20px}
  .service-card-body>p{font-size:15px}
  .doctor-info h3{font-size:20px}
  .doctor-info p,.branch-card p,.faq-answer{font-size:14px}
  .faq-question{font-size:16px}
  .booking-sidebar h3{font-size:30px}
}

@media(max-width:480px){
  .container{width:calc(100% - 28px)}
  .section{padding:58px 0}
  .hero h1{font-size:clamp(36px,10.4vw,43px)}

  #offers .section-heading h2,
  #promotions .section-heading h2,
  #services .section-heading h2{
    font-size:clamp(28px,7.85vw,33px);
  }

  .section-heading h2,
  .experience-content h2,
  .faq-intro h2,
  .final-cta h2{
    font-size:clamp(32px,8.8vw,38px);
  }

  .hero-description,
  .section-heading>p,
  .section-heading.centered>p,
  .experience-content>p,
  .faq-intro>p{
    font-size:15.5px;
  }

  .btn{font-size:14px}
}

@media(max-width:380px){
  .hero h1{font-size:34px}

  #offers .section-heading h2,
  #promotions .section-heading h2,
  #services .section-heading h2{
    font-size:27px;
  }
}

/* BRAND IMAGE FRAMES */

:root{
  --frame-brand:rgba(23,105,92,.95);
  --frame-brand-strong:rgba(23,105,92,.48);
  --frame-brand-soft:rgba(23,105,92,.12);
  --frame-brand-glow:rgba(23,105,92,.18);
  --frame-gold-soft:rgba(213,179,107,.18);
}

.hero-image-shell{
  box-shadow:
    0 34px 90px rgba(5,42,35,.22),
    0 0 0 1px rgba(255,255,255,.72) inset,
    0 0 0 1px rgba(23,105,92,.12),
    0 0 0 10px rgba(23,105,92,.05);
}

.hero-image-shell::before{
  padding:2px;
  background:linear-gradient(
    135deg,
    rgba(255,255,255,.96) 0%,
    rgba(23,105,92,.86) 16%,
    rgba(214,182,112,.72) 34%,
    rgba(23,105,92,.98) 54%,
    rgba(154,209,195,.78) 71%,
    rgba(255,255,255,.92) 100%
  );
  background-size:220% 100%;
  animation:brandFrameFlow 7s linear infinite;
}

.hero-image-shell::after{
  content:"";
  position:absolute;
  inset:14px;
  z-index:3;
  pointer-events:none;
  border-radius:28px 28px 86px 28px;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.34),
    inset 0 0 0 10px rgba(23,105,92,.045),
    0 0 44px rgba(23,105,92,.13);
}

.campaign-slider{
  box-shadow:
    0 40px 94px rgba(6,43,36,.20),
    0 0 0 1px rgba(255,255,255,.26) inset,
    0 0 0 1px rgba(23,105,92,.16),
    0 0 0 8px rgba(23,105,92,.055);
}

.campaign-slider::before{
  padding:2px;
  background:linear-gradient(
    115deg,
    rgba(255,255,255,.60),
    rgba(23,105,92,.90),
    rgba(243,218,161,.86),
    rgba(23,105,92,.95),
    rgba(255,255,255,.62)
  );
  background-size:260% 100%;
  animation:brandFrameFlow 8s linear infinite;
}

.promotion-card{
  box-shadow:
    0 24px 54px rgba(6,48,40,.14),
    0 8px 20px rgba(6,48,40,.08),
    0 0 0 1px rgba(23,105,92,.16),
    0 0 0 8px rgba(23,105,92,.045);
}

.promotion-card::before{
  padding:2px;
  background:linear-gradient(
    125deg,
    rgba(255,255,255,.96) 0%,
    rgba(23,105,92,.86) 18%,
    rgba(244,221,173,.86) 37%,
    rgba(23,105,92,.96) 58%,
    rgba(255,255,255,.90) 100%
  );
  background-size:260% 100%;
  animation:brandFrameFlow 7s linear infinite;
}

.promotion-card.featured{
  box-shadow:
    0 42px 90px rgba(4,43,36,.24),
    0 15px 34px rgba(4,43,36,.12),
    0 0 0 1px rgba(23,105,92,.24),
    0 0 0 10px rgba(23,105,92,.06);
}

.promotion-card.featured::before{
  padding:2px;
  background:linear-gradient(
    125deg,
    #ffffff,
    rgba(23,105,92,.98),
    #f5dfad,
    rgba(23,105,92,.96),
    #ffffff
  );
  background-size:280% 100%;
  animation:brandFrameFlow 5.8s linear infinite;
}

.service-image{
  border-radius:24px 24px 18px 18px;
  box-shadow:
    0 16px 36px rgba(10,54,46,.12),
    0 0 0 1px rgba(23,105,92,.14),
    0 0 0 7px rgba(23,105,92,.045);
}

.service-image::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:2;
  pointer-events:none;
  border-radius:inherit;
  padding:2px;
  background:linear-gradient(
    135deg,
    rgba(255,255,255,.94) 0%,
    rgba(23,105,92,.88) 24%,
    rgba(214,183,110,.60) 50%,
    rgba(23,105,92,.98) 76%,
    rgba(255,255,255,.86) 100%
  );
  background-size:240% 100%;
  animation:brandFrameFlow 8s linear infinite;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
}

.service-image::after{
  background:linear-gradient(
    180deg,
    rgba(4,37,31,.02),
    rgba(4,37,31,.12) 52%,
    rgba(4,37,31,.56)
  );
}

.experience-image{position:relative}

.experience-image::before{
  content:"";
  position:absolute;
  inset:-8px;
  pointer-events:none;
  border-radius:38px 38px 88px 38px;
  background:linear-gradient(
    140deg,
    rgba(23,105,92,.18),
    rgba(255,255,255,0) 35%,
    rgba(213,179,107,.14) 68%,
    rgba(23,105,92,.22)
  );
  filter:blur(2px);
  z-index:0;
}

.experience-image img{
  position:relative;
  z-index:1;
  box-shadow:
    0 34px 80px rgba(0,0,0,.23),
    0 0 0 1px rgba(23,105,92,.16),
    0 0 0 8px rgba(23,105,92,.045);
}

.doctor-photo{
  position:relative;
  border-radius:22px 22px 18px 18px;
  box-shadow:
    inset 0 0 0 1px rgba(23,105,92,.14),
    0 12px 30px rgba(10,54,46,.08);
}

.doctor-photo::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:2;
  pointer-events:none;
  border-radius:inherit;
  padding:2px;
  background:linear-gradient(
    135deg,
    rgba(255,255,255,.94),
    rgba(23,105,92,.84),
    rgba(240,220,174,.58),
    rgba(23,105,92,.98),
    rgba(255,255,255,.84)
  );
  background-size:250% 100%;
  animation:brandFrameFlow 8.5s linear infinite;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
}

.review-avatar{
  border:2px solid rgba(23,105,92,.26);
  box-shadow:
    0 0 0 5px rgba(23,105,92,.08),
    0 10px 24px rgba(10,54,46,.10);
}

.review-avatar img{
  width:100%;
  height:100%;
  border-radius:50%;
  object-fit:cover;
}

.hero-floating-top,
.hero-floating-bottom,
.service-image-label{
  box-shadow:
    0 14px 30px rgba(7,48,40,.14),
    0 0 0 1px rgba(23,105,92,.10);
}

.service-card:hover .service-image,
.doctor-card:hover .doctor-photo,
.promotion-card:hover,
.hero-image-shell:hover,
.campaign-slider:hover{
  box-shadow:
    0 28px 66px rgba(6,48,40,.18),
    0 0 0 1px rgba(23,105,92,.24),
    0 0 0 10px rgba(23,105,92,.08),
    0 0 36px rgba(23,105,92,.14);
}

@keyframes brandFrameFlow{
  0%{background-position:0% 50%}
  100%{background-position:220% 50%}
}

/* MOBILE-FIRST CONVERSION UX */

.mobile-hero-shortcuts{display:none}

#offers,
#promotions,
#services,
#prices,
#doctors,
#reviews,
#branches{
  scroll-margin-top:92px;
}

@media(max-width:780px){
  html{scroll-padding-top:76px}

  body{
    padding-bottom:calc(78px + env(safe-area-inset-bottom));
    overflow-x:hidden;
  }

  .container{width:calc(100% - 28px)}

  .announcement{min-height:32px}
  .announcement-inner{min-height:32px;gap:7px}

  .announcement-message{
    width:100%;
    justify-content:center;
    gap:6px;
    font-size:10.5px;
    line-height:1.2;
    font-weight:700;
    white-space:nowrap;
    overflow:hidden;
  }

  .announcement-message span{
    overflow:hidden;
    text-overflow:ellipsis;
  }

  .announcement-message svg{
    flex:0 0 auto;
    width:14px;
    height:14px;
  }

  .announcement-action{display:none}

  .site-header{
    top:0;
    border-bottom:1px solid rgba(23,105,92,.10);
    background:rgba(255,255,255,.97);
    box-shadow:0 6px 24px rgba(7,49,41,.055);
    backdrop-filter:blur(16px) saturate(1.2);
    -webkit-backdrop-filter:blur(16px) saturate(1.2);
  }

  .navbar{height:60px;gap:8px}
  .brand{min-width:0;gap:8px}
  .brand-logo{width:36px;height:36px}
  .brand-copy{min-width:0}

  .brand-copy strong{
    font-size:13px;
    line-height:1.1;
    white-space:nowrap;
  }

  .brand-copy span{display:none}
  .header-actions{margin-left:auto;gap:6px}
  .header-phone{display:none!important}

  .btn-header.mobile-header-booking{
    display:inline-flex!important;
    min-height:38px;
    height:38px;
    padding:0 11px;
    gap:6px;
    border-radius:12px;
    font-size:11px;
    font-weight:800;
    white-space:nowrap;
    box-shadow:0 7px 17px rgba(23,105,92,.19);
  }

  .btn-header.mobile-header-booking svg{
    width:15px;
    height:15px;
  }

  .mobile-menu-button{
    width:40px;
    height:40px;
    border-radius:12px;
    border-color:rgba(23,105,92,.14);
    color:var(--brand-deep);
    background:#fff;
  }

  .mobile-menu{
    top:60px;
    left:10px;
    right:10px;
    padding:10px;
    border:1px solid rgba(23,105,92,.13);
    border-radius:18px;
    background:rgba(255,255,255,.985);
    box-shadow:0 22px 60px rgba(5,42,35,.17);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
  }

  .mobile-menu.show{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:6px;
  }

  .mobile-menu>a{
    min-height:45px;
    padding:0 12px;
    border-radius:12px;
    display:flex;
    align-items:center;
    color:#324841;
    background:#f7faf9;
    font-size:13px;
    font-weight:700;
  }

  .mobile-menu .btn{
    grid-column:1/-1;
    min-height:50px;
    margin-top:3px;
    font-size:14px;
    border-radius:13px;
  }

  .promo-marquee-band{
    position:relative;
    z-index:20;
    border-bottom:1px solid rgba(23,105,92,.08);
    background:#fbfdfc;
    box-shadow:0 5px 16px rgba(5,48,40,.045);
  }

  .promo-marquee-shell{
    width:100%;
    min-height:54px;
    padding:0 7px;
    grid-template-columns:64px minmax(0,1fr) 104px;
    gap:5px;
  }

  .promo-marquee-label{
    width:60px;
    min-height:34px;
    padding:0 7px;
    gap:4px;
    border-radius:11px;
    font-size:8px;
    letter-spacing:.035em;
  }

  .promo-marquee-label svg{width:13px;height:13px}

  .promo-marquee-item{
    min-height:36px;
    padding:0 10px;
    gap:7px;
    border-radius:11px;
  }

  .promo-marquee-item-badge{font-size:8px}

  .promo-marquee-item-title,
  .promo-marquee-item-highlight{
    font-size:10px;
    font-weight:800;
  }

  .promo-marquee-cta{
    min-height:40px;
    padding:0 8px;
    grid-template-columns:26px 1fr;
    gap:6px;
    border-radius:12px;
  }

  .promo-marquee-cta-icon{
    width:26px;
    height:26px;
    border-radius:8px;
  }

  .promo-marquee-cta-copy strong,
  .promo-marquee-cta-text strong{
    font-size:9px;
    line-height:1.1;
  }

  .promo-marquee-cta-copy small,
  .promo-marquee-cta-text small,
  .promo-marquee-cta-arrow{
    display:none;
  }

  .hero{padding:30px 0 42px}
  .hero-grid{grid-template-columns:1fr;gap:24px}
  .hero-content{min-width:0}

  .hero-eyebrow{
    margin-bottom:10px;
    font-size:10.5px;
    letter-spacing:.09em;
  }

  .hero h1{
    margin-bottom:16px;
    font-size:clamp(35px,9.9vw,43px);
    line-height:1.025;
    letter-spacing:-.05em;
  }

  .hero h1 #heroTitle,
  .hero h1 #heroAccent{
    white-space:nowrap;
  }

  .hero-description{
    max-width:none;
    margin-bottom:20px;
    font-size:15.5px;
    line-height:1.55;
  }

  .hero-actions{display:block}

  .hero-actions .btn-primary{
    width:100%;
    min-height:56px;
    border-radius:15px;
    justify-content:flex-start;
    padding:0 15px;
    box-shadow:0 12px 28px rgba(23,105,92,.22);
  }

  .hero-actions .btn-primary>span{flex:1}
  .hero-actions .btn-primary>span strong{font-size:14px}
  .hero-actions .btn-primary>span small{font-size:10px}
  .hero-actions>.btn-outline{display:none}

  .mobile-hero-shortcuts{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:8px;
    margin-top:9px;
  }

  .mobile-hero-shortcut{
    min-height:44px;
    padding:0 11px;
    border:1px solid rgba(23,105,92,.13);
    border-radius:13px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:7px;
    color:#345048;
    background:#fff;
    box-shadow:0 6px 18px rgba(7,49,41,.055);
    font-size:12px;
    font-weight:750;
  }

  .mobile-hero-shortcut svg{
    width:16px;
    height:16px;
    color:var(--brand);
  }

  .mobile-hero-shortcut-offer{
    color:var(--brand-deep);
    border-color:rgba(213,179,107,.26);
    background:linear-gradient(145deg,#fffdf8,#fbf5e8);
  }

  .hero-assurance{
    margin-top:16px;
    padding-top:14px;
    display:flex;
    gap:8px;
    overflow-x:auto;
    scroll-snap-type:x proximity;
    scrollbar-width:none;
  }

  .hero-assurance::-webkit-scrollbar{display:none}

  .hero-assurance>div,
  .hero-assurance>div:last-child{
    flex:0 0 168px;
    min-height:58px;
    padding:10px;
    border:1px solid rgba(23,105,92,.10);
    border-radius:13px;
    background:rgba(255,255,255,.82);
    scroll-snap-align:start;
  }

  .hero-assurance strong{font-size:11.5px}
  .hero-assurance small{font-size:9.5px}
  .quick-branch{display:none}
  .hero-media{padding:0;min-width:0}

  .hero-image-shell{
    height:345px;
    border-radius:24px 24px 58px 24px;
    transform:none;
    box-shadow:
      0 24px 58px rgba(5,42,35,.19),
      0 0 0 1px rgba(23,105,92,.14),
      0 0 0 6px rgba(23,105,92,.045);
  }

  .hero-image-shell::after{
    inset:9px;
    border-radius:18px 18px 50px 18px;
  }

  .hero-floating-top{
    top:12px;
    left:12px;
    padding:8px 10px;
    border-radius:12px;
  }

  .hero-floating-icon{
    width:30px;
    height:30px;
    border-radius:9px;
  }

  .hero-floating-top strong{font-size:10px}
  .hero-floating-top small{display:none}
  .hero-floating-bottom{display:none}

  .hero-promotion{
    left:10px;
    right:10px;
    bottom:10px;
    width:auto;
    min-height:94px;
    padding:11px 11px 11px 13px;
    border-radius:17px;
    display:grid;
    grid-template-columns:minmax(0,1fr) auto;
    grid-template-areas:
      "label button"
      "highlight button"
      "title button";
    column-gap:10px;
    align-items:center;
    animation:none;
    background:linear-gradient(
      145deg,
      rgba(5,42,35,.93),
      rgba(14,81,70,.94)
    );
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
    box-shadow:
      0 16px 38px rgba(4,42,34,.29),
      0 0 0 1px rgba(255,255,255,.13) inset;
  }

  .hero-promotion-label{
    grid-area:label;
    width:max-content;
    padding:3px 6px;
    font-size:7px;
  }

  .hero-promotion>strong{
    grid-area:highlight;
    margin-top:2px;
    font-size:18px;
    line-height:1.05;
  }

  .hero-promotion p{
    grid-area:title;
    margin:3px 0 0;
    max-width:210px;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
    font-size:10px;
  }

  .hero-promotion button{
    grid-area:button;
    min-height:42px;
    padding:0 10px;
    border-radius:11px;
    white-space:nowrap;
    font-size:10px;
  }

  .trust-bar{overflow:hidden}
  .trust-bar .container{width:100%}

  .trust-bar-grid{
    min-height:auto;
    padding:10px 14px;
    display:flex;
    gap:8px;
    overflow-x:auto;
    scroll-snap-type:x proximity;
    scrollbar-width:none;
  }

  .trust-bar-grid::-webkit-scrollbar{display:none}

  .trust-bar-grid>div{
    flex:0 0 auto;
    min-width:150px;
    min-height:44px;
    padding:0 11px;
    border:1px solid #e5eeeb!important;
    border-radius:12px;
    justify-content:flex-start;
    background:#fff;
    scroll-snap-align:start;
    font-size:10.5px;
  }

  .section{padding:54px 0}
  .section-heading,.section-heading.centered{margin-bottom:24px}
  .section-kicker{margin-bottom:10px;font-size:10.5px}

  .section-heading h2,
  .experience-content h2,
  .faq-intro h2,
  .final-cta h2{
    font-size:clamp(31px,8.4vw,37px);
    line-height:1.075;
  }

  #offers .section-heading h2,
  #promotions .section-heading h2,
  #services .section-heading h2{
    font-size:clamp(27px,7.2vw,33px);
  }

  .section-heading>p,
  .section-heading.centered>p{
    margin-top:10px;
    font-size:14.5px;
    line-height:1.55;
  }

  #promotions>.container{width:100%}

  #promotions .section-heading{
    width:calc(100% - 28px);
    margin-left:auto;
    margin-right:auto;
  }

  #promotions .section-heading::after,
  #services .section-heading::after,
  #doctors .section-heading::after,
  #reviews .section-heading::after{
    content:"Vuốt để xem thêm  →";
    display:block;
    margin-top:11px;
    color:var(--brand);
    font-size:10.5px;
    font-weight:750;
    letter-spacing:.01em;
  }

  .promotion-grid{
    max-width:none;
    margin:0;
    padding:8px 14px 24px;
    display:flex;
    flex-direction:row;
    gap:12px;
    overflow-x:auto;
    overflow-y:visible;
    scroll-snap-type:x mandatory;
    scroll-padding:14px;
    scrollbar-width:none;
    -webkit-overflow-scrolling:touch;
  }

  .promotion-grid::-webkit-scrollbar{display:none}

  .promotion-card,
  .promotion-card.featured,
  .promotion-card:not(.featured){
    flex:0 0 min(86vw,360px);
    width:auto;
    min-height:420px;
    order:initial;
    grid-column:auto!important;
    grid-row:auto!important;
    transform:none!important;
    scroll-snap-align:center;
    border-radius:22px;
    box-shadow:
      0 18px 42px rgba(6,48,40,.15),
      0 0 0 1px rgba(23,105,92,.14),
      0 0 0 5px rgba(23,105,92,.04);
  }

  .promotion-card.featured{order:-1;min-height:440px}

  .promotion-content,
  .promotion-card.featured .promotion-content{
    padding:20px;
  }

  .promotion-card h3{font-size:23px}
  .promotion-card.featured h3{font-size:27px}

  .promotion-card p,
  .promotion-card.featured p{
    font-size:14px;
  }

  .promotion-highlight,
  .promotion-card.featured .promotion-highlight{
    font-size:34px;
  }

  #services>.container,
  #doctors>.container,
  #reviews>.container{
    width:100%;
  }

  #services .section-heading,
  #doctors .section-heading,
  #reviews .section-heading{
    width:calc(100% - 28px);
    margin-left:auto;
    margin-right:auto;
  }

  .service-grid,
  .doctor-grid,
  .review-grid{
    padding:7px 14px 20px;
    display:flex;
    gap:12px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    scroll-padding:14px;
    scrollbar-width:none;
    -webkit-overflow-scrolling:touch;
  }

  .service-grid::-webkit-scrollbar,
  .doctor-grid::-webkit-scrollbar,
  .review-grid::-webkit-scrollbar{
    display:none;
  }

  .service-card{
    flex:0 0 min(84vw,350px);
    min-height:390px;
    scroll-snap-align:center;
    border-radius:20px;
  }

  .service-image{height:205px}

  .doctor-card{
    flex:0 0 min(82vw,340px);
    scroll-snap-align:center;
    border-radius:20px;
  }

  .doctor-photo{height:360px}

  .review-card{
    flex:0 0 min(86vw,360px);
    scroll-snap-align:center;
  }

  .price-toolbar{gap:10px}
  .price-tabs{margin-left:-2px;margin-right:-2px}
  .price-row{padding:15px 14px;border-radius:14px}
  .price-row h4{font-size:15px}
  .price-row p{font-size:11.5px}
  .price-value{font-size:13px}

  .booking-modal{padding:0;align-items:flex-end}

  .booking-dialog{
    width:100%;
    max-width:none;
    max-height:94dvh;
    border-radius:24px 24px 0 0;
    overflow:hidden;
  }

  .booking-dialog::before{
    content:"";
    position:absolute;
    top:8px;
    left:50%;
    width:42px;
    height:4px;
    border-radius:999px;
    background:#d5dfdc;
    transform:translateX(-50%);
    z-index:5;
  }

  .booking-close{
    width:42px;
    height:42px;
    top:12px;
    right:12px;
  }

  .booking-form{
    max-height:94dvh;
    overflow-y:auto;
    overscroll-behavior:contain;
    padding:30px 16px calc(22px + env(safe-area-inset-bottom));
  }

  .booking-form-heading{padding-right:46px}
  .booking-form-heading>span{font-size:10px}

  .booking-form-heading h3{
    font-size:27px;
    line-height:1.14;
  }

  .booking-form-heading p{font-size:13px}
  .form-field>span{font-size:12px}
  .input-shell{min-height:52px;border-radius:13px}
  .input-shell input,.input-shell select{font-size:16px}
  .booking-consent{font-size:11px;line-height:1.5}

  .booking-submit{
    position:sticky;
    bottom:0;
    z-index:4;
    min-height:58px;
    margin-top:14px;
    border-radius:15px;
    box-shadow:
      0 -12px 28px rgba(255,255,255,.95),
      0 12px 28px rgba(23,105,92,.20);
  }

  .desktop-floating-booking{display:none!important}

  .mobile-bottom-bar{
    position:fixed;
    left:7px;
    right:7px;
    bottom:7px;
    z-index:120;
    height:66px;
    padding:5px;
    grid-template-columns:.72fr .72fr .72fr 1.25fr;
    gap:4px;
    border:1px solid rgba(23,105,92,.12);
    border-radius:18px;
    background:rgba(255,255,255,.965);
    box-shadow:
      0 12px 40px rgba(5,42,35,.18),
      0 0 0 1px rgba(255,255,255,.8) inset;
    backdrop-filter:blur(18px) saturate(1.15);
    -webkit-backdrop-filter:blur(18px) saturate(1.15);
  }

  .mobile-bottom-bar>a,
  .mobile-bottom-bar>button{
    min-width:0;
    border-radius:13px;
    gap:3px;
    font-size:9.5px;
    font-weight:750;
  }

  .mobile-bottom-bar svg{width:18px;height:18px}

  .mobile-bottom-bar .mobile-bottom-offers{
    color:#725621;
    background:linear-gradient(145deg,#fffaf0,#f7edd7);
  }

  .mobile-bottom-bar .mobile-bottom-offers svg{
    color:#b68735;
  }

  .mobile-bottom-bar>button{
    color:#fff;
    background:linear-gradient(145deg,#22786b,#0d5146);
    box-shadow:0 7px 18px rgba(23,105,92,.22);
    font-size:10px;
  }

  .mobile-bottom-bar>button svg{width:19px;height:19px}
}

@media(max-width:430px){
  .btn-header.mobile-header-booking{
    padding:0 9px;
    font-size:10px;
  }

  .brand-copy strong{font-size:12px}

  .promo-marquee-shell{
    grid-template-columns:52px minmax(0,1fr) 92px;
  }

  .promo-marquee-label{width:49px;padding:0 4px}
  .promo-marquee-label span{font-size:0}
  .promo-marquee-label span::after{content:"HOT";font-size:8px}

  .promo-marquee-cta-copy strong,
  .promo-marquee-cta-text strong{
    font-size:8px;
  }

  .hero h1{font-size:clamp(34px,9.5vw,40px)}
  .hero-description{font-size:15px}
  .hero-image-shell{height:326px}
  .hero-promotion{left:8px;right:8px;bottom:8px}
  .hero-promotion p{max-width:165px}

  #offers .section-heading h2,
  #promotions .section-heading h2,
  #services .section-heading h2{
    font-size:clamp(26px,7vw,30px);
  }

  .mobile-bottom-bar{
    left:5px;
    right:5px;
    bottom:5px;
    grid-template-columns:.68fr .68fr .68fr 1.22fr;
  }
}

@media(max-width:360px){
  .brand-copy strong{display:none}
  .btn-header.mobile-header-booking{padding:0 8px}
  .hero h1{font-size:33px}

  #offers .section-heading h2,
  #promotions .section-heading h2,
  #services .section-heading h2{
    font-size:25px;
  }

  .mobile-bottom-bar>a,
  .mobile-bottom-bar>button{
    font-size:8.5px;
  }
}

/* SERVICE BEFORE / AFTER — ẢNH VUÔNG 1:1 */

#serviceGrid .service-square-card{
  display:flex;
  flex-direction:column;
  overflow:hidden;
  border:1px solid #d9e7e2;
  border-radius:24px;
  background:#fff;
  box-shadow:0 10px 32px rgba(17,72,61,.06);
}

#serviceGrid .service-square-card .service-image{
  position:relative;
  width:100%;
  height:auto;
  min-height:0;
  flex:none;
  aspect-ratio:1 / 1;
  border-radius:22px 22px 0 0;
  box-shadow:none;
  overflow:hidden;
}

#serviceGrid .service-image::before,
#serviceGrid .service-image::after{
  display:none;
}

#serviceGrid .service-image img{
  position:absolute;
  inset:0;
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  transform:none;
  transition:opacity .45s ease;
}

#serviceGrid .service-image .service-after-image{
  opacity:0;
}

#serviceGrid .service-image.is-after .service-after-image{
  opacity:1;
}

#serviceGrid .service-compare-label{
  position:absolute;
  top:16px;
  left:16px;
  z-index:3;
  padding:7px 13px;
  border:1px solid rgba(255,255,255,.45);
  border-radius:999px;
  background:rgba(12,52,44,.78);
  color:#fff;
  font-size:13px;
  font-weight:750;
  backdrop-filter:blur(10px);
}

#serviceGrid .service-compare-controls{
  position:absolute;
  bottom:16px;
  left:50%;
  transform:translateX(-50%);
  z-index:3;
  display:flex;
  gap:4px;
  padding:4px;
  border-radius:999px;
  background:rgba(255,255,255,.94);
  box-shadow:0 4px 20px #143e3320;
}

#serviceGrid [hidden]{
  display:none!important;
}

#serviceGrid .service-compare-controls button{
  min-width:50px;
  min-height:40px;
  border:0;
  border-radius:999px;
  padding:8px 12px;
  font:inherit;
  font-size:13px;
  font-weight:750;
  color:#185e50;
  background:transparent;
  cursor:pointer;
}

#serviceGrid .service-compare-controls [data-compare-view][aria-pressed="true"]{
  color:#fff;
  background:#17695c;
}

#serviceGrid button:focus-visible{
  outline:3px solid #cb9e49;
  outline-offset:3px;
}

#serviceGrid .service-card-body{
  padding:24px;
  display:flex;
  flex:1;
  flex-direction:column;
}

#serviceGrid .service-heading{
  gap:12px;
  align-items:flex-start;
}

#serviceGrid .service-icon{
  width:44px;
  height:44px;
  flex:0 0 44px;
  border-radius:13px;
  box-shadow:none;
}

#serviceGrid .service-heading-copy h3{
  margin:0 0 8px;
  color:#153b32;
  font-size:clamp(21px,1.7vw,26px);
  font-weight:750;
  line-height:1.25;
  letter-spacing:-.5px;
}

#serviceGrid .service-price{
  color:#17695c;
  font-size:15px;
  font-weight:750;
  line-height:1.5;
}

#serviceGrid .service-card-body>p{
  min-height:0;
  margin:16px 0 24px;
  color:#64766f;
  font-size:16px;
  line-height:1.7;
}

#serviceGrid .service-actions{
  margin-top:auto;
  padding-top:18px;
  gap:12px;
}

#serviceGrid .service-detail{
  min-height:44px;
  font-size:14px;
  color:#42655b;
}

#serviceGrid .service-book{
  min-height:44px;
  padding:11px 18px;
  font-size:14px;
  border-radius:12px;
}

@media(max-width:600px){
  #serviceGrid .service-card-body{
    padding:20px;
  }

  #serviceGrid .service-heading-copy h3{
    font-size:22px;
  }

  #serviceGrid .service-compare-controls button{
    min-height:44px;
  }
}

@media(prefers-reduced-motion:reduce){
  #serviceGrid .service-image img{
    transition:none;
  }
}

/* =========================================================
   SERVICE BEFORE / AFTER — CINEMATIC AUTO COMPARE
   - Vạch dọc quét một lần từ phải sang trái.
   - Quét chậm vừa phải, easing điện ảnh.
   - After giữ 5 giây rồi dissolve nhẹ về Before và lặp lại.
========================================================= */

#serviceGrid .service-image .service-before-image,
#serviceGrid .service-image .service-after-image,
#serviceGrid .service-image .service-wipe-image{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

#serviceGrid .service-image .service-before-image,
#serviceGrid .service-image .service-after-image{
  z-index:1;
  transition:none;
}

#serviceGrid .service-image[data-state="before"] .service-before-image,
#serviceGrid .service-image[data-state="after"] .service-after-image{
  opacity:1;
}

#serviceGrid .service-image[data-state="before"] .service-after-image,
#serviceGrid .service-image[data-state="after"] .service-before-image{
  opacity:0;
}

/* Lúc quay lại vòng mới chỉ dissolve nhẹ, không kéo ngược vạch. */
#serviceGrid .service-image.is-resetting .service-before-image,
#serviceGrid .service-image.is-resetting .service-after-image{
  transition:opacity .72s cubic-bezier(.22,.61,.36,1);
}

/* Lớp After phủ toàn khung, chỉ được hé lộ bằng clip-path.
   Nhờ vậy ảnh không bị co giãn khi vạch chạy. */
#serviceGrid .service-image .service-wipe-layer{
  position:absolute;
  inset:0;
  z-index:2;
  overflow:hidden;
  pointer-events:none;
  clip-path:inset(0 0 0 100%);
  -webkit-clip-path:inset(0 0 0 100%);
  will-change:clip-path;
}

#serviceGrid .service-image .service-wipe-image{
  z-index:1;
  transform:scale(1.006);
  filter:saturate(1.02) contrast(1.01);
}

/* Vạch compare kiểu điện ảnh. */
#serviceGrid .service-image .service-compare-divider{
  position:absolute;
  top:0;
  bottom:0;
  left:100%;
  z-index:4;
  width:3px;
  transform:translateX(-50%);
  opacity:0;
  pointer-events:none;
  background:linear-gradient(
    180deg,
    rgba(255,255,255,.55) 0%,
    rgba(255,255,255,.98) 14%,
    rgba(255,255,255,.98) 86%,
    rgba(255,255,255,.55) 100%
  );
  box-shadow:
    0 0 0 1px rgba(21,71,61,.12),
    0 0 18px rgba(255,255,255,.58),
    0 0 34px rgba(8,48,40,.12);
  will-change:left,opacity;
}

#serviceGrid .service-image .service-compare-divider::before{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width:34px;
  height:34px;
  transform:translate(-50%,-50%);
  border:1px solid rgba(255,255,255,.88);
  border-radius:999px;
  background:rgba(250,255,253,.94);
  box-shadow:
    0 10px 26px rgba(9,47,39,.22),
    inset 0 0 0 1px rgba(23,105,92,.18);
  backdrop-filter:blur(8px);
}

#serviceGrid .service-image .service-compare-divider::after{
  content:"‹  ›";
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-53%);
  white-space:nowrap;
  color:#17695c;
  font-size:13px;
  line-height:1;
  font-weight:900;
  letter-spacing:-1px;
}

/* Một lớp ánh sáng rất nhẹ chạy theo vạch để chuyển cảnh có chiều sâu hơn. */
#serviceGrid .service-image.is-wiping .service-compare-divider{
  box-shadow:
    0 0 0 1px rgba(21,71,61,.12),
    0 0 20px rgba(255,255,255,.72),
    0 0 44px rgba(19,104,88,.13);
}

#serviceGrid .service-compare-label,
#serviceGrid .service-compare-controls,
#serviceGrid .service-compare-state,
#serviceGrid [data-compare-pause]{
  display:none !important;
}

@media(max-width:600px){
  #serviceGrid .service-image .service-compare-divider::before{
    width:30px;
    height:30px;
  }

  #serviceGrid .service-image .service-compare-divider::after{
    font-size:12px;
  }
}

/* Người dùng yêu cầu autoplay; vẫn giữ chuyển động compare ngay cả khi OS bật Reduce Motion. */
@media(prefers-reduced-motion:reduce){
  #serviceGrid .service-image.is-resetting .service-before-image,
  #serviceGrid .service-image.is-resetting .service-after-image{
    transition-duration:.72s !important;
  }
}

/* =========================================================
   CUSTOMER SHOWCASE — MODERN COVER FLOW
   Premium editorial / cinematic gallery
========================================================= */

.customer-showcase-modern{
  position:relative;
  margin-top:clamp(44px,6vw,86px);
  padding:clamp(28px,4vw,54px) 0 8px;
  isolation:isolate;
}

.customer-showcase-modern[hidden]{
  display:none!important;
}

.customer-showcase-modern::before{
  content:"";
  position:absolute;
  left:50%;
  top:22%;
  width:min(980px,90vw);
  height:72%;
  transform:translateX(-50%);
  border-radius:50%;
  background:
    radial-gradient(circle at 35% 45%,rgba(59,170,147,.16),transparent 34%),
    radial-gradient(circle at 70% 48%,rgba(211,167,83,.12),transparent 30%),
    radial-gradient(circle at 50% 50%,rgba(255,255,255,.96),rgba(235,249,245,.42) 60%,transparent 76%);
  filter:blur(6px);
  pointer-events:none;
  z-index:-2;
}

.customer-showcase-topline{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:32px;
  max-width:1180px;
  margin:0 auto 20px;
}

.customer-showcase-heading{
  max-width:720px;
}

.customer-showcase-kicker{
  display:inline-flex;
  align-items:center;
  gap:9px;
  margin-bottom:12px;
  color:#177363;
  font-size:12px;
  font-weight:850;
  letter-spacing:.16em;
}

.customer-showcase-kicker::before{
  content:"";
  width:28px;
  height:1px;
  background:#177363;
}

.customer-showcase-heading h3{
  margin:0;
  max-width:660px;
  color:#103e34;
  font-size:clamp(30px,4.1vw,56px);
  line-height:1.04;
  letter-spacing:-.045em;
  font-weight:680;
}

.customer-showcase-heading h3 strong{
  display:block;
  color:#177363;
  font-weight:760;
}

.customer-showcase-heading p{
  max-width:560px;
  margin:16px 0 0;
  color:#6a7d77;
  font-size:15px;
  line-height:1.7;
}

.customer-showcase-count{
  display:flex;
  align-items:flex-end;
  gap:7px;
  padding:0 4px 10px 0;
  color:#8aa098;
  font-size:14px;
  font-variant-numeric:tabular-nums;
  white-space:nowrap;
}

.customer-showcase-count strong{
  color:#153f35;
  font-size:38px;
  line-height:.85;
  letter-spacing:-.06em;
  font-weight:720;
}

.customer-showcase-stage{
  position:relative;
  width:100%;
  height:clamp(430px,48vw,610px);
  margin:0 auto;
  overflow:hidden;
  touch-action:pan-y;
  cursor:grab;
  user-select:none;
}

.customer-showcase-stage.is-dragging{
  cursor:grabbing;
}

.customer-showcase-aura{
  position:absolute;
  left:50%;
  top:51%;
  width:min(500px,46vw);
  aspect-ratio:1;
  transform:translate(-50%,-50%);
  border-radius:50%;
  background:rgba(215,243,236,.56);
  filter:blur(54px);
  pointer-events:none;
}

.customer-showcase-deck{
  position:absolute;
  inset:0;
  perspective:1500px;
  transform-style:preserve-3d;
}

.customer-showcase-card{
  position:absolute;
  left:50%;
  top:50%;
  width:clamp(220px,27vw,350px);
  aspect-ratio:4 / 5;
  margin:0;
  border-radius:clamp(24px,2.2vw,34px);
  overflow:hidden;
  background:#dfece8;
  box-shadow:0 24px 60px rgba(15,65,54,.10);
  transform-origin:center center;
  transition:
    transform .82s cubic-bezier(.2,.8,.2,1),
    opacity .55s ease,
    filter .55s ease,
    box-shadow .55s ease;
  will-change:transform,opacity;
  cursor:pointer;
  outline:none;
}

.customer-showcase-card[data-position="0"]{
  z-index:8;
  transform:translate(-50%,-50%) translate3d(0,0,80px) scale(1.08) rotateY(0deg) rotateZ(0deg);
  opacity:1;
  filter:saturate(1.02) contrast(1.015);
  box-shadow:
    0 34px 86px rgba(11,62,51,.22),
    0 8px 24px rgba(11,62,51,.10);
}

.customer-showcase-card[data-position="-1"]{
  z-index:6;
  transform:translate(-50%,-50%) translate3d(-82%,22px,0) scale(.92) rotateY(10deg) rotateZ(-2.2deg);
  opacity:.88;
  filter:saturate(.88) brightness(.96);
}

.customer-showcase-card[data-position="1"]{
  z-index:6;
  transform:translate(-50%,-50%) translate3d(82%,22px,0) scale(.92) rotateY(-10deg) rotateZ(2.2deg);
  opacity:.88;
  filter:saturate(.88) brightness(.96);
}

.customer-showcase-card[data-position="-2"]{
  z-index:4;
  transform:translate(-50%,-50%) translate3d(-148%,46px,-60px) scale(.78) rotateY(16deg) rotateZ(-4deg);
  opacity:.38;
  filter:saturate(.72) brightness(.92) blur(.25px);
}

.customer-showcase-card[data-position="2"]{
  z-index:4;
  transform:translate(-50%,-50%) translate3d(148%,46px,-60px) scale(.78) rotateY(-16deg) rotateZ(4deg);
  opacity:.38;
  filter:saturate(.72) brightness(.92) blur(.25px);
}

.customer-showcase-card.is-hidden-card{
  z-index:1;
  opacity:0;
  pointer-events:none;
  transform:translate(-50%,-50%) scale(.68);
}

.customer-showcase-card:focus-visible{
  box-shadow:0 0 0 4px rgba(23,115,99,.18),0 34px 86px rgba(11,62,51,.22);
}

.customer-showcase-media{
  position:absolute;
  inset:0;
  overflow:hidden;
  border-radius:inherit;
}

.customer-showcase-media::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:
    linear-gradient(180deg,rgba(6,38,31,.02) 36%,rgba(6,38,31,.10) 55%,rgba(4,30,25,.82) 100%),
    linear-gradient(110deg,rgba(255,255,255,.16),transparent 28%);
  pointer-events:none;
}

.customer-showcase-media::after{
  content:"";
  position:absolute;
  inset:1px;
  z-index:3;
  border:1px solid rgba(255,255,255,.36);
  border-radius:calc(clamp(24px,2.2vw,34px) - 1px);
  pointer-events:none;
}

.customer-showcase-media img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  image-rendering:auto;
  backface-visibility:hidden;
  transform:scale(1.008);
  transition:transform 5.8s cubic-bezier(.2,.7,.2,1),filter .6s ease;
  pointer-events:none;
}

.customer-showcase-card.is-active .customer-showcase-media img{
  transform:scale(1.045);
}

.customer-showcase-card-glow{
  position:absolute;
  z-index:2;
  left:10%;
  right:10%;
  bottom:8%;
  height:30%;
  background:rgba(14,58,49,.20);
  filter:blur(32px);
  border-radius:50%;
  pointer-events:none;
}

.customer-showcase-no{
  position:absolute;
  top:18px;
  left:18px;
  z-index:4;
  display:flex;
  align-items:center;
  justify-content:center;
  min-width:42px;
  height:30px;
  padding:0 11px;
  border:1px solid rgba(255,255,255,.42);
  border-radius:999px;
  background:rgba(13,54,45,.30);
  color:#fff;
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  backdrop-filter:blur(12px);
}

.customer-showcase-card-copy{
  position:absolute;
  z-index:4;
  left:22px;
  right:22px;
  bottom:20px;
  color:#fff;
  transform:translateY(4px);
  transition:transform .55s ease;
}

.customer-showcase-card.is-active .customer-showcase-card-copy{
  transform:translateY(0);
}

.customer-showcase-service{
  display:inline-flex;
  max-width:100%;
  margin-bottom:8px;
  padding:6px 10px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.28);
  border-radius:999px;
  background:rgba(255,255,255,.12);
  color:rgba(255,255,255,.92);
  font-size:11px;
  line-height:1;
  font-weight:750;
  letter-spacing:.04em;
  text-overflow:ellipsis;
  white-space:nowrap;
  backdrop-filter:blur(10px);
}

.customer-showcase-card-copy strong{
  display:block;
  max-width:100%;
  overflow:hidden;
  font-size:clamp(20px,2.2vw,29px);
  line-height:1.12;
  letter-spacing:-.035em;
  text-overflow:ellipsis;
  white-space:nowrap;
  text-shadow:0 2px 14px rgba(0,0,0,.18);
}

.customer-showcase-mark{
  display:flex;
  align-items:center;
  gap:7px;
  margin-top:10px;
  color:rgba(255,255,255,.74);
  font-size:11px;
  font-weight:700;
}

.customer-showcase-mark svg{
  width:13px;
  height:13px;
}

.customer-showcase-arrow{
  position:absolute;
  top:50%;
  z-index:20;
  display:grid;
  place-items:center;
  width:52px;
  height:52px;
  padding:0;
  border:1px solid rgba(20,88,74,.10);
  border-radius:50%;
  background:rgba(255,255,255,.78);
  color:#155f52;
  box-shadow:0 16px 38px rgba(12,62,52,.12);
  backdrop-filter:blur(14px);
  transform:translateY(-50%);
  cursor:pointer;
  transition:transform .25s ease,background .25s ease,box-shadow .25s ease;
}

.customer-showcase-arrow:hover{
  background:#fff;
  transform:translateY(-50%);
  box-shadow:0 20px 46px rgba(12,62,52,.18);
}

.customer-showcase-arrow svg{
  width:20px;
  height:20px;
}

.customer-showcase-prev{
  left:max(2px,calc(50% - 520px));
}

.customer-showcase-next{
  right:max(2px,calc(50% - 520px));
}

.customer-showcase-bottom{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  max-width:680px;
  margin:4px auto 0;
}

.customer-showcase-progress{
  position:relative;
  flex:1;
  height:2px;
  overflow:hidden;
  border-radius:999px;
  background:rgba(23,105,92,.12);
}

.customer-showcase-progress span{
  position:absolute;
  inset:0;
  transform:scaleX(0);
  transform-origin:left center;
  border-radius:inherit;
  background:linear-gradient(90deg,#1d7d6d,#b8924d);
}

.customer-showcase-hint{
  display:inline-flex;
  align-items:center;
  gap:7px;
  color:#758a83;
  font-size:12px;
  font-weight:700;
  white-space:nowrap;
}

.customer-showcase-hint svg{
  width:15px;
  height:15px;
}

@media(max-width:1100px){
  .customer-showcase-card{
    width:clamp(220px,31vw,330px);
  }

  .customer-showcase-prev{left:12px}
  .customer-showcase-next{right:12px}
}

@media(max-width:760px){
  .customer-showcase-modern{
    margin-top:42px;
    padding-top:28px;
  }

  .customer-showcase-topline{
    align-items:flex-end;
    gap:14px;
    margin-bottom:10px;
  }

  .customer-showcase-heading h3{
    font-size:clamp(30px,9.5vw,42px);
  }

  .customer-showcase-heading p{
    margin-top:12px;
    font-size:14px;
    line-height:1.6;
  }

  .customer-showcase-count{
    padding-bottom:5px;
  }

  .customer-showcase-count strong{
    font-size:30px;
  }

  .customer-showcase-stage{
    height:min(128vw,560px);
    margin-top:4px;
  }

  .customer-showcase-card{
    width:min(72vw,330px);
    border-radius:28px;
  }

  .customer-showcase-card[data-position="0"]{
    transform:translate(-50%,-50%) translate3d(0,0,50px) scale(1);
  }

  .customer-showcase-card[data-position="-1"]{
    transform:translate(-50%,-50%) translate3d(-78%,24px,-20px) scale(.84) rotateY(6deg) rotateZ(-2deg);
    opacity:.58;
  }

  .customer-showcase-card[data-position="1"]{
    transform:translate(-50%,-50%) translate3d(78%,24px,-20px) scale(.84) rotateY(-6deg) rotateZ(2deg);
    opacity:.58;
  }

  .customer-showcase-card[data-position="-2"],
  .customer-showcase-card[data-position="2"]{
    opacity:0;
    pointer-events:none;
  }

  .customer-showcase-arrow{
    top:auto;
    bottom:18px;
    width:46px;
    height:46px;
  }

  .customer-showcase-prev{
    left:calc(50% - 58px);
  }

  .customer-showcase-next{
    right:calc(50% - 58px);
  }

  .customer-showcase-card-copy{
    left:18px;
    right:18px;
    bottom:18px;
  }

  .customer-showcase-bottom{
    width:92%;
    margin-top:2px;
  }

  .customer-showcase-hint{
    display:none;
  }
}

@media(max-width:440px){
  .customer-showcase-topline{
    display:block;
  }

  .customer-showcase-count{
    display:none;
  }

  .customer-showcase-stage{
    height:128vw;
    max-height:520px;
  }

  .customer-showcase-card{
    width:76vw;
  }

  .customer-showcase-card[data-position="-1"]{
    transform:translate(-50%,-50%) translate3d(-76%,18px,-20px) scale(.84) rotateZ(-2deg);
  }

  .customer-showcase-card[data-position="1"]{
    transform:translate(-50%,-50%) translate3d(76%,18px,-20px) scale(.84) rotateZ(2deg);
  }
}

@media(prefers-reduced-motion:reduce){
  .customer-showcase-card,
  .customer-showcase-media img,
  .customer-showcase-arrow{
    transition-duration:.25s!important;
  }
}

/* Branch contacts: desktop 2x2, mobile full-width 2x2. */
.header-branch-phones{display:grid;grid-template-columns:repeat(2,minmax(125px,1fr));gap:5px 16px}
.branch-contact-link{display:flex;flex-direction:column;gap:2px;text-decoration:none;color:var(--brand-dark,#125544);line-height:1.3}
.branch-contact-link span{font-size:11px;font-weight:600;color:#536b63}
.branch-contact-link strong{font-size:13px;white-space:nowrap;font-weight:800}
.branch-contact-link:hover strong{text-decoration:underline}
.branch-contact-link:focus-visible{outline:2px solid #148060;outline-offset:3px}
.branch-card p{white-space:normal;overflow:visible;display:block;-webkit-line-clamp:unset;line-height:1.65}
.footer-branch-phones{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin:12px 0}
#branchContactDialog{border:0;border-radius:20px;padding:28px;width:min(440px,calc(100% - 32px));color:#173e32;box-shadow:0 24px 80px #0003}
#branchContactDialog::backdrop{background:#082c2266}
#branchContactDialog h2{font-size:23px;margin:0 30px 8px 0}
#branchContactDialog p{margin:0 0 18px;color:#536b63}
.contact-close{position:absolute;right:12px;top:10px;border:0;background:transparent;font-size:30px;cursor:pointer}
.contact-options{display:grid;gap:10px}
.contact-options .branch-contact-link{padding:13px 16px;border:1px solid #d7e8e0;border-radius:12px;background:#f4faf7}
.contact-options .branch-contact-link span{font-size:14px}.contact-options .branch-contact-link strong{font-size:19px}
@media(max-width:1100px){.header-branch-phones{gap:4px 9px;grid-template-columns:repeat(2,minmax(112px,1fr))}.header-branch-phones strong{font-size:12px}}
@media(max-width:767px){.header-actions{flex-wrap:wrap}.header-branch-phones{display:grid!important;grid-template-columns:1fr 1fr;gap:5px 12px}.header-branch-phones span{font-size:10px}.header-branch-phones strong{font-size:12px}.footer-branch-phones{grid-template-columns:1fr 1fr}}
@media(max-width:767px){
 .site-header .navbar{height:auto;min-height:60px;display:grid;grid-template-columns:minmax(0,1fr) auto auto;gap:8px;padding-top:10px;padding-bottom:10px}
 .site-header .header-actions{display:contents}
 .site-header .brand{grid-column:1;grid-row:1}
 .site-header .mobile-header-booking{grid-column:2;grid-row:1}
 .site-header .mobile-menu-button{grid-column:3;grid-row:1}
 .site-header .header-branch-phones{grid-column:1/-1;grid-row:2;border-top:1px solid #e1eee7;padding-top:8px;gap:6px 16px}
 .site-header .header-branch-phones .branch-contact-link{flex-direction:row;justify-content:space-between;align-items:center}
 .site-header .header-branch-phones strong{font-size:12px}
}

/* Header booking focus: soft pulse and two outward ripples. */
.site-header .booking-ripple{position:relative;isolation:isolate;overflow:visible;animation:booking-glow 2.8s ease-in-out infinite}
.site-header .booking-ripple::before,.site-header .booking-ripple::after{content:"";position:absolute;inset:-2px;border:2px solid rgba(23,132,111,.55);border-radius:inherit;pointer-events:none;z-index:-1;animation:booking-wave 2.8s ease-out infinite}
.site-header .booking-ripple::after{animation-delay:1.4s}
@keyframes booking-wave{0%{transform:scale(1);opacity:.65}75%,100%{transform:scale(1.18,1.42);opacity:0}}
@keyframes booking-glow{0%,100%{box-shadow:0 5px 16px rgba(17,110,91,.22);filter:brightness(1)}50%{box-shadow:0 7px 25px rgba(17,130,105,.42);filter:brightness(1.14)}}
@media(max-width:767px){.site-header .navbar{height:60px;padding-top:0;padding-bottom:0}.site-header .booking-ripple{margin-right:3px}}
@media(prefers-reduced-motion:reduce){.site-header .booking-ripple,.site-header .booking-ripple::before,.site-header .booking-ripple::after{animation:none}.site-header .booking-ripple::before,.site-header .booking-ripple::after{display:none}}


/* ======================================================
   HERO SLIDESHOW - NỤ CƯỜI KHÁCH HÀNG
====================================================== */
.hero-slide-controls{
  display:flex;
  align-items:center;
  gap:10px;
  margin:18px 0 24px;
}
.hero-slide-arrow{
  width:36px;
  height:36px;
  border:1px solid rgba(23,105,92,.18);
  border-radius:999px;
  background:rgba(255,255,255,.78);
  color:var(--brand);
  display:grid;
  place-items:center;
  cursor:pointer;
  transition:transform .2s ease, background .2s ease, border-color .2s ease;
  box-shadow:0 8px 24px rgba(23,105,92,.08);
}
.hero-slide-arrow:hover{
  transform:none;
  background:#fff;
  border-color:rgba(23,105,92,.32);
}
.hero-slide-arrow svg{width:17px;height:17px}
.hero-slide-dots{display:flex;align-items:center;gap:7px}
.hero-slide-dot{
  width:9px;
  height:9px;
  padding:0;
  border:0;
  border-radius:999px;
  background:rgba(23,105,92,.22);
  cursor:pointer;
  transition:width .25s ease, background .25s ease, transform .25s ease;
}
.hero-slide-dot.active{
  width:28px;
  background:var(--brand);
}
.hero-content .hero-eyebrow,
.hero-content #heroTitle,
.hero-content #heroAccent,
.hero-content #heroDescription{
  transition:opacity .32s ease, transform .32s ease;
}
.hero-content.is-hero-changing .hero-eyebrow,
.hero-content.is-hero-changing #heroTitle,
.hero-content.is-hero-changing #heroAccent,
.hero-content.is-hero-changing #heroDescription{
  opacity:0;
  transform:translateY(9px);
}
.hero-image{
  transition:opacity .42s ease, transform .72s ease;
}
.hero-media.is-hero-changing .hero-image{
  opacity:.28;
  transform:scale(1.018);
}
@media (max-width:700px){
  .hero-slide-controls{margin:14px 0 19px}
  .hero-slide-arrow{width:34px;height:34px}
}


/* =========================================================
   HOVER STABILITY FIX - 2026-09-20
   Tránh vòng lặp hover/leave khi card tự translate lên khỏi con trỏ.
   Ảnh bên trong vẫn có thể zoom nhẹ mà không đổi hit-box của card.
   ========================================================= */
@media (hover:hover) and (pointer:fine){
  /* Không dịch chuyển hit-box của phần tử đang hover. */
  .service-card:hover,
  .doctor-card:hover,
  .review-card:hover{
    transform:none!important;
  }

  /* Giữ đúng transform nền của các card khuyến mãi, chỉ bỏ phần
     translate/scale phát sinh khi hover để không tạo vòng enter/leave. */
  .promotion-card.featured:hover{
    transform:perspective(1200px) translateZ(24px)!important;
  }

  .promotion-card:not(.featured):nth-child(2):hover{
    transform:perspective(1200px) rotateY(2.2deg) scale(.975)!important;
  }

  .promotion-card:not(.featured):nth-child(3):hover{
    transform:perspective(1200px) rotateY(-2.2deg) scale(.975)!important;
  }

  .promotion-card:not(.featured):not(:nth-child(2)):not(:nth-child(3)):hover{
    transform:none!important;
  }

  /* Chỉ zoom ảnh bên trong; hit-box bên ngoài đứng yên. */
  .promotion-card:hover .promotion-media img,
  .service-card:hover .service-image img,
  .doctor-card:hover img{
    transform:scale(1.025)!important;
  }
}

/* Trong CMS preview ưu tiên ổn định tuyệt đối khi rê chuột/chọn ảnh. */
body.cms-builder-preview .promotion-card:hover,
body.cms-builder-preview .service-card:hover,
body.cms-builder-preview .doctor-card:hover,
body.cms-builder-preview .review-card:hover,
body.cms-builder-preview .hero-image-shell:hover,
body.cms-builder-preview .campaign-slider:hover{
  transform:none!important;
  animation:none!important;
}


/* =========================================================
   CMS IMAGE HOVER HARDENING - v6
   Không cho ảnh/card dịch chuyển hoặc animation khi rê chuột trong Admin.
   Tránh hover/leave lặp liên tục gây nhấp nháy khi chọn ảnh.
   ========================================================= */
body.cms-builder-preview [data-cms-image],
body.cms-builder-preview [data-cms-image]:hover,
body.cms-builder-preview [data-cms-image]:focus,
body.cms-builder-preview [data-cms-image]:active{
  transform:none!important;
  animation:none!important;
  transition:none!important;
  filter:none!important;
}

body.cms-builder-preview .hero-image,
body.cms-builder-preview .promotion-media img,
body.cms-builder-preview .service-image img,
body.cms-builder-preview .doctor-photo img,
body.cms-builder-preview .review-card img,
body.cms-builder-preview .campaign-media img{
  transition:none!important;
  animation:none!important;
}


/* =========================================================
   INTERACTION STABILITY — FINAL
   Giữ hit-box của toàn bộ nút/điều khiển cố định để mouseup/click
   không bị mất khi hiệu ứng hover/animation đang chạy.
========================================================= */
[data-open-booking],
[data-book-service],
[data-book-branch],
.quick-branch-button,
.slider-button,
.spotlight-dot,
.hero-slide-arrow,
.hero-slide-dot,
.customer-showcase-arrow,
.price-tab,
.price-book,
.promotion-book{
  pointer-events:auto;
  touch-action:manipulation;
}

@media (hover:hover) and (pointer:fine){
  [data-open-booking]:hover,
  [data-book-service]:hover,
  [data-book-branch]:hover,
  .quick-branch-button:hover,
  .hero-slide-arrow:hover,
  .price-tab:hover,
  .price-book:hover,
  .promotion-book:hover{
    translate:none!important;
  }
}
