/* ============================================================
   THE SEOUL GLOW — Design System
   Premium K-Medical Tourism for Southeast Asia
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  /* Color */
  --ink:        #17161D;
  --ink-soft:   #4A4754;
  --ink-mute:   #837F8C;
  --gold:       #C7A05A;
  --gold-deep:  #A8823F;
  --gold-soft:  #E6CE9E;
  --rose:       #E6A78C;
  --rose-soft:  #F4DACB;
  --cream:      #FBF6F0;
  --cream-2:    #F4ECE2;
  --sage:       #5E8A72;
  --sage-soft:  #DDE9E0;
  --white:      #FFFFFF;
  --line:       #EBE1D4;

  /* Brand gradients */
  --glow:        linear-gradient(135deg, #E9C58E 0%, #E0A07E 100%);
  --glow-radial: radial-gradient(120% 120% at 80% 0%, #F3DCC0 0%, #E7B98E 38%, #D9926C 100%);
  --ink-grad:    linear-gradient(160deg, #211F2A 0%, #17161D 100%);

  /* Type */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body:    "Inter", "Noto Sans KR", system-ui, -apple-system, sans-serif;

  /* Spacing / layout */
  --container: 1200px;
  --radius:    18px;
  --radius-sm: 12px;
  --radius-lg: 28px;

  /* Shadow */
  --shadow-sm: 0 2px 10px rgba(23,22,29,.06);
  --shadow:    0 18px 50px rgba(23,22,29,.10);
  --shadow-lg: 0 30px 80px rgba(23,22,29,.16);

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Typography ---------- */
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.1; letter-spacing: -.01em; color: var(--ink); }
h1 { font-size: clamp(2.5rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }
.eyebrow {
  font-family: var(--font-body); font-weight: 600; font-size: .78rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--gold-deep);
  display: inline-flex; align-items: center; gap: .55rem;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--gold); display: inline-block; }
.lead { font-size: 1.18rem; color: var(--ink-soft); }
.muted { color: var(--ink-mute); }
em { font-style: italic; color: var(--gold-deep); }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--cream { background: var(--cream); }
.section--ink { background: var(--ink-grad); color: var(--cream); }
.section--ink h1,.section--ink h2,.section--ink h3 { color: var(--white); }
.section-head { max-width: 660px; margin-bottom: 56px; }
.section-head.center { margin-inline: auto; text-align: center; }
.grid { display: grid; gap: 28px; }
.cols-2 { grid-template-columns: repeat(2,1fr); }
.cols-3 { grid-template-columns: repeat(3,1fr); }
.cols-4 { grid-template-columns: repeat(4,1fr); }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .55rem; white-space: nowrap;
  padding: 15px 30px; border-radius: 100px; font-weight: 600; font-size: .98rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s; }
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--ink); color: var(--cream); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: #000; box-shadow: var(--shadow); }
.btn--glow { background: var(--glow); color: var(--ink); box-shadow: 0 10px 30px rgba(216,150,110,.35); }
.btn--ghost { border: 1.5px solid var(--line); color: var(--ink); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--light { background: var(--white); color: var(--ink); }
.btn--block { width: 100%; }
.btn--lg { padding: 18px 38px; font-size: 1.05rem; }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(251,246,240,.82);
  backdrop-filter: saturate(160%) blur(14px); border-bottom: 1px solid transparent; transition: border-color .3s, background .3s; }
.site-header.scrolled { border-color: var(--line); background: rgba(251,246,240,.95); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 24px; }
.nav__links { display: flex; align-items: center; gap: 21px; }
.nav__links a { font-size: .9rem; font-weight: 500; color: var(--ink-soft); transition: color .2s; position: relative; white-space: nowrap; }
.nav__links a:hover { color: var(--ink); }
.nav__links a::after { content:""; position:absolute; left:0; bottom:-6px; height:2px; width:0; background:var(--gold); transition:width .25s var(--ease); }
.nav__links a:hover::after { width:100%; }
.nav__right { display: flex; align-items: center; gap: 16px; }
.lang { display: inline-flex; align-items: center; gap: 6px; font-size: .9rem; font-weight: 600; color: var(--ink-soft); padding: 8px 12px; border: 1px solid var(--line); border-radius: 100px; }

/* ---------- Language switcher (native <select>) ---------- */
.langsel { display: inline-flex; align-items: center; gap: 6px; border: 1px solid var(--line); border-radius: 100px; padding: 6px 10px 6px 13px; background: var(--white); transition: border-color .2s; }
.langsel:hover { border-color: var(--gold); }
.langsel__globe { color: var(--gold-deep); flex: none; }
.langsel__select { appearance: none; -webkit-appearance: none; -moz-appearance: none; border: none; outline: none; background: transparent; font-family: inherit; font-size: .9rem; font-weight: 600; color: var(--ink-soft); cursor: pointer; padding: 0 20px 0 0; line-height: 1.2;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23837F8C' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat; background-position: right 0 center; }
.langsel__select:hover { color: var(--ink); }
.langsel__select option { color: var(--ink); font-weight: 500; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }

/* ---------- Logo ---------- */
.logo { display: inline-flex; align-items: center; gap: 11px; }
.logo__mark { width: 38px; height: 38px; flex: none; }
.logo__text { font-family: var(--font-display); font-weight: 600; font-size: 1.12rem; letter-spacing: .02em; line-height: 1; color: var(--ink); white-space: nowrap; }
.logo__text small { display: block; font-family: var(--font-body); font-weight: 600; font-size: .58rem; letter-spacing: .34em; text-transform: uppercase; color: var(--gold-deep); margin-top: 3px; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--cream); }
.hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; padding: clamp(48px,7vw,92px) 0 clamp(56px,8vw,104px); }
.hero h1 { margin-bottom: 22px; }
.hero h1 .accent { font-style: italic; background: var(--glow); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero__sub { font-size: 1.18rem; color: var(--ink-soft); max-width: 520px; margin-bottom: 32px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 22px 30px; align-items: center; }
.hero__trust-item { display: flex; align-items: center; gap: 9px; font-size: .9rem; font-weight: 500; color: var(--ink-soft); }
.hero__trust-item svg { color: var(--sage); flex: none; }
.hero__visual { position: relative; aspect-ratio: 4/5; border-radius: var(--radius-lg); background: var(--glow-radial); box-shadow: var(--shadow-lg); overflow: hidden; }
.hero__visual .ph-label { position:absolute; inset:0; display:flex; align-items:center; justify-content:center; text-align:center; color: rgba(23,22,29,.5); font-size:.85rem; font-weight:600; letter-spacing:.05em; padding:24px; }
.hero__badge { position: absolute; background: var(--white); border-radius: 16px; padding: 14px 18px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 12px; }
.hero__badge--tl { top: 24px; left: -18px; }
.hero__badge--br { bottom: 26px; right: -16px; }
.hero__badge b { display: block; font-size: 1.15rem; font-family: var(--font-display); margin-bottom: 3px; }
.hero__badge span { display: block; font-size: .76rem; color: var(--ink-mute); line-height: 1.3; }
.hero__badge > div { min-width: 0; }
.hero__badge .ico { width: 38px; height: 38px; border-radius: 10px; background: var(--cream-2); display: grid; place-items: center; color: var(--gold-deep); flex: none; }

/* ---------- Marquee / trust strip ---------- */
.trustbar { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.trustbar__row { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px 44px; padding: 24px 0; }
.trustbar__item { display: flex; align-items: center; gap: 10px; font-size: .92rem; font-weight: 600; color: var(--ink-soft); }
.trustbar__item svg { color: var(--gold-deep); }

/* ---------- Cards ---------- */
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.card__ico { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 20px; background: var(--cream-2); color: var(--gold-deep); }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--ink-soft); font-size: .98rem; }

/* feature card (differentiators) */
.feature { position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; overflow: hidden; }
.feature__num { font-family: var(--font-display); font-size: 3rem; color: var(--cream-2); position: absolute; top: 14px; right: 22px; line-height: 1; }
.feature h3 { margin-bottom: 12px; position: relative; }
.feature p { color: var(--ink-soft); position: relative; }
.feature__tag { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--sage); background: var(--sage-soft); padding: 4px 11px; border-radius: 100px; margin-top: 16px; }

/* ---------- Services ---------- */
.service { display: flex; flex-direction: column; gap: 14px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.service:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.service__img { aspect-ratio: 3/2; background: var(--glow-radial); position: relative; }
.service__img .ph { position:absolute; inset:0; display:grid; place-items:center; color:rgba(23,22,29,.45); font-weight:600; font-size:.82rem; }
.service__body { padding: 0 24px 26px; }
.service h3 { font-size: 1.3rem; margin-bottom: 8px; }
.service p { color: var(--ink-soft); font-size: .95rem; margin-bottom: 12px; }
.service__link { font-weight: 600; font-size: .9rem; color: var(--gold-deep); display: inline-flex; gap: 6px; align-items: center; }

/* ---------- Packages (curated programs) ---------- */
.package { position: relative; display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s; }
.package:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.package--featured { border-color: var(--gold); box-shadow: 0 12px 34px rgba(199,160,90,.18); }
.package__tag { align-self: flex-start; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-deep); background: var(--cream-2); padding: 5px 13px; border-radius: 100px; margin-bottom: 18px; }
.package--featured .package__tag { background: var(--glow); color: var(--ink); }
.package h3 { font-size: 1.4rem; margin-bottom: 20px; }
.package__list { display: flex; flex-direction: column; gap: 11px; margin-bottom: 26px; flex: 1; }
.package__list li { font-size: .95rem; color: var(--ink-soft); display: flex; gap: 11px; line-height: 1.5; }
.package__list li::before { content: "✓"; color: var(--sage); font-weight: 700; flex: none; }
.package .btn { margin-top: auto; }

/* ---------- Partner cards ---------- */
.partner { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; gap: 14px; transition: box-shadow .3s, transform .3s; }
.partner:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.partner__top { display: flex; align-items: center; gap: 14px; }
.partner__logo { width: 56px; height: 56px; border-radius: 12px; background: var(--cream-2); display: grid; place-items: center; font-family: var(--font-display); font-weight: 600; color: var(--gold-deep); font-size: 1.1rem; flex: none; }
.partner__name { font-family: var(--font-display); font-size: 1.18rem; }
.partner__spec { font-size: .84rem; color: var(--ink-mute); }
.partner__verify { display: inline-flex; align-items: center; gap: 6px; font-size: .8rem; font-weight: 600; color: var(--sage); }
.partner ul { display: flex; flex-direction: column; gap: 7px; }
.partner li { font-size: .9rem; color: var(--ink-soft); display: flex; gap: 8px; }
.partner li::before { content: "✦"; color: var(--gold); }

/* ---------- Pricing ---------- */
.price-table { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.price-row { display: grid; grid-template-columns: 1.4fr 1fr auto; gap: 16px; align-items: center; padding: 20px 28px; border-bottom: 1px solid var(--line); }
.price-row:last-child { border-bottom: none; }
.price-row:nth-child(odd) { background: var(--cream); }
.price-row__name { font-weight: 600; }
.price-row__name small { display: block; font-weight: 400; font-size: .82rem; color: var(--ink-mute); }
.price-row__range { font-family: var(--font-display); font-size: 1.25rem; color: var(--gold-deep); }
.price-note { font-size: .82rem; color: var(--ink-mute); margin-top: 16px; text-align: center; }

/* ---------- Steps ---------- */
.steps { counter-reset: step; display: grid; gap: 24px; }
.step { display: flex; gap: 22px; align-items: flex-start; }
.step__num { counter-increment: step; flex: none; width: 52px; height: 52px; border-radius: 50%; background: var(--glow); color: var(--ink); display: grid; place-items: center; font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; }
.step__num::before { content: counter(step); }
.step h3 { font-size: 1.25rem; margin-bottom: 6px; }
.step p { color: var(--ink-soft); font-size: .96rem; }

/* ---------- Highlight band (Muslim-friendly / SEA) ---------- */
.band { border-radius: var(--radius-lg); padding: clamp(36px,5vw,64px); background: var(--ink-grad); color: var(--cream); display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items: center; }
.band h2 { color: var(--white); margin-bottom: 18px; }
.band p { color: rgba(251,246,240,.82); margin-bottom: 24px; }
.band__list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.band__list li { display: flex; gap: 10px; align-items: flex-start; font-size: .96rem; color: var(--cream); }
.band__list svg { color: var(--gold-soft); flex: none; margin-top: 3px; }
.band__visual { aspect-ratio: 1/1; border-radius: var(--radius); background: var(--glow-radial); display:grid; place-items:center; color:rgba(23,22,29,.5); font-weight:600; font-size:.82rem; }

/* ---------- Testimonials / stories ---------- */
.quote { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; display: flex; flex-direction: column; gap: 18px; }
.quote__stars { color: var(--gold); letter-spacing: 2px; }
.quote p { font-size: 1.02rem; color: var(--ink); line-height: 1.6; }
.quote__who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.quote__ava { width: 44px; height: 44px; border-radius: 50%; background: var(--glow); display:grid; place-items:center; font-weight:700; color:var(--ink); }
.quote__who b { font-size: .95rem; }
.quote__who span { font-size: .82rem; color: var(--ink-mute); }

/* ---------- FAQ ---------- */
.faq { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 24px 0; text-align: left; font-family: var(--font-display); font-size: 1.18rem; color: var(--ink); }
.faq__q span.ico { flex: none; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; transition: .3s; }
.faq.open .faq__q span.ico { background: var(--ink); color: var(--white); transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq__a p { padding-bottom: 24px; color: var(--ink-soft); }

/* ---------- CTA band ---------- */
.cta-final { position: relative; overflow: hidden; border-radius: var(--radius-lg); background: var(--glow-radial); padding: clamp(44px,6vw,80px); text-align: center; }
.cta-final h2 { margin-bottom: 14px; }
.cta-final p { color: var(--ink-soft); max-width: 520px; margin: 0 auto 28px; }
.cta-final .hero__cta { justify-content: center; }

/* ---------- Form ---------- */
.form { display: grid; gap: 16px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: .85rem; font-weight: 600; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 1rem; padding: 13px 16px; border: 1px solid var(--line);
  border-radius: var(--radius-sm); background: var(--white); color: var(--ink); transition: border-color .2s, box-shadow .2s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(199,160,90,.15); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(251,246,240,.72); padding: 72px 0 32px; }
.site-footer h4 { color: var(--white); font-family: var(--font-body); font-size: .82rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer__grid a { color: rgba(251,246,240,.72); font-size: .94rem; line-height: 2; transition: color .2s; }
.footer__grid a:hover { color: var(--gold-soft); }
.site-footer .logo__text { color: var(--white); }
.footer__about { max-width: 320px; font-size: .94rem; margin: 18px 0; }
.footer__social { display: flex; gap: 12px; }
.footer__social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.16); display: grid; place-items: center; color: var(--cream); }
.footer__social a:hover { background: var(--glow); border-color: transparent; color: var(--ink); }
.footer__bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 26px; font-size: .82rem; color: rgba(251,246,240,.5); }

/* ---------- WhatsApp float ---------- */
.wa-float { position: fixed; bottom: 24px; right: 24px; z-index: 90; width: 58px; height: 58px; border-radius: 50%; background: #25D366; display: grid; place-items: center; box-shadow: var(--shadow); transition: transform .25s var(--ease); }
.wa-float:hover { transform: scale(1.08); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero { background: var(--cream); padding: clamp(48px,6vw,84px) 0; text-align: center; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { max-width: 600px; margin: 0 auto; color: var(--ink-soft); font-size: 1.12rem; }
.breadcrumb { font-size: .85rem; color: var(--ink-mute); margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--gold-deep); }

/* ---------- Procedure cards ---------- */
.proc { display: flex; flex-direction: column; gap: 9px; }
.proc__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.proc__head h3 { font-size: 1.25rem; }
.proc__price { font-family: var(--font-display); font-size: 1.1rem; color: var(--gold-deep); white-space: nowrap; flex: none; }
.proc__price small { font-size: .7rem; color: var(--ink-mute); }
.proc__what { color: var(--ink-soft); font-size: .95rem; }
.proc__meta { font-size: .88rem; color: var(--ink-soft); }
.proc__meta b { color: var(--ink); font-weight: 600; margin-right: 6px; }
.proc__notes { display: flex; flex-direction: column; gap: 5px; margin-top: 4px; }
.proc__notes li { font-size: .86rem; color: var(--ink-mute); display: flex; gap: 8px; }
.proc__notes li::before { content: "›"; color: var(--gold-deep); font-weight: 700; }

/* ---------- Red-flag / protect cards (patient guide) ---------- */
.tactic { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.tactic h3 { font-size: 1.22rem; margin-bottom: 10px; display: flex; gap: 10px; align-items: baseline; }
.tactic__num { font-family: var(--font-display); color: var(--rose); font-size: 1.1rem; flex: none; }
.tactic__how { color: var(--ink-soft); font-size: .95rem; margin-bottom: 16px; }
.tactic__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.tactic__box h4 { font-family: var(--font-body); font-size: .8rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 8px; }
.tactic__box.flags h4 { color: #B4584A; }
.tactic__box.protect h4 { color: var(--sage); }
.tactic__box ul { display: flex; flex-direction: column; gap: 7px; }
.tactic__box li { font-size: .88rem; color: var(--ink-soft); display: flex; gap: 8px; line-height: 1.45; }
.tactic__box.flags li::before { content: "⚑"; color: #C46A5B; flex: none; }
.tactic__box.protect li::before { content: "✓"; color: var(--sage); flex: none; font-weight: 700; }
@media (max-width: 640px){ .tactic__cols { grid-template-columns: 1fr; } }

/* ---------- Question checklist ---------- */
.qask { display: flex; gap: 12px; font-size: .95rem; color: var(--ink-soft); align-items: flex-start; line-height: 1.5; }
.qask::before { content: "✓"; color: var(--sage); font-weight: 700; flex: none; margin-top: 1px; }

/* ---------- Device cards ---------- */
.device { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 20px; }
.device h3 { font-size: 1.08rem; margin-bottom: 4px; }
.device__cat { font-size: .76rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 10px; }
.device p { font-size: .88rem; color: var(--ink-soft); margin-bottom: 10px; }
.device__treats { display: flex; flex-wrap: wrap; gap: 6px; }
.device__treats span { font-size: .74rem; background: var(--cream-2); color: var(--ink-soft); padding: 3px 9px; border-radius: 100px; }

/* ---------- Equipment matrix ---------- */
.matrix { width: 100%; border-collapse: collapse; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; font-size: .92rem; }
.matrix th, .matrix td { padding: 13px 14px; text-align: center; border-bottom: 1px solid var(--line); }
.matrix thead th { background: var(--cream-2); font-weight: 700; font-size: .82rem; }
.matrix tbody th { text-align: left; font-weight: 600; }
.matrix .yes { color: var(--sage); font-weight: 700; }
.matrix .no { color: var(--line); }
.matrix-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ---------- Verified reviews / voting ---------- */
.vote-clinic { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; display: flex; flex-direction: column; gap: 12px; }
.vote-clinic__head { display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.vote-bars { display: flex; flex-direction: column; gap: 9px; }
.vote-bar { display: grid; grid-template-columns: 120px 1fr 42px; gap: 10px; align-items: center; font-size: .85rem; color: var(--ink-soft); }
.vote-bar__track { height: 8px; border-radius: 8px; background: var(--cream-2); overflow: hidden; }
.vote-bar__fill { height: 100%; background: var(--glow); border-radius: 8px; transition: width .5s var(--ease); }
.vote-score { font-family: var(--font-display); font-size: 2rem; color: var(--gold-deep); line-height: 1; }
.verified-badge { display: inline-flex; align-items: center; gap: 6px; font-size: .76rem; font-weight: 700; color: var(--sage); background: var(--sage-soft); padding: 4px 10px; border-radius: 100px; }

.vote-rate-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .vote-rate-grid { grid-template-columns: 1fr; } }

/* ---------- Chips (multi-select) ---------- */
.chip { display: inline-flex; align-items: center; gap: 8px; padding: 9px 14px; border: 1px solid var(--line); border-radius: 100px; font-size: .9rem; color: var(--ink-soft); cursor: pointer; transition: border-color .2s, background .2s, color .2s; background: var(--white); user-select: none; }
.chip:hover { border-color: var(--gold); }
.chip input { accent-color: var(--gold-deep); width: auto; margin: 0; }
.chip:has(input:checked) { border-color: var(--gold); background: var(--cream-2); color: var(--ink); font-weight: 600; }

/* ---------- Image fills ---------- */
.img-fill { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; z-index: 0; }
.service__img { overflow: hidden; }
.band__visual { position: relative; overflow: hidden; }
.hero__visual { isolation: isolate; }
.hero__badge { z-index: 2; }

/* ---------- Responsive ---------- */
@media (max-width: 1180px) {
  .nav__links, .nav__right .btn { display: none; }
  .nav__toggle { display: flex; }
  .site-header.menu-open .nav__links { display: flex; position: absolute; top: 76px; left: 0; right: 0; flex-direction: column; align-items: flex-start; gap: 4px; background: var(--cream); padding: 20px 24px 26px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
  .site-header.menu-open .nav__links a { padding: 10px 0; width: 100%; }
  .site-header.menu-open .nav__links a::after { display: none; }
}
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { max-width: 460px; margin: 0 auto; width: 100%; }
  .band { grid-template-columns: 1fr; }
  .band__visual { max-width: 320px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .cols-4 { grid-template-columns: 1fr 1fr; }
  .cols-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; }
  .form__row, .price-row { grid-template-columns: 1fr; }
  .price-row { gap: 6px; }
  .price-row__range { font-size: 1.4rem; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .hero__badge--tl { left: 8px; }
  .hero__badge--br { right: 8px; }
}
