/* Sanitas release v1.0.0
   Brand colors from supplied guide:
   #F0B554, #FFE58B, #F0AC2D, #FFB88F, #4A4A4A
*/
:root {
  --brand-gold: #F0B554;
  --brand-cream: #FFE58B;
  --brand-orange: #F0AC2D;
  --brand-peach: #FFB88F;
  --brand-graphite: #4A4A4A;
  --text: #1f2933;
  --muted: #657282;
  --line: #ece5da;
  --bg: #fffaf2;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(74,74,74,.12);
  --shadow-soft: 0 12px 36px rgba(74,74,74,.09);
  --radius: 28px;
  --container: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: "Lucida Grande", "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.narrow { max-width: 860px; }
.skip-link { position: absolute; left: -999px; top: 8px; background: var(--brand-graphite); color: #fff; padding: 10px 14px; z-index: 20; border-radius: 10px; }
.skip-link:focus { left: 8px; }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.92); backdrop-filter: blur(16px); box-shadow: 0 1px 0 rgba(74,74,74,.08); }
.top-strip { background: var(--brand-graphite); color: #fff; font-size: 14px; }
.top-strip__inner { display: flex; gap: 26px; justify-content: flex-end; align-items: center; min-height: 38px; }
.top-strip a:hover { color: var(--brand-cream); }
.header-main { display: grid; grid-template-columns: 215px 1fr auto; align-items: center; gap: 22px; min-height: 82px; }
.brand img { width: 205px; height: auto; }
.main-nav { display: flex; justify-content: center; align-items: center; gap: 28px; }
.nav-link { font-weight: 700; color: var(--brand-graphite); font-size: 15px; position: relative; }
.nav-link::after { content: ""; position: absolute; left: 0; right: 0; bottom: -8px; height: 2px; border-radius: 999px; background: var(--brand-orange); transform: scaleX(0); transform-origin: left; transition: transform .22s ease; }
.nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.language-switch { display: inline-flex; padding: 4px; background: #fff6e4; border: 1px solid var(--line); border-radius: 999px; gap: 3px; }
.language-switch a { min-width: 36px; text-align: center; padding: 6px 9px; border-radius: 999px; font-size: 12px; font-weight: 800; color: var(--brand-graphite); }
.language-switch a.is-active { background: var(--brand-orange); color: #fff; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 14px; background: #fff; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.menu-toggle span { width: 20px; height: 2px; background: var(--brand-graphite); border-radius: 3px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px; padding: 14px 24px; border-radius: 15px; border: 1px solid transparent; font-weight: 800; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn--primary { background: linear-gradient(135deg, var(--brand-orange), var(--brand-gold)); color: #fff; box-shadow: 0 12px 26px rgba(240, 172, 45, .26); }
.btn--outline { border-color: var(--brand-orange); color: var(--brand-graphite); background: rgba(255,255,255,.72); }
.btn--white { background: #fff; color: var(--brand-graphite); }
.btn--light { background: #fff; color: var(--brand-graphite); }
.btn--small { min-height: 42px; padding: 10px 16px; border-radius: 12px; }
.btn--block { width: 100%; }
.link-arrow { color: var(--brand-orange); font-weight: 900; }
.link-arrow::after { content: " →"; }
.section { padding: 72px 0; }
.section-soft { background: radial-gradient(circle at 18% 20%, rgba(255,229,139,.45), transparent 30%), linear-gradient(180deg, #fffaf2 0%, #fff 100%); }
.section-head { margin-bottom: 28px; }
.section-head h2, .page-hero h1, .hero h1, .service-hero h1 { margin: 0; color: #111827; line-height: 1.05; letter-spacing: -.04em; }
.section-head h2 { font-size: clamp(32px, 4vw, 48px); }
.section-head--row { display: flex; align-items: flex-end; justify-content: space-between; gap: 22px; }
.eyebrow { margin: 0 0 12px; color: var(--brand-orange); text-transform: uppercase; letter-spacing: .14em; font-size: 12px; font-weight: 900; }
.hero { position: relative; overflow: hidden; padding: 78px 0 44px; }
.hero::after { content: ""; position: absolute; right: -160px; top: 80px; width: 560px; height: 560px; border-radius: 50%; background: radial-gradient(circle, rgba(255,184,143,.34), transparent 62%); pointer-events: none; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.06fr) 430px; gap: 58px; align-items: center; }
.hero h1 { font-size: clamp(46px, 7vw, 82px); max-width: 750px; }
.hero-subtitle { margin: 22px 0 0; font-size: clamp(18px, 2vw, 22px); color: var(--brand-graphite); max-width: 680px; }
.hero-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; }
.trust-row { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; margin-top: 44px; }
.trust-item { background: rgba(255,255,255,.72); border: 1px solid var(--line); border-radius: 18px; padding: 16px; min-height: 132px; box-shadow: 0 8px 24px rgba(74,74,74,.06); }
.trust-item strong { display: block; margin-top: 10px; font-size: 14px; line-height: 1.25; }
.trust-item small { display: block; margin-top: 6px; color: var(--muted); line-height: 1.35; }
.icon-circle { width: 42px; height: 42px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: #fff3d4; color: var(--brand-orange); }
.icon-circle svg, .area-card svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.icon-circle--warm { width: 56px; height: 56px; }
.hero-panel { align-self: stretch; display: flex; align-items: center; }
.lead-card { background: rgba(255,255,255,.88); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 28px; backdrop-filter: blur(12px); width: 100%; }
.lead-card__head h2 { margin: 0; font-size: 28px; line-height: 1.15; }
.lead-card__head p { margin: 8px 0 20px; color: var(--muted); }
.lead-form { display: grid; gap: 15px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.lead-form label { display: grid; gap: 7px; font-weight: 800; color: var(--brand-graphite); font-size: 14px; }
.lead-form input, .lead-form select, .lead-form textarea { width: 100%; border: 1px solid #ddd4c8; border-radius: 14px; background: #fff; padding: 13px 14px; color: var(--text); outline: none; transition: border .18s ease, box-shadow .18s ease; }
.lead-form textarea { resize: vertical; }
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { border-color: var(--brand-orange); box-shadow: 0 0 0 4px rgba(240,172,45,.14); }
.form-consent { display: flex !important; grid-template-columns: 18px 1fr; align-items: flex-start; gap: 10px !important; font-weight: 600 !important; color: var(--muted) !important; }
.form-consent input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--brand-orange); }
.form-note { margin: 0; color: var(--muted); font-size: 13px; }
.form-hp { position: absolute; left: -9999px; opacity: 0; }
.service-strip { padding-top: 44px; }
.service-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; }
.service-card { position: relative; min-height: 345px; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow-soft); background: #fff7df; }
.service-card--mrt { background: #fff0e7; }
.service-card__content { position: relative; z-index: 2; max-width: 52%; padding: 34px; }
.service-card h2 { margin: 12px 0 6px; font-size: 46px; line-height: 1; }
.service-card p { color: var(--brand-graphite); }
.service-card img { position: absolute; right: -108px; bottom: -42px; width: 70%; max-width: none; }
.badge { display: inline-flex; align-items: center; min-height: 30px; padding: 6px 12px; border-radius: 999px; background: var(--brand-orange); color: #fff; font-size: 12px; font-weight: 900; letter-spacing: .04em; }
.equipment-name { font-weight: 900; margin: 0; }
.price-line { font-size: 17px; color: var(--brand-graphite); }
.price-line strong { font-size: 32px; color: #111827; }
.price-line--large strong { font-size: 44px; }
.area-grid { display: grid; grid-template-columns: repeat(8, minmax(0, 1fr)); gap: 14px; }
.area-card { display: grid; place-items: center; text-align: center; gap: 10px; min-height: 124px; padding: 16px 10px; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: 0 8px 24px rgba(74,74,74,.05); }
.area-card span { color: var(--brand-orange); }
.area-card strong { font-size: 14px; line-height: 1.25; }
.why-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.why-card { background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 24px; box-shadow: var(--shadow-soft); }
.why-card h3 { margin: 18px 0 8px; font-size: 21px; line-height: 1.15; }
.why-card p { margin: 0; color: var(--muted); }
.process-card { border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(135deg, rgba(255,229,139,.45), rgba(255,184,143,.28)); padding: 36px; box-shadow: var(--shadow-soft); }
.process-steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.process-steps article { background: rgba(255,255,255,.74); border: 1px solid rgba(255,255,255,.6); border-radius: 22px; padding: 22px; }
.process-steps span { width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--brand-orange); color: var(--brand-orange); display: inline-flex; align-items: center; justify-content: center; font-weight: 900; }
.process-steps h3 { margin: 14px 0 8px; }
.process-steps p { margin: 0; color: var(--muted); }
.equipment-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.equipment-card { display: grid; grid-template-columns: .95fr 1.05fr; gap: 16px; align-items: center; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; background: #fff; box-shadow: var(--shadow-soft); overflow: hidden; }
.equipment-card h3 { margin: 14px 0 8px; font-size: 26px; line-height: 1.15; }
.equipment-card p { color: var(--muted); }
.equipment-card img { width: 110%; max-width: none; }
.split-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) 430px; gap: 28px; align-items: start; }
.doctor-grid { display: grid; gap: 18px; }
.doctor-grid--preview { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.doctor-grid--full { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.doctor-card { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 18px; box-shadow: 0 8px 22px rgba(74,74,74,.06); }
.doctor-card--large { padding: 24px; }
.doctor-avatar { width: 78px; height: 78px; border-radius: 22px; background: linear-gradient(135deg, var(--brand-orange), var(--brand-peach)); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 900; margin-bottom: 15px; }
.doctor-card h3, .doctor-card h2 { margin: 0 0 8px; line-height: 1.18; font-size: 18px; }
.doctor-card--large h2 { font-size: 22px; }
.doctor-card p { margin: 0; color: var(--muted); }
.doctor-role { color: var(--brand-orange) !important; font-weight: 900; margin-bottom: 8px !important; }
.faq-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-soft); }
details { border-top: 1px solid var(--line); padding: 16px 0; }
details:first-of-type { border-top: 0; }
summary { cursor: pointer; list-style: none; font-weight: 900; display: flex; justify-content: space-between; gap: 12px; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; color: var(--brand-orange); font-size: 24px; line-height: 1; }
details[open] summary::after { content: "−"; }
details p { color: var(--muted); margin: 12px 0 0; }
.location-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.location-grid--stacked { grid-template-columns: 1fr; }
.location-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-soft); display: grid; gap: 12px; }
.location-card h3, .location-card h2 { margin: 6px 0 0; font-size: 28px; }
.location-card p { margin: 0; color: var(--muted); }
.location-card > a:not(.btn) { color: var(--brand-graphite); font-weight: 900; }
.site-footer { background: linear-gradient(135deg, var(--brand-orange), #d98b00); color: #fff; padding: 56px 0 84px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .8fr .9fr; gap: 34px; }
.footer-brand img { width: 220px; margin-bottom: 18px; }
.footer-brand p { margin: 0; max-width: 420px; opacity: .88; }
.footer-col { display: grid; align-content: start; gap: 10px; }
.footer-col h3 { margin: 0 0 4px; }
.footer-col a, .footer-col span { opacity: .9; }
.footer-col a:hover { opacity: 1; text-decoration: underline; }
.footer-bottom { margin-top: 38px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.25); display: flex; justify-content: space-between; gap: 20px; opacity: .9; }
.mobile-cta { position: fixed; left: 10px; right: 10px; bottom: 10px; display: none; grid-template-columns: repeat(3, 1fr); gap: 8px; z-index: 60; }
.mobile-cta a { min-height: 48px; display: flex; align-items: center; justify-content: center; background: #fff; color: var(--brand-graphite); border: 1px solid var(--line); box-shadow: 0 12px 36px rgba(0,0,0,.15); border-radius: 15px; font-weight: 900; }
.mobile-cta a:last-child { background: var(--brand-orange); color: #fff; border-color: var(--brand-orange); }
.page-hero { padding: 84px 0 54px; text-align: center; }
.page-hero h1, .service-hero h1 { font-size: clamp(44px, 6vw, 72px); }
.service-hero { padding: 76px 0; }
.service-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) 430px; gap: 56px; align-items: start; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.hero-badges span { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 8px 13px; font-weight: 900; color: var(--brand-graphite); }
.service-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.content-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-soft); }
.content-card--accent { grid-column: 1 / -1; background: linear-gradient(135deg, rgba(255,229,139,.42), rgba(255,184,143,.26)); }
.content-card h2 { margin: 0 0 16px; font-size: 30px; line-height: 1.15; }
.content-card p { color: var(--muted); margin: 0; }
.check-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 30px; color: var(--brand-graphite); font-weight: 700; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--brand-orange); font-weight: 900; }
.process-steps--cards { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.table-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-soft); overflow: hidden; }
.price-table { width: 100%; border-collapse: collapse; }
.price-table th, .price-table td { padding: 20px 24px; border-bottom: 1px solid var(--line); text-align: left; }
.price-table th { background: #fff6e4; color: var(--brand-graphite); font-size: 14px; text-transform: uppercase; letter-spacing: .08em; }
.price-table td:last-child { font-weight: 900; color: #111827; }
.table-note { padding: 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px; background: #fffaf2; }
.table-note p { margin: 0; color: var(--muted); }
.contacts-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(360px, .7fr); gap: 28px; align-items: start; }
.legal-text h2 { margin-top: 28px; }
.legal-text h2:first-child { margin-top: 0; }
.thank-section { min-height: 52vh; display: flex; align-items: center; }
.thank-card { text-align: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 44px; }
.success-mark { width: 70px; height: 70px; border-radius: 50%; background: var(--brand-orange); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 36px; font-weight: 900; margin-bottom: 20px; }
@media (max-width: 1080px) {
  .header-main { grid-template-columns: 190px auto auto; }
  .main-nav { gap: 16px; }
  .hero-grid, .service-hero-grid, .split-grid, .contacts-grid { grid-template-columns: 1fr; }
  .hero-panel { max-width: 620px; }
  .trust-row, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .area-grid { grid-template-columns: repeat(4, 1fr); }
  .doctor-grid--full { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
  .container { width: min(100% - 28px, var(--container)); }
  .top-strip { display: none; }
  .header-main { grid-template-columns: 178px auto; min-height: 74px; }
  .brand img { width: 172px; }
  .menu-toggle { display: inline-flex; justify-self: end; }
  .main-nav { position: fixed; left: 14px; right: 14px; top: 84px; background: #fff; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow); padding: 16px; display: none; flex-direction: column; align-items: stretch; gap: 4px; }
  .main-nav.is-open { display: flex; }
  .nav-link { padding: 12px; border-radius: 12px; }
  .nav-link:hover, .nav-link.is-active { background: #fff6e4; }
  .nav-link::after { display: none; }
  .header-actions { grid-column: 1 / -1; justify-content: space-between; padding-bottom: 12px; }
  .hero { padding-top: 48px; }
  .hero h1, .page-hero h1, .service-hero h1 { font-size: clamp(38px, 12vw, 56px); }
  .hero-subtitle { font-size: 17px; }
  .trust-row, .service-grid, .why-grid, .equipment-grid, .location-grid, .service-info-grid, .process-steps, .footer-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .service-card__content { max-width: none; padding: 26px; }
  .service-card img { position: relative; right: auto; bottom: auto; width: 105%; margin: -20px auto -34px; }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .equipment-card { grid-template-columns: 1fr; }
  .doctor-grid--preview, .doctor-grid--full { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .section { padding: 52px 0; }
  .section-head--row { align-items: flex-start; flex-direction: column; }
  .table-note { flex-direction: column; align-items: stretch; }
  .price-table { font-size: 14px; }
  .price-table th, .price-table td { padding: 14px; }
  .footer-bottom { flex-direction: column; }
  .mobile-cta { display: grid; }
}
@media (max-width: 520px) {
  .header-main { grid-template-columns: 150px auto; }
  .brand img { width: 150px; }
  .header-actions .btn { display: none; }
  .language-switch a { min-width: 32px; padding: 5px 7px; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .trust-item { min-height: auto; }
  .doctor-grid--preview, .doctor-grid--full, .area-grid { grid-template-columns: 1fr; }
  .lead-card, .process-card, .content-card, .location-card { padding: 22px; border-radius: 22px; }
  .site-footer { padding-bottom: 92px; }
}
