/* ============================================================
   BELMED — Pomorskie Centrum Terapeutyczne
   Design system
   ============================================================ */
/* cookie consent (RODO) */
.cookie-bar { position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 900;
  max-width: 760px; margin: 0 auto; background: #fff; border: 1px solid #DCE8F4;
  border-radius: 18px; box-shadow: 0 20px 50px rgba(1,45,99,.22); padding: 22px 26px;
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
  transform: translateY(140%); opacity: 0; transition: transform .45s cubic-bezier(.4,0,.2,1), opacity .45s; }
.cookie-bar.show { transform: translateY(0); opacity: 1; }
.cookie-bar .ck-ic { width: 46px; height: 46px; flex-shrink: 0; border-radius: 13px; display: grid; place-items: center;
  background: #EAF3FB; color: #0A9FE8; }
.cookie-bar .ck-ic svg { width: 24px; height: 24px; }
.cookie-bar .ck-text { flex: 1; min-width: 220px; font-size: 13.5px; line-height: 1.55; color: #3C5A7D;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif; }
.cookie-bar .ck-text b { color: #012D63; font-family: 'Sora', sans-serif; display: block; font-size: 15px; margin-bottom: 3px; }
.cookie-bar .ck-text a { color: #0B8FD2; font-weight: 600; text-decoration: underline; }
.cookie-bar .ck-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-bar .ck-btn { font-family: 'Sora', sans-serif; font-weight: 600; font-size: 14px; cursor: pointer;
  padding: 12px 20px; border-radius: 999px; border: 1px solid #DCE8F4; background: #fff; color: #012D63;
  transition: background .18s, color .18s, border-color .18s; white-space: nowrap; }
.cookie-bar .ck-btn:hover { background: #F4F8FC; }
.cookie-bar .ck-btn.primary { background: linear-gradient(135deg,#012D63,#0A9FE8); color: #fff; border-color: transparent; }
.cookie-bar .ck-btn.primary:hover { filter: brightness(1.06); background: linear-gradient(135deg,#012D63,#0A9FE8); }
@media (max-width: 640px) {
  .cookie-bar { left: 12px; right: 12px; bottom: 12px; padding: 18px 18px 20px; gap: 14px; }
  .cookie-bar .ck-ic { display: none; }
  .cookie-bar .ck-actions { width: 100%; }
  .cookie-bar .ck-btn { flex: 1; text-align: center; }
}
:root {
  --navy:      #012D63;
  --navy-800:  #02397B;
  --navy-700:  #0A4A93;
  --blue:      #0A9FE8;
  --blue-600:  #0B8FD2;
  --pink:      #FF66C4;
  --pink-600:  #ED3FAE;
  --pink-soft: #FFF0F9;
  --bg:        #FFFFFF;
  --bg-soft:   #F4F8FC;
  --bg-soft-2: #EAF3FB;
  --text:      #143A66;
  --heading:   #012D63;
  --muted:     #5F7A99;
  --line:      #E0EBF6;
  --line-2:    #D5E4F2;

  --r-sm: 12px;
  --r:    16px;
  --r-lg: 24px;
  --r-xl: 32px;

  --shadow-sm: 0 2px 8px rgba(1,45,99,0.06);
  --shadow:    0 14px 34px rgba(1,45,99,0.09);
  --shadow-lg: 0 28px 60px rgba(1,45,99,0.14);
  --shadow-blue: 0 18px 38px rgba(10,159,232,0.28);

  --grad: linear-gradient(135deg, #012D63 0%, #034089 48%, #0A78C4 100%);
  --grad-soft: linear-gradient(135deg, #0A9FE8 0%, #0B6FC0 100%);

  --maxw: 1200px;
  --gutter: 40px;
  --ease: cubic-bezier(.22,.61,.36,1);

  --font-head: 'Sora', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--heading);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
section { position: relative; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head);
  font-size: 13px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-600);
}
.eyebrow::before {
  content: ""; width: 22px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--blue), var(--pink));
}
.section-head { max-width: 620px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head h2 { font-size: clamp(30px, 3.4vw, 44px); margin: 16px 0 14px; }
.section-head p { font-size: 18px; color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head);
  font-weight: 600; font-size: 16px;
  padding: 15px 26px; border-radius: 999px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease),
              background .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--blue); color: #fff;
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover { transform: translateY(-2px); background: var(--blue-600); box-shadow: 0 22px 44px rgba(10,159,232,.36); }
.btn-ghost {
  background: #fff; color: var(--navy);
  box-shadow: inset 0 0 0 1.5px var(--line-2);
}
.btn-ghost:hover { transform: translateY(-2px); box-shadow: inset 0 0 0 1.5px var(--blue), var(--shadow); color: var(--blue-600); }
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(0,0,0,.18); }
.btn-lg { padding: 17px 32px; font-size: 17px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.site-header.scrolled {
  box-shadow: 0 6px 24px rgba(1,45,99,.07);
  border-color: var(--line);
}
.nav {
  display: flex; align-items: center; gap: 28px;
  height: 78px;
}
.brand {
  display: flex; align-items: center; gap: 11px;
  font-family: var(--font-head); font-weight: 800;
  font-size: 23px; letter-spacing: -.01em; color: var(--navy);
}
.brand .mark {
  width: 38px; height: 38px; border-radius: 11px;
  background: var(--grad);
  display: grid; place-items: center; flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.brand .mark svg { width: 21px; height: 21px; }
.brand b { color: var(--blue); font-weight: 800; }
.brand-img { height: 38px; width: auto; display: block; }
.ph { overflow: hidden; }
.ph .ph-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.footer-logo { display: inline-flex; margin-bottom: 18px; }
.footer-logo img { height: 46px; width: auto; display: block; }
.footer .brand-line { font-family: var(--font-head); font-weight: 600; color: #cfe0f2; font-size: 14px; letter-spacing: .02em; }
.brand small {
  display:block; font-family: var(--font-body); font-weight: 500;
  font-size: 10.5px; letter-spacing: .14em; color: var(--muted);
  text-transform: uppercase; margin-top: 1px;
}
.brand sup { font-size: .5em; font-weight: 700; color: var(--pink); top: -.7em; }

.nav-links {
  display: flex; align-items: center; gap: 2px;
  margin-left: auto;
}
.nav-links a {
  font-family: var(--font-head); font-weight: 500; font-size: 14.5px;
  color: var(--text); padding: 9px 12px; border-radius: 999px;
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--navy); background: var(--bg-soft); }
.nav-links a.active { color: var(--blue-600); background: var(--bg-soft-2); font-weight: 600; }
.nav-cta { margin-left: 10px; }
.nav-cta .btn { padding: 12px 22px; font-size: 15px; }

.burger {
  display: none; width: 46px; height: 46px; margin-left: auto;
  border-radius: 12px; background: var(--bg-soft);
  position: relative; flex-shrink: 0;
}
.burger span {
  position: absolute; left: 13px; right: 13px; height: 2px; border-radius: 2px;
  background: var(--navy); transition: transform .3s var(--ease), opacity .2s;
}
.burger span:nth-child(1) { top: 17px; }
.burger span:nth-child(2) { top: 23px; }
.burger span:nth-child(3) { top: 29px; }
.burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed; left: 0; right: 0; top: 78px; z-index: 55;
  background: #fff; border-bottom: 1px solid var(--line);
  padding: 14px var(--gutter) 26px;
  transform: translateY(-12px); opacity: 0; pointer-events: none;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
  box-shadow: var(--shadow);
}
.mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-menu { max-height: calc(100vh - 78px); overflow-y: auto; }
.mobile-menu a {
  display: block; font-family: var(--font-head); font-weight: 500;
  font-size: 19px; color: var(--navy); padding: 14px 6px;
  border-bottom: 1px solid var(--line);
}
.mobile-menu .btn { width: 100%; margin-top: 18px; }
/* mobile Oferta accordion */
.mm-acc { border-bottom: 1px solid var(--line); }
.mm-acc > summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-head); font-weight: 500; font-size: 19px; color: var(--navy); padding: 14px 6px; }
.mm-acc > summary::-webkit-details-marker { display: none; }
.mm-acc > summary .chev { width: 20px; height: 20px; transition: transform .25s var(--ease); color: var(--blue-600); }
.mm-acc[open] > summary .chev { transform: rotate(180deg); }
.mm-acc .mm-sub { padding: 4px 6px 14px; }
.mm-acc .mm-sub h5 { font-family: var(--font-head); font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue-600); margin: 12px 0 4px; }
.mm-acc .mm-sub a { font-size: 16px; font-weight: 500; color: var(--text); padding: 9px 12px; border: none;
  border-radius: 10px; background: var(--bg-soft); margin-bottom: 5px; }

/* ============================================================
   MEGA MENU (desktop dropdown)
   ============================================================ */
.nav-links .nav-item { position: relative; display: flex; align-items: center; }
.nav-links .nav-item > a { display: inline-flex; align-items: center; gap: 5px; }
.nav-links .caret { width: 14px; height: 14px; transition: transform .22s var(--ease); }
.nav-item:hover .caret { transform: rotate(180deg); }
.mega {
  position: absolute; top: 100%; left: 50%; margin-top: 12px;
  transform: translateX(-50%) translateY(8px);
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); padding: 20px; width: 540px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px 22px;
  opacity: 0; visibility: hidden; transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
  z-index: 80;
}
.mega::before { content: ""; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }
.nav-item:hover .mega { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.mega-col h5 { font-family: var(--font-head); font-size: 11.5px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--blue-600); margin: 4px 0 8px; padding: 0 12px;
  display: flex; align-items: center; gap: 7px; }
.mega-col h5 svg { width: 15px; height: 15px; }
.mega a { display: block; padding: 8px 12px; border-radius: 10px; font-family: var(--font-head);
  font-weight: 500; font-size: 13.5px; color: var(--text); transition: background .15s, color .15s; }
.mega a:hover { background: var(--bg-soft); color: var(--blue-600); }
.mega .mega-foot { grid-column: 1 / -1; border-top: 1px solid var(--line); margin-top: 8px; padding-top: 10px; }
.mega .mega-foot a { display: flex; align-items: center; gap: 9px; color: var(--navy); font-weight: 600; font-size: 14px; }
.mega .mega-foot a svg { width: 18px; height: 18px; color: var(--blue-600); }
.mega .mega-foot a:hover { background: var(--bg-soft-2); }

/* sub-page offer grid / detail helpers */
.offer-cat { padding: 80px 0 20px; }
.offer-cat:last-of-type { padding-bottom: 70px; }
.detail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.detail-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px 26px;
  box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.detail-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.detail-card .ic { width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center;
  background: var(--bg-soft-2); color: var(--blue-600); margin-bottom: 18px; }
.detail-card .ic svg { width: 26px; height: 26px; }
.detail-card h3 { font-size: 19px; margin-bottom: 9px; }
.detail-card p { color: var(--muted); font-size: 14.5px; }
.price-teaser { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  background: var(--bg-soft-2); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 26px 30px; margin-top: 8px; }
.price-teaser .pt-left b { font-family: var(--font-head); font-size: 18px; color: var(--navy); display: block; }
.price-teaser .pt-left span { color: var(--muted); font-size: 14.5px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { background: var(--bg-soft); overflow: hidden; }
.hero .wrap { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
  padding-top: 76px; padding-bottom: 86px; }
.hero-blob {
  position: absolute; border-radius: 50%; filter: blur(8px); opacity: .5; pointer-events: none;
}
.hero-blob.a { width: 520px; height: 520px; right: -120px; top: -160px;
  background: radial-gradient(circle at 30% 30%, rgba(10,159,232,.30), transparent 62%); }
.hero-blob.b { width: 420px; height: 420px; left: -180px; bottom: -200px;
  background: radial-gradient(circle at 50% 50%, rgba(1,45,99,.14), transparent 64%); }

.hero h1 { font-size: clamp(36px, 5vw, 60px); margin-bottom: 22px; }
.hero h1 .hl { color: var(--pink-600); }
.hero h1 .hl::after { content:""; display:block; height: 10px; margin-top: -12px;
  background: linear-gradient(90deg, rgba(255,102,196,.30), rgba(255,102,196,0));
  border-radius: 6px; }
.hero .lead { font-size: 20px; color: #3A5C82; max-width: 520px; margin-bottom: 34px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta { display: flex; align-items: center; gap: 14px; margin-top: 30px;
  color: var(--muted); font-size: 14.5px; }
.hero-meta .avatars { display: flex; }
.hero-meta .avatars span {
  width: 34px; height: 34px; border-radius: 50%; border: 2.5px solid var(--bg-soft);
  background: var(--grad-soft); margin-left: -10px;
}
.hero-meta .avatars span:first-child { margin-left: 0; }

/* hero visual */
.hero-visual { position: relative; }
.hero-shape {
  position: absolute; inset: -6% -4% -10% 6%;
  background: var(--grad); border-radius: 42% 58% 56% 44% / 52% 44% 56% 48%;
  opacity: .12;
}
.hero-card {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-lg); background: #fff;
}
.hero-card .ph { height: 460px; border-radius: 0; }
.hero-float {
  position: absolute; background: #fff; border-radius: var(--r);
  box-shadow: var(--shadow); padding: 16px 18px; display: flex; align-items: center; gap: 13px;
}
.hero-float .ic { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: var(--bg-soft); color: var(--blue-600); flex-shrink: 0; }
.hero-float .ic svg { width: 22px; height: 22px; }
.hero-float b { font-family: var(--font-head); color: var(--navy); font-size: 15px; display: block; }
.hero-float small { color: var(--muted); font-size: 12.5px; }
.hero-float.one { bottom: 26px; left: -34px; }
.hero-float.two { top: 30px; right: -26px; }

/* ---------- Placeholder ---------- */
.ph {
  position: relative; width: 100%; border-radius: var(--r);
  background:
    repeating-linear-gradient(135deg, #DCEAF7 0 12px, #E7F1FA 12px 24px);
  display: grid; place-items: center; overflow: hidden;
}
.ph::after {
  content: attr(data-label);
  font-family: 'Sora', monospace; font-size: 12px; letter-spacing: .08em;
  text-transform: uppercase; color: #7796B5;
  background: rgba(255,255,255,.75); padding: 7px 13px; border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust { margin-top: -1px; }
.trust .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px;
  padding-top: 56px; padding-bottom: 56px; }
.stat { text-align: left; padding-left: 22px; border-left: 2px solid var(--line-2); }
.stat .num { font-family: var(--font-head); font-weight: 800; font-size: 42px;
  color: var(--navy); line-height: 1; letter-spacing: -.03em; }
.stat .num b { color: var(--blue); }
.stat .lbl { color: var(--muted); font-size: 15px; margin-top: 8px; }

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--bg-soft); padding: 96px 0; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: #fff; border-radius: var(--r-lg); padding: 30px 28px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  position: relative; overflow: hidden;
}
.card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 100%;
  background: var(--grad-soft); transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--line-2); }
.card:hover::before { transform: scaleX(1); }
.card .ic {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
  background: var(--bg-soft-2); color: var(--blue-600); margin-bottom: 20px;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.card:hover .ic { background: var(--grad-soft); color: #fff; }
.card .ic svg { width: 27px; height: 27px; }
.card h3 { font-size: 20px; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 15.5px; }
.card .tag { display:inline-block; margin-top:16px; font-family: var(--font-head);
  font-size: 12.5px; font-weight: 600; color: var(--blue-600);
  background: var(--bg-soft-2); padding: 5px 11px; border-radius: 999px; }

/* ============================================================
   FOR WHOM
   ============================================================ */
.forwhom { padding: 96px 0; }
.fw-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.fw {
  border-radius: var(--r-xl); padding: 40px; position: relative; overflow: hidden;
  border: 1px solid var(--line); background: #fff;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.fw:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.fw.kids { background: var(--bg-soft); }
.fw.adults { background: linear-gradient(160deg, #F3F9FE, #EAF3FB); }
.fw .fw-ic { width: 60px; height: 60px; border-radius: 18px; display:grid; place-items:center;
  background: #fff; color: var(--blue-600); box-shadow: var(--shadow-sm); margin-bottom: 22px; }
.fw .fw-ic svg { width: 30px; height: 30px; }
.fw h3 { font-size: 26px; margin-bottom: 8px; }
.fw > p { color: var(--muted); margin-bottom: 22px; font-size: 16px; }
.fw ul { display: grid; gap: 12px; }
.fw li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; color: var(--text); }
.fw li svg { width: 21px; height: 21px; color: var(--blue); flex-shrink: 0; margin-top: 1px; }

/* ============================================================
   PROCESS
   ============================================================ */
.process { background: var(--navy); color: #fff; padding: 100px 0; overflow: hidden; }
.process::before {
  content:""; position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(10,159,232,.22), transparent 60%);
  top: -200px; right: -150px;
}
.process .eyebrow { color: #6FC8F2; }
.process .eyebrow::before { background: var(--blue); }
.process h2 { color: #fff; }
.process .section-head p { color: #AFC6E0; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.steps::before {
  content: ""; position: absolute; top: 28px; left: 7%; right: 7%; height: 2px;
  background: linear-gradient(90deg, rgba(255,255,255,.06), rgba(10,159,232,.6), rgba(255,255,255,.06));
}
.step { position: relative; }
.step .n {
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: 21px; color: #fff;
  background: var(--navy); border: 2px solid rgba(255,255,255,.18); margin-bottom: 22px;
  position: relative; z-index: 1;
}
.step.active .n, .step:hover .n { background: var(--grad-soft); border-color: transparent;
  box-shadow: var(--shadow-blue); }
.step h3 { color: #fff; font-size: 19px; margin-bottom: 9px; }
.step p { color: #A9C2DD; font-size: 15px; }

/* ============================================================
   TEAM
   ============================================================ */
.team { padding: 96px 0; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.member { background: #fff; border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.member:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.member .ph { height: 300px; border-radius: 0; }
.member .info { padding: 24px 26px 28px; }
.member h3 { font-size: 21px; margin-bottom: 3px; }
.member .role { color: var(--blue-600); font-family: var(--font-head); font-weight: 600;
  font-size: 14.5px; margin-bottom: 14px; }
.member .specs { display: flex; flex-wrap: wrap; gap: 7px; }
.member .specs span { font-size: 12.5px; color: var(--muted); background: var(--bg-soft);
  padding: 5px 11px; border-radius: 999px; }
.member .specs .sp-aud { color: var(--navy); background: var(--bg-soft-2); font-weight: 600; }
.member .specs .sp-en { display: inline-flex; align-items: center; gap: 5px;
  color: var(--blue-600); background: var(--bg-soft-2); font-weight: 600; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing { background: var(--bg-soft); padding: 96px 0; overflow: hidden; }
.price-block { margin-top: 14px; }
.price-block + .price-block { margin-top: 56px; }
.price-block-head { display: flex; align-items: flex-end; justify-content: space-between;
  gap: 20px; margin-bottom: 26px; flex-wrap: wrap; }
.price-block-head h3 { font-size: 26px; letter-spacing: -.02em; }
.price-block-head .ph-eyebrow { font-family: var(--font-head); font-weight: 600;
  font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--blue-600);
  display: block; margin-bottom: 8px; }
.price-block-head p { color: var(--muted); font-size: 15px; max-width: 440px; }

/* diagnosis cards */
.price-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.price-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px 28px 28px; display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--line-2); }
.price-card .pc-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.price-card .pc-name { font-family: var(--font-head); font-weight: 700; color: var(--navy);
  font-size: 19px; letter-spacing: -.01em; }
.price-card .pc-sub { color: var(--blue-600); font-family: var(--font-head); font-weight: 600;
  font-size: 13px; margin-top: 3px; }
.price-card .pc-price { display: flex; align-items: baseline; gap: 8px; margin: 18px 0 16px; }
.price-card .pc-price .amt { font-family: var(--font-head); font-weight: 800; font-size: 38px;
  color: var(--navy); line-height: 1; letter-spacing: -.03em; }
.price-card .pc-price .cur { font-family: var(--font-head); font-weight: 700; font-size: 18px; color: var(--navy); }
.price-card .pc-price .was { font-size: 16px; color: var(--muted); text-decoration: line-through; font-weight: 600; }
.price-card ul { display: grid; gap: 10px; margin-top: auto; padding-top: 4px; }
.price-card li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--text); line-height: 1.45; }
.price-card li svg { width: 17px; height: 17px; color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.price-card .pc-note { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line);
  font-size: 13px; line-height: 1.55; color: var(--muted); }
.price-card .pc-badge { font-family: var(--font-head); font-weight: 600; font-size: 11.5px;
  letter-spacing: .04em; padding: 6px 11px; border-radius: 999px; white-space: nowrap;
  background: var(--bg-soft-2); color: var(--blue-600); }

/* featured (ADOS-2) */
.price-card.featured { background: var(--grad); border-color: transparent; color: #fff; }
.price-card.featured .pc-name, .price-card.featured .pc-price .amt, .price-card.featured .pc-price .cur { color: #fff; }
.price-card.featured .pc-sub { color: #7FD0F5; }
.price-card.featured .pc-price .was { color: #9FC2E2; }
.price-card.featured li { color: #DCEAF7; }
.price-card.featured li svg { color: #6FC8F2; }
.price-card.featured .pc-note { color: #C7DEF2; border-top-color: rgba(255,255,255,.22); }
.price-card.featured .pc-badge { background: var(--pink); color: #fff; box-shadow: 0 10px 24px rgba(255,102,196,.40); }
.price-card.featured::after { content: ""; position: absolute; width: 280px; height: 280px;
  border-radius: 50%; right: -120px; top: -130px;
  background: radial-gradient(circle, rgba(10,159,232,.4), transparent 62%); pointer-events: none; }
.price-card.featured > * { position: relative; z-index: 1; }

/* therapy price lists */
.price-lists { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.price-list {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 28px 28px 22px; box-shadow: var(--shadow-sm);
}
.price-list.span2 { grid-column: span 2; }
.price-list .pl-head { display: flex; align-items: center; gap: 13px; margin-bottom: 8px; }
.price-list .pl-head .ic { width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center;
  background: var(--bg-soft-2); color: var(--blue-600); flex-shrink: 0; }
.price-list .pl-head .ic svg { width: 23px; height: 23px; }
.price-list .pl-head h4 { font-family: var(--font-head); font-weight: 700; color: var(--navy);
  font-size: 18px; letter-spacing: -.01em; }
.price-list.span2 .pl-rows { columns: 2; column-gap: 44px; }
.prow { display: flex; align-items: baseline; gap: 10px; padding: 13px 0;
  border-bottom: 1px dashed var(--line-2); break-inside: avoid; }
.prow:last-child { border-bottom: none; }
.prow .pr-name { color: var(--text); font-size: 15px; }
.prow .pr-name b { font-weight: 600; color: var(--navy); }
.prow .pr-name span { color: var(--muted); font-size: 13.5px; }
.prow .dots { flex: 1; border-bottom: 1.5px dotted var(--line-2); transform: translateY(-4px); min-width: 16px; }
.prow .pr-price { font-family: var(--font-head); font-weight: 700; color: var(--navy);
  font-size: 16px; white-space: nowrap; }
.prow .pr-price b { color: var(--blue-600); }

/* note strip */
.price-note { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 30px; }
.price-note .pn { background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 18px 20px; }
.price-note .pn .ic { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center;
  background: var(--bg-soft-2); color: var(--blue-600); margin-bottom: 12px; }
.price-note .pn .ic svg { width: 19px; height: 19px; }
.price-note .pn b { display: block; font-family: var(--font-head); font-size: 14.5px; color: var(--navy); margin-bottom: 3px; }
.price-note .pn small { color: var(--muted); font-size: 13px; line-height: 1.45; }
.price-foot { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line-2); }
.price-foot small { color: var(--muted); font-size: 13.5px; }
.price-foot .btn { padding: 13px 24px; font-size: 15px; }

/* ============================================================
   CTA
   ============================================================ */
.cta { padding: 40px 0 100px; }
.cta-inner {
  background: var(--grad); border-radius: var(--r-xl); padding: 64px 64px;
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: center;
  position: relative; overflow: hidden; box-shadow: var(--shadow-lg);
}
.cta-inner::before {
  content:""; position:absolute; width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(10,159,232,.45), transparent 62%);
  right: -120px; top: -160px;
}
.cta-inner::after {
  content:""; position:absolute; width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.10), transparent 62%);
  left: -100px; bottom: -160px;
}
.cta h2 { color: #fff; font-size: clamp(28px, 3.4vw, 40px); margin-bottom: 14px; position: relative; }
.cta p { color: #C8DDF1; font-size: 18px; max-width: 440px; position: relative; }
.cta-right { position: relative; display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.cta-phone {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--r); padding: 16px 22px; width: 100%;
  backdrop-filter: blur(6px);
}
.cta-phone .ic { width: 46px; height: 46px; border-radius: 13px; background: rgba(255,255,255,.14);
  display: grid; place-items: center; color: #fff; flex-shrink: 0; }
.cta-phone .ic svg { width: 22px; height: 22px; }
.cta-phone small { color: #A9C8E6; font-size: 13px; display: block; }
.cta-phone b { color: #fff; font-family: var(--font-head); font-size: 22px; letter-spacing: -.01em; }
.cta-right .btn { width: 100%; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy); color: #B9CFE6; padding: 72px 0 28px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.10); }
.footer .brand { color: #fff; margin-bottom: 18px; }
.footer .brand small { color: #7E9CBC; }
.footer-about { color: #9FBAD6; font-size: 15px; max-width: 280px; }
.footer h4 { color: #fff; font-family: var(--font-head); font-size: 15px; letter-spacing: .04em;
  text-transform: uppercase; margin-bottom: 18px; }
.footer ul { display: grid; gap: 11px; }
.footer-links a { color: #A9C2DD; font-size: 15px; transition: color .2s; }
.footer-links a:hover { color: var(--blue); }
.footer-contact li { display: flex; gap: 11px; font-size: 15px; color: #A9C2DD; align-items: flex-start; }
.footer-contact svg { width: 18px; height: 18px; color: var(--blue); flex-shrink: 0; margin-top: 3px; }
.footer-social { display: flex; gap: 11px; margin-top: 20px; }
.footer-social a { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.07);
  display: grid; place-items: center; color: #fff; transition: background .25s, transform .25s; }
.footer-social a:hover { background: var(--blue); transform: translateY(-3px); }
.footer-social svg { width: 19px; height: 19px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center;
  padding-top: 26px; font-size: 13.5px; color: #7E9CBC; flex-wrap: wrap; gap: 10px; }

/* ============================================================
   BOOKING MODAL
   ============================================================ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200; display: none;
  background: rgba(1,21,46,.55); backdrop-filter: blur(6px);
  padding: 24px; overflow-y: auto;
}
.modal-overlay.open { display: grid; place-items: center; animation: fade .25s var(--ease); }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: #fff; border-radius: var(--r-xl); width: 100%; max-width: 520px;
  box-shadow: var(--shadow-lg); overflow: hidden; position: relative;
  animation: pop .3s var(--ease);
}
@keyframes pop { from { transform: translateY(16px) scale(.98); opacity: 0; } to { transform: none; opacity: 1; } }
.modal-head { background: var(--grad); padding: 28px 32px; color: #fff; position: relative; overflow: hidden; }
.modal-head::before { content:""; position:absolute; width:240px; height:240px; border-radius:50%;
  background: radial-gradient(circle, rgba(10,159,232,.4), transparent 60%); right:-80px; top:-90px; }
.modal-head h3 { color: #fff; font-size: 23px; margin-bottom: 5px; position: relative; }
.modal-head p { color: #C8DDF1; font-size: 14.5px; position: relative; }
.modal-close { position: absolute; top: 18px; right: 18px; width: 38px; height: 38px;
  border-radius: 11px; background: rgba(255,255,255,.14); color: #fff; display: grid; place-items: center;
  transition: background .2s; z-index: 2; }
.modal-close:hover { background: rgba(255,255,255,.26); }
.modal-close svg { width: 18px; height: 18px; }
.modal-body { padding: 28px 32px 32px; }
.field { margin-bottom: 17px; }
.field.row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label { display: block; font-family: var(--font-head); font-weight: 500; font-size: 14px;
  color: var(--navy); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 15px; color: var(--text);
  padding: 13px 15px; border-radius: var(--r-sm); border: 1.5px solid var(--line-2);
  background: var(--bg-soft); transition: border-color .2s, box-shadow .2s, background .2s;
}
.field textarea { resize: vertical; min-height: 84px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); background: #fff;
  box-shadow: 0 0 0 4px rgba(10,159,232,.12);
}
.field.invalid input, .field.invalid select { border-color: #E5484D; background: #FEF2F2; }
.field .err { display: none; color: #D33A3F; font-size: 12.5px; margin-top: 5px; font-weight: 500; }
.field.invalid .err { display: block; }
.modal-body .btn { width: 100%; margin-top: 8px; }
.modal-note { text-align: center; font-size: 12.5px; color: var(--muted); margin-top: 14px; }
.modal-success { padding: 48px 36px; text-align: center; display: none; }
.modal-success.show { display: block; animation: fade .35s var(--ease); }
.modal-success .check { width: 78px; height: 78px; border-radius: 50%; margin: 0 auto 22px;
  background: var(--grad-soft); display: grid; place-items: center; box-shadow: var(--shadow-blue); }
.modal-success .check svg { width: 38px; height: 38px; color: #fff; }
.modal-success h3 { font-size: 25px; margin-bottom: 10px; }
.modal-success p { color: var(--muted); font-size: 16px; max-width: 360px; margin: 0 auto 24px; }

/* .reveal kept as a hook but never hides content (animations are frozen in capture/export contexts) */

/* ============================================================
   PAGE HERO (sub-pages)
   ============================================================ */
.page-hero { background: var(--grad); color: #fff; padding: 56px 0 64px; overflow: hidden; }
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero::before { content:""; position: absolute; width: 520px; height: 520px; border-radius: 50%;
  top: -240px; right: -120px; background: radial-gradient(circle, rgba(10,159,232,.34), transparent 62%); }
.page-hero::after { content:""; position: absolute; width: 360px; height: 360px; border-radius: 50%;
  bottom: -220px; left: -90px; background: radial-gradient(circle, rgba(10,159,232,.18), transparent 64%); }
.crumbs { display: flex; align-items: center; gap: 9px; font-family: var(--font-head);
  font-weight: 500; font-size: 13.5px; color: #9FC9EC; margin-bottom: 16px; }
.crumbs a { transition: color .2s; }
.crumbs a:hover { color: #fff; }
.crumbs svg { width: 14px; height: 14px; opacity: .6; }
.crumbs .current { color: #fff; }
.page-hero h1 { color: #fff; font-size: clamp(34px, 4.6vw, 52px); margin-bottom: 14px; letter-spacing: -.03em; }
.page-hero p { color: #CFE3F5; font-size: 19px; line-height: 1.55; max-width: 640px; }
.page-hero .ph-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.page-hero .ph-tags span { display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 500; font-size: 13.5px; color: #DCEAF7;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  padding: 8px 15px; border-radius: 999px; }
.page-hero .ph-tags svg { width: 15px; height: 15px; color: #6FC8F2; }
.page-hero .ph-tags span.tag-price { background: var(--blue); border-color: transparent;
  color: #fff; font-weight: 700; }
.page-hero .ph-tags span.tag-price svg { color: #fff; }

/* intro/lead block on sub-pages */
.lead-block { padding: 80px 0 24px; }
.lead-block .wrap { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.lead-block .lb-text h2 { font-size: clamp(28px, 3vw, 38px); margin-bottom: 18px; }
.lead-block .lb-text p { font-size: 17.5px; color: var(--muted); margin-bottom: 16px; }
.lead-block .lb-visual .ph { height: 360px; border-radius: var(--r-lg); }
.cert-frame { margin: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow); padding: 18px; display: flex; flex-direction: column; gap: 14px; }
.cert-frame img { max-width: 100%; max-height: 580px; width: auto; height: auto; margin: 0 auto;
  display: block; border-radius: 8px; border: 1px solid var(--line); }
.cert-frame figcaption { display: flex; align-items: center; gap: 9px; font-family: var(--font-head);
  font-weight: 600; font-size: 14px; color: var(--navy); padding: 0 4px 4px; }
.cert-frame .cert-ic { width: 28px; height: 28px; border-radius: 8px; display: grid; place-items: center;
  background: var(--bg-soft-2); color: var(--blue-600); flex-shrink: 0; }
.cert-frame .cert-ic svg { width: 17px; height: 17px; }

/* two certificates side by side */
.cert-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.cert-duo .cert-name { margin-top: 10px; font-family: var(--font-head); font-weight: 700;
  font-size: 15px; color: var(--navy); text-align: center; }
@media (max-width: 760px) { .cert-duo { grid-template-columns: 1fr; gap: 26px; } }

/* method checklist section */
.method-sec { padding: 80px 0; }
.method-sec .wrap { max-width: 1000px; }
.method-sec .section-head { margin-bottom: 34px; }
.checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 34px; list-style: none; padding: 0; margin: 0; }
.checklist li { display: flex; gap: 13px; align-items: flex-start; font-size: 16px; line-height: 1.5; color: var(--text); }
.checklist li .ck { width: 26px; height: 26px; border-radius: 8px; background: var(--bg-soft-2);
  color: var(--blue-600); display: grid; place-items: center; flex-shrink: 0; margin-top: 1px; }
.checklist li .ck svg { width: 15px; height: 15px; }
.method-note { display: flex; align-items: center; gap: 16px; margin-top: 36px;
  background: var(--grad); color: #fff; border-radius: var(--r-lg); padding: 22px 28px; box-shadow: var(--shadow); }
.method-note .mn-ic { width: 46px; height: 46px; border-radius: 13px; flex-shrink: 0; display: grid; place-items: center;
  background: rgba(255,255,255,.16); color: #fff; }
.method-note .mn-ic svg { width: 24px; height: 24px; }
.method-note b { font-family: var(--font-head); font-size: 17px; display: block; margin-bottom: 2px; }
.method-note span { font-size: 14.5px; color: #DCEAF7; line-height: 1.45; }

/* observation domains grid (4) */
.obs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 900px) { .obs-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .obs-grid { grid-template-columns: 1fr; } }

/* job listings accordion */
.job-list { display: flex; flex-direction: column; gap: 18px; }
.job { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm); overflow: hidden; transition: box-shadow .25s var(--ease); }
.job[open] { box-shadow: var(--shadow); }
.job > summary { list-style: none; cursor: pointer; display: flex; align-items: center; gap: 18px;
  padding: 26px 30px; }
.job > summary::-webkit-details-marker { display: none; }
.job .j-ic { width: 50px; height: 50px; border-radius: 14px; flex-shrink: 0; display: grid; place-items: center;
  background: var(--grad); color: #fff; }
.job .j-ic svg { width: 26px; height: 26px; }
.job .j-head { flex: 1; }
.job .j-head h3 { font-size: 20px; margin: 0 0 2px; letter-spacing: -.01em; }
.job .j-head span { font-size: 14px; color: var(--muted); }
.job .j-chev { width: 24px; height: 24px; color: var(--blue-600); flex-shrink: 0;
  transition: transform .3s var(--ease); }
.job[open] .j-chev { transform: rotate(180deg); }
.job .j-body { padding: 0 30px 30px; }
.job .j-body > p { color: var(--text); font-size: 15.5px; line-height: 1.6; margin: 0 0 22px;
  padding-top: 22px; border-top: 1px solid var(--line); }
.job-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-bottom: 26px; }
.job-cols h4 { font-family: var(--font-head); font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue-600); margin: 0 0 14px; }
.job-cols .checklist { grid-template-columns: 1fr; gap: 11px; }
.job-cols .checklist li { font-size: 14.5px; align-items: flex-start; }
.job-apply { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  background: var(--bg-soft-2); border-radius: var(--r-md); padding: 20px 24px; }
.job-apply .ja-text { font-size: 14.5px; color: var(--text); }
.job-apply .ja-text b { font-family: var(--font-head); color: var(--navy); }
.job-apply .ja-text code { font-family: var(--font-head); font-weight: 600; color: var(--blue-600);
  background: #fff; padding: 2px 8px; border-radius: 6px; font-size: 13.5px; }
@media (max-width: 680px) { .job-cols { grid-template-columns: 1fr; gap: 18px; } .job > summary { padding: 20px 22px; } .job .j-body { padding: 0 22px 24px; } }

/* anti-spam captcha + honeypot */
.captcha-box { display: flex; align-items: center; gap: 10px; }
.captcha-box .cap-q { font-family: var(--font-head); font-weight: 600; font-size: 15px; color: var(--navy);
  background: var(--bg-soft-2); padding: 12px 15px; border-radius: 10px; white-space: nowrap; user-select: none; }
.captcha-box .cap-q b { color: var(--blue-600); }
.captcha-box .cap-input { flex: 1; min-width: 0; }
.cap-refresh { width: 46px; height: 46px; flex-shrink: 0; border: 1px solid var(--line); background: #fff;
  border-radius: 10px; color: var(--blue-600); cursor: pointer; display: grid; place-items: center;
  transition: background .15s var(--ease); }
.cap-refresh:hover { background: var(--bg-soft); }
.cap-refresh svg { width: 20px; height: 20px; transition: transform .4s var(--ease); }
.cap-refresh:active svg { transform: rotate(-180deg); }
.hp-field { position: absolute !important; left: -9999px !important; top: auto; width: 1px; height: 1px;
  overflow: hidden; opacity: 0; pointer-events: none; }

/* KORP split: checklist + product photo */
.korp-split { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: center; }
.korp-split .checklist { grid-template-columns: 1fr; gap: 13px; }
.korp-photo { margin: 0; }
.korp-photo img { width: 100%; height: auto; display: block; border-radius: var(--r-lg);
  border: 1px solid var(--line); box-shadow: var(--shadow); }
.korp-photo figcaption { margin-top: 12px; font-family: var(--font-head); font-size: 13px;
  color: var(--muted); display: flex; align-items: center; gap: 8px; }
.korp-photo figcaption svg { width: 15px; height: 15px; color: var(--blue-600); flex-shrink: 0; }
@media (max-width: 820px) { .korp-split { grid-template-columns: 1fr; gap: 30px; }
  .korp-photo { order: -1; max-width: 460px; margin: 0 auto; } }

/* two-type cards with internal indication lists */
.es-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.es-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 32px 32px 28px; box-shadow: var(--shadow-sm); }
.es-card .ic { width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center;
  background: var(--bg-soft-2); color: var(--blue-600); margin-bottom: 18px; }
.es-card .ic svg { width: 26px; height: 26px; }
.es-card h3 { font-size: 21px; margin-bottom: 10px; letter-spacing: -.01em; }
.es-card > p { color: var(--muted); font-size: 15px; line-height: 1.55; margin-bottom: 18px; }
.es-card h4 { font-family: var(--font-head); font-size: 12px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--blue-600); margin-bottom: 12px; }
.es-card .checklist { grid-template-columns: 1fr; gap: 10px; }
.es-card .checklist li { font-size: 15px; }
.es-card .checklist li .ck { width: 22px; height: 22px; }
.es-card .checklist li .ck svg { width: 13px; height: 13px; }
@media (max-width: 780px) { .es-grid { grid-template-columns: 1fr; } }

/* contraindications warn box */
.warn-note { display: flex; gap: 18px; align-items: flex-start;
  background: #FBF4EC; border: 1px solid #F0DEC6; border-radius: var(--r-lg); padding: 24px 28px; }
.warn-note .wn-ic { width: 46px; height: 46px; border-radius: 13px; flex-shrink: 0; display: grid; place-items: center;
  background: #F4E4CC; color: #B0741D; }
.warn-note .wn-ic svg { width: 24px; height: 24px; }
.warn-note b { font-family: var(--font-head); font-size: 17px; color: var(--navy); display: block; margin-bottom: 10px; }
.warn-note ul { margin: 0; padding: 0; list-style: none; columns: 2; column-gap: 30px; }
.warn-note ul li { font-size: 14.5px; color: var(--muted); line-height: 1.5; padding: 3px 0 3px 18px; position: relative; break-inside: avoid; }
.warn-note ul li::before { content: ""; position: absolute; left: 2px; top: 11px; width: 5px; height: 5px;
  border-radius: 50%; background: #C98A2E; }
@media (max-width: 620px) { .warn-note ul { columns: 1; } }

/* values grid */
.values { padding: 64px 0 40px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px 28px; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.value:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.value .ic { width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center;
  background: var(--bg-soft-2); color: var(--blue-600); margin-bottom: 18px; }
.value .ic svg { width: 26px; height: 26px; }
.value h3 { font-size: 20px; margin-bottom: 9px; }
.value p { color: var(--muted); font-size: 15px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { padding: 80px 0 90px; }
.contact-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 36px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.ci-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 26px 28px; box-shadow: var(--shadow-sm); }
.ci-card h3 { font-size: 18px; margin-bottom: 18px; }
.ci-row { display: flex; gap: 15px; align-items: flex-start; padding: 13px 0; border-bottom: 1px dashed var(--line-2); }
.ci-row:first-of-type { padding-top: 0; }
.ci-row:last-child { border-bottom: none; padding-bottom: 0; }
.ci-row .ic { width: 44px; height: 44px; border-radius: 13px; flex-shrink: 0;
  display: grid; place-items: center; background: var(--bg-soft-2); color: var(--blue-600); }
.ci-row .ic svg { width: 22px; height: 22px; }
.ci-row .t small { display: block; font-size: 12.5px; color: var(--muted); font-family: var(--font-head);
  font-weight: 600; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 3px; }
.ci-row .t b { font-size: 17px; color: var(--navy); font-family: var(--font-head); font-weight: 700; display: block; }
.ci-row .t span { font-size: 14.5px; color: var(--muted); }
.ci-hours { display: grid; gap: 10px; }
.ci-hours .hr { display: flex; justify-content: space-between; align-items: baseline; font-size: 15px; }
.ci-hours .hr span { color: var(--text); }
.ci-hours .hr b { font-family: var(--font-head); color: var(--navy); font-weight: 600; }
.ci-hours .hr.closed b { color: var(--muted); font-weight: 500; }
.ci-map { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); position: relative; height: 300px; }
.ci-map iframe { width: 100%; height: 100%; border: 0; display: block; filter: saturate(1.02); }
.ci-map .ph { height: 100%; border-radius: 0; }
.ci-map .pin { position: absolute; inset: 0; display: grid; place-items: center; pointer-events: none; }
.ci-map .pin svg { width: 46px; height: 46px; color: var(--blue); filter: drop-shadow(0 6px 14px rgba(1,45,99,.3)); }
.contact-form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl);
  box-shadow: var(--shadow); overflow: hidden; }
.cfc-head { background: var(--grad); color: #fff; padding: 30px 34px; }
.cfc-head h3 { color: #fff; font-size: 23px; margin-bottom: 6px; }
.cfc-head p { color: #CFE3F5; font-size: 15px; }
.cfc-body { padding: 30px 34px 34px; }
.contact-form-card .field.invalid input, .contact-form-card .field.invalid select { border-color: #E5484D; background: #FEF2F2; }
.cf-success { display: none; padding: 12px 0 4px; text-align: center; }
.cf-success.show { display: block; animation: fade .35s var(--ease); }
.cf-success .check { width: 70px; height: 70px; border-radius: 50%; margin: 0 auto 18px;
  background: var(--grad-soft); display: grid; place-items: center; box-shadow: var(--shadow-blue); }
.cf-success .check svg { width: 34px; height: 34px; color: #fff; }
.cf-success h4 { font-size: 22px; color: var(--navy); margin-bottom: 8px; font-family: var(--font-head); }
.cf-success p { color: var(--muted); font-size: 15px; max-width: 340px; margin: 0 auto; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  :root { --gutter: 24px; }
  .nav-links, .nav-cta { display: none; }
  .burger { display: block; }
  .mobile-menu { display: block; }
  .hero .wrap { grid-template-columns: 1fr; gap: 44px; padding-top: 48px; padding-bottom: 56px; }
  .hero-visual { order: -1; }
  .hero-card .ph { height: 320px; }
  .hero-float.one { left: 10px; }
  .hero-float.two { right: 10px; }
  .trust .wrap { grid-template-columns: 1fr 1fr; gap: 28px 24px; }
  .cards { grid-template-columns: 1fr 1fr; }
  .fw-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .steps::before { display: none; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .cta-inner { grid-template-columns: 1fr; padding: 44px 38px; }
  .price-cards { grid-template-columns: 1fr 1fr; }
  .price-list.span2 .pl-rows { columns: 2; }
  .price-note { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .lead-block .wrap { grid-template-columns: 1fr; gap: 36px; }
  .lead-block .lb-visual { order: -1; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .detail-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  :root { --gutter: 20px; }
  .nav { height: 70px; }
  .checklist { grid-template-columns: 1fr; gap: 13px; }
  .method-sec { padding: 56px 0; }
  .mobile-menu { top: 70px; }
  .hero h1 { font-size: clamp(30px, 9vw, 40px); }
  .hero .lead { font-size: 17px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .hero-float { padding: 12px 14px; }
  .hero-float.one { left: 0; bottom: 14px; }
  .hero-float.two { right: 0; top: 14px; }
  .section-head h2 { font-size: 27px; }
  .trust .wrap { grid-template-columns: 1fr 1fr; }
  .stat .num { font-size: 34px; }
  .cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .price-cards { grid-template-columns: 1fr; }
  .price-lists { grid-template-columns: 1fr; }
  .price-list.span2 { grid-column: auto; }
  .price-list.span2 .pl-rows { columns: 1; }
  .price-note { grid-template-columns: 1fr; }
  .price-foot { flex-direction: column; align-items: flex-start; }
  .field.row { grid-template-columns: 1fr; }
  .cta-inner { padding: 36px 26px; }
  .services, .forwhom, .team, .process { padding: 64px 0; }
  .values-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 40px 0 48px; }
  .lead-block { padding: 56px 0 16px; }
  .contact-section { padding: 56px 0 64px; }
  .detail-grid { grid-template-columns: 1fr; }
}

/* team grid: 2x2 on mid-width screens */
@media (min-width: 769px) and (max-width: 1100px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
