:root {
  --white: #ffffff;
  --surface: #f5f9fc;
  --surface-strong: #eaf3f8;
  --ink: #173b57;
  --text: #314b5e;
  --muted: #536a7b;
  --primary: #2d6f9f;
  --primary-dark: #1f587f;
  --line: #d7e4ec;
  --blue-deep: #12364f;
  --accent: #c9a978;
  --shadow: 0 24px 60px rgba(23, 59, 87, 0.12);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 32px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: var(--primary-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

h1 {
  max-width: 800px;
  margin-bottom: 28px;
  font-size: clamp(2.7rem, 6vw, 5rem);
  font-weight: 760;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  font-weight: 740;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.28rem;
}

p:last-child {
  margin-bottom: 0;
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--blue-deep);
  border-radius: 8px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(215, 228, 236, 0.78);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--primary);
  background: var(--surface-strong);
  border-radius: 50%;
}

.brand-mark svg {
  width: 32px;
  height: 32px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.02rem;
  line-height: 1.2;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

.main-nav > a:not(.button) {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 650;
  text-decoration: none;
}

.main-nav > a:not(.button):hover,
.main-nav > a:not(.button):focus-visible {
  color: var(--primary);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  background: transparent;
  border: 0;
  border-radius: 10px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 23px;
  color: var(--white);
  background: var(--primary);
  border: 1px solid var(--primary);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(45, 111, 159, 0.18);
  font-weight: 750;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  color: var(--white);
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  box-shadow: 0 16px 36px rgba(45, 111, 159, 0.26);
  transform: translateY(-2px);
}

.button-small {
  min-height: 44px;
  padding: 9px 18px;
  font-size: 0.9rem;
}

.button-secondary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
  box-shadow: none;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--ink);
  background: var(--surface);
  border-color: #b8ceda;
}

.button-full {
  width: 100%;
  cursor: pointer;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 76px;
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: -180px;
  right: -180px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(234, 243, 248, 0.95), rgba(255, 255, 255, 0) 70%);
  content: "";
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: 70px;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-lead,
.lead {
  max-width: 760px;
  color: var(--text);
  font-size: clamp(1.14rem, 2.2vw, 1.38rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-facts {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 44px 0 0;
  list-style: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-facts li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.fact-icon {
  display: grid;
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--primary);
  background: var(--surface-strong);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 850;
}

.hero-facts strong,
.hero-facts small {
  display: block;
}

.hero-facts strong {
  color: var(--ink);
  font-size: 0.88rem;
}

.hero-facts small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.4;
}

.hero-visual {
  position: relative;
  min-height: 500px;
}

.visual-card-main {
  position: absolute;
  inset: 15px 8px 50px 20px;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,0)),
    var(--blue-deep);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.visual-card-main::after {
  position: absolute;
  right: -55px;
  bottom: -85px;
  width: 240px;
  height: 240px;
  background: rgba(201, 169, 120, 0.16);
  border-radius: 50%;
  content: "";
}

.visual-card-main p {
  position: absolute;
  right: 30px;
  bottom: 22px;
  left: 30px;
  color: rgba(255,255,255,.82);
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-align: center;
}

.visual-center {
  position: relative;
  z-index: 3;
  display: grid;
  width: 160px;
  height: 160px;
  place-items: center;
  color: #dff0fa;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  backdrop-filter: blur(8px);
}

.visual-center svg {
  width: 104px;
}

.visual-orbit {
  position: absolute;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
}

.orbit-one {
  width: 270px;
  height: 270px;
}

.orbit-two {
  width: 380px;
  height: 380px;
}

.visual-note {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 18px;
  width: 220px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: 0 16px 40px rgba(23, 59, 87, 0.14);
}

.visual-note strong,
.visual-note span {
  display: block;
}

.visual-note strong {
  color: var(--ink);
}

.visual-note span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.78rem;
}

.trust-strip {
  padding: 22px 0;
  background: var(--surface);
  border-block: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  gap: 18px;
  color: var(--ink);
  font-size: 0.83rem;
  font-weight: 700;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-grid div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-grid span {
  display: grid;
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--primary);
  background: var(--white);
  border-radius: 50%;
}

.section {
  padding: 104px 0;
}

.section-soft {
  background: var(--surface);
}

.two-column {
  display: grid;
  gap: 70px;
  grid-template-columns: 0.75fr 1.25fr;
}

.section-intro h2 {
  max-width: 430px;
}

.prose {
  max-width: 760px;
}

.prose p {
  margin-bottom: 22px;
}

.notice {
  padding: 22px 24px;
  margin-top: 32px;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-sm);
}

.notice strong {
  color: var(--ink);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading > p:last-child {
  color: var(--muted);
  font-size: 1.05rem;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card {
  position: relative;
  min-height: 260px;
  padding: 34px 27px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.card-number {
  display: inline-flex;
  margin-bottom: 58px;
  color: var(--primary);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.info-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

.timeline {
  display: grid;
  max-width: 920px;
  gap: 0;
}

.timeline article {
  position: relative;
  display: grid;
  gap: 22px;
  padding: 0 0 44px;
  grid-template-columns: 58px 1fr;
}

.timeline article:not(:last-child)::after {
  position: absolute;
  top: 54px;
  bottom: 0;
  left: 28px;
  width: 1px;
  background: var(--line);
  content: "";
}

.timeline article > span {
  position: relative;
  z-index: 2;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  color: var(--primary);
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-weight: 850;
}

.timeline article p {
  max-width: 720px;
  color: var(--muted);
}

.section-blue {
  color: rgba(255,255,255,.84);
  background: var(--blue-deep);
}

.light h2,
.light .eyebrow {
  color: var(--white);
}

.light > p:last-child {
  color: rgba(255,255,255,.7);
}

.topic-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.topic-grid div {
  min-height: 112px;
  padding: 25px;
  color: var(--white);
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-sm);
  font-weight: 700;
}

.profile-grid {
  display: grid;
  align-items: center;
  gap: 76px;
  grid-template-columns: 0.8fr 1.2fr;
}

.portrait-placeholder {
  display: grid;
  min-height: 510px;
  overflow: hidden;
  place-content: center;
  color: var(--primary);
  background:
    linear-gradient(145deg, rgba(255,255,255,.75), rgba(255,255,255,.1)),
    var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-align: center;
}

.portrait-placeholder span {
  display: grid;
  width: 140px;
  height: 140px;
  margin: 0 auto 20px;
  place-items: center;
  color: var(--white);
  background: var(--primary);
  border-radius: 50%;
  font-size: 2.7rem;
  font-weight: 800;
}

.portrait-placeholder small {
  color: var(--muted);
}

.profile-copy {
  max-width: 680px;
}

.profile-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.profile-points span {
  padding: 9px 13px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}

.pricing-grid {
  display: grid;
  align-items: stretch;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.price-card {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.price-card.featured {
  color: rgba(255,255,255,.82);
  background: var(--blue-deep);
  border-color: var(--blue-deep);
  box-shadow: var(--shadow);
}

.price-label {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.featured .price-label,
.featured .price {
  color: var(--white);
}

.price {
  margin-bottom: 24px;
  color: var(--ink);
  font-size: clamp(2.5rem, 4vw, 3.6rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
}

.price span {
  font-size: 1rem;
  letter-spacing: 0;
}

.price-card > p:not(.price, .price-label) {
  color: var(--muted);
}

.featured > p:not(.price, .price-label) {
  color: rgba(255,255,255,.72);
}

.price-card .button,
.price-card .text-link {
  margin-top: auto;
}

.featured .button {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.text-link {
  color: var(--primary-dark);
  font-weight: 800;
}

.detail-card ul {
  padding-left: 20px;
  margin: 18px 0 0;
  color: var(--muted);
}

.faq-layout {
  display: grid;
  gap: 80px;
  grid-template-columns: 0.65fr 1.35fr;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 42px 24px 0;
  color: var(--ink);
  cursor: pointer;
  font-weight: 750;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 22px;
  right: 2px;
  content: "+";
  color: var(--primary);
  font-size: 1.4rem;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  max-width: 720px;
  padding: 0 40px 24px 0;
  color: var(--muted);
}

.contact-section {
  padding: 104px 0;
  background: var(--surface-strong);
}

.contact-grid {
  display: grid;
  align-items: start;
  gap: 70px;
  grid-template-columns: 0.9fr 1.1fr;
}

.contact-copy h2 {
  max-width: 580px;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 620px;
}

.contact-cards {
  display: grid;
  gap: 12px;
  margin-top: 36px;
}

.contact-cards a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  color: var(--ink);
  background: rgba(255,255,255,.8);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  text-decoration: none;
}

.contact-cards a:hover,
.contact-cards a:focus-visible {
  background: var(--white);
  border-color: #b8ceda;
}

.contact-cards span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-cards strong {
  font-size: 0.93rem;
  text-align: right;
}

.contact-form,
.contact-panel {
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-heading {
  margin-bottom: 27px;
}

.form-heading strong,
.form-heading span {
  display: block;
}

.form-heading strong {
  color: var(--ink);
  font-size: 1.4rem;
}

.form-heading span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-form > label,
.form-row label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.83rem;
  font-weight: 750;
}

.contact-form > label,
.form-row {
  margin-bottom: 18px;
}

.form-row {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

input,
textarea {
  width: 100%;
  padding: 14px 15px;
  color: var(--text);
  background: var(--white);
  border: 1px solid #bfd0da;
  border-radius: 10px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(45, 111, 159, 0.12);
}

.checkbox {
  display: grid !important;
  align-items: start;
  gap: 10px !important;
  grid-template-columns: 20px 1fr;
  font-weight: 500 !important;
  line-height: 1.45;
}

.checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.checkbox span {
  color: var(--muted);
  font-size: 0.78rem;
}

.form-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.74rem;
  text-align: center;
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.medical-disclaimer {
  padding: 32px 0;
  background: #edf4f7;
  border-top: 1px solid var(--line);
}

.medical-disclaimer .container {
  display: grid;
  gap: 18px;
  grid-template-columns: 210px 1fr;
}

.medical-disclaimer strong {
  color: var(--ink);
}

.medical-disclaimer p {
  color: var(--muted);
  font-size: 0.84rem;
}

.site-footer {
  padding: 64px 0 22px;
  color: rgba(255,255,255,.7);
  background: #0e2b3f;
}

.footer-grid {
  display: grid;
  gap: 50px;
  padding-bottom: 48px;
  grid-template-columns: 1.5fr 1fr 0.8fr;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-grid > div > strong {
  margin-bottom: 8px;
  color: var(--white);
}

.footer-grid a,
.footer-grid span,
.footer-grid p {
  color: rgba(255,255,255,.65);
  font-size: 0.84rem;
  text-decoration: none;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--white);
}

.footer-brand strong {
  color: var(--white);
}

.footer-brand small {
  color: rgba(255,255,255,.5);
}

.footer-brand .brand-mark {
  color: #a9d2ea;
  background: rgba(255,255,255,.08);
}

.footer-grid > div:first-child p {
  max-width: 360px;
  margin-top: 12px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  align-items: center;
  font-size: 0.82rem;
}

.mobile-contact-bar {
  display: none;
}

:focus-visible {
  outline: 3px solid rgba(45, 111, 159, 0.35);
  outline-offset: 3px;
}

@media (max-width: 1040px) {
  .main-nav {
    gap: 16px;
  }

  .main-nav > a:not(.button) {
    font-size: 0.84rem;
  }

  .hero-grid {
    gap: 44px;
  }

  .card-grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .topic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  html {
    scroll-padding-top: 78px;
  }

  body.has-mobile-contact {
    padding-bottom: 72px;
  }

  .header-inner {
    min-height: 72px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-toggle[aria-expanded="true"] span:nth-of-type(2) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-of-type(3) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-of-type(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    z-index: 999;
    top: 72px;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    align-content: start;
    gap: 0;
    padding: 26px 20px;
    background: var(--white);
  }

  body.menu-ready .main-nav:not(.open) {
    display: none;
  }

  .main-nav.open {
    display: grid;
  }

  .main-nav > a:not(.button) {
    padding: 16px 2px;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .main-nav .button {
    margin-top: 22px;
  }

  .hero {
    padding: 62px 0 52px;
  }

  .hero-grid,
  .two-column,
  .profile-grid,
  .faq-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 50px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .visual-card-main {
    inset: 0 12px 44px 0;
  }

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

  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .two-column,
  .profile-grid,
  .faq-layout,
  .contact-grid {
    gap: 44px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .price-card {
    min-height: 0;
  }

  .medical-disclaimer .container {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .mobile-contact-bar {
    position: fixed;
    z-index: 998;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    padding: 8px 10px max(8px, env(safe-area-inset-bottom));
    background: rgba(255,255,255,.96);
    border-top: 1px solid var(--line);
    box-shadow: 0 -10px 28px rgba(23, 59, 87, 0.09);
    backdrop-filter: blur(16px);
    grid-template-columns: 1fr 1fr;
  }

  .mobile-contact-bar a {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 10px 8px;
    color: var(--ink);
    border-radius: 9px;
    font-size: 0.8rem;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
  }

  .mobile-contact-bar a:last-child {
    color: var(--white);
    background: var(--primary);
  }
}

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .brand small {
    display: none;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 370px;
  }

  .visual-note {
    right: 4px;
    width: 200px;
  }

  .trust-grid,
  .card-grid.four,
  .topic-grid,
  .form-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    gap: 12px;
  }

  .section,
  .contact-section {
    padding: 78px 0;
  }

  .info-card {
    min-height: 0;
  }

  .card-number {
    margin-bottom: 32px;
  }

  .timeline article {
    gap: 15px;
    grid-template-columns: 48px 1fr;
  }

  .timeline article > span {
    width: 46px;
    height: 46px;
  }

  .timeline article:not(:last-child)::after {
    top: 45px;
    left: 23px;
  }

  .portrait-placeholder {
    min-height: 380px;
  }

  .contact-form,
.contact-panel {
    padding: 24px 20px;
  }

  .contact-cards a {
    display: grid;
    gap: 4px;
  }

  .contact-cards strong {
    text-align: left;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}


/* Audit 16. 7. 2026 – accessibility, privacy and legal-page refinements */
.content-review {
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.8rem;
}

.safe-contact-actions {
  display: grid;
  gap: 12px;
}

.privacy-warning {
  padding: 18px 20px;
  margin-top: 22px;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-sm);
}

.privacy-warning strong {
  color: var(--ink);
}

.privacy-warning p {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.84rem;
}

.site-footer a,
.site-footer .footer-bottom a {
  color: #d5dee4;
}

.site-footer a:hover,
.site-footer a:focus-visible,
.site-footer .footer-bottom a:hover,
.site-footer .footer-bottom a:focus-visible {
  color: #ffffff;
}

.footer-bottom {
  color: #bac8d1;
}

.legal-hero {
  padding: 80px 0 44px;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.legal-page {
  padding: 72px 0 100px;
}

.legal-content {
  max-width: 820px;
}

.legal-content h2 {
  margin-top: 54px;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
}

.legal-content h3 {
  margin-top: 32px;
  font-size: 1.15rem;
}

.legal-content li {
  margin-bottom: 8px;
}

.legal-meta {
  color: var(--muted);
  font-size: 0.9rem;
}

.error-page {
  display: grid;
  min-height: calc(100vh - 170px);
  place-items: center;
  padding: 80px 0;
  background: var(--surface);
}

.error-card {
  max-width: 760px;
  padding: 54px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
}

.error-code {
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 850;
  letter-spacing: 0.15em;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

@media (max-width: 620px) {
  .error-card {
    padding: 36px 22px;
  }

  .error-actions {
    display: grid;
  }
}


/* Obsahové rozšíření 20. 7. 2026 */
.hero-location {
  margin-top: 30px;
  color: var(--muted);
  font-size: .84rem;
  font-weight: 700;
}
.hero-location span { margin-inline: 7px; color: var(--primary); }
.listening-grid,
.safety-grid,
.included-layout {
  display: grid;
  gap: 70px;
  grid-template-columns: .75fr 1.25fr;
}
.quiet-quote {
  padding: 24px 26px;
  margin: 34px 0 0;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 1.02rem;
  font-weight: 700;
}
.device-note {
  padding: 24px 26px;
  margin-top: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.device-note strong { color: var(--ink); }
.device-note p { margin-top: 7px; color: var(--muted); font-size: .93rem; }
.card-grid.five { grid-template-columns: repeat(5, minmax(0,1fr)); }
.card-grid.five .info-card { min-height: 300px; }
.topic-grid-seven div:last-child { grid-column: span 2; }
.section-footnote { max-width: 820px; margin: 28px auto 0; text-align: center; font-size: .85rem; }
.light-note { color: rgba(255,255,255,.78); }
.safety-section { background: #f7f3ed; }
.safety-content { max-width: 780px; }
.urgent-box {
  padding: 22px 24px;
  margin: 28px 0;
  color: #5a3018;
  background: #fff7ed;
  border: 1px solid #e4c6a9;
  border-left: 5px solid #a85d2a;
  border-radius: var(--radius-sm);
}
.urgent-box strong { color: #54280f; }
.urgent-box p { margin-top: 7px; }
.risk-list {
  padding: 24px 26px;
  margin: 26px 0;
  background: var(--white);
  border: 1px solid #ded2c4;
  border-radius: var(--radius-sm);
}
.risk-list strong { color: var(--ink); }
.risk-list ul { display: grid; gap: 7px; padding-left: 21px; margin-bottom: 0; grid-template-columns: repeat(2,minmax(0,1fr)); }
.subpage-hero {
  padding: 88px 0 72px;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.subpage-hero-grid {
  display: grid;
  align-items: center;
  gap: 70px;
  grid-template-columns: 1.25fr .75fr;
}
.subpage-hero h1 { max-width: 760px; }
.subpage-summary {
  display: grid;
  gap: 13px;
  padding: 28px;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.subpage-summary strong { color: var(--ink); font-size: 1.15rem; }
.subpage-summary span { padding-top: 10px; border-top: 1px solid var(--line); font-size: .9rem; }
.detailed-pricing-grid { display: grid; gap: 22px; grid-template-columns: repeat(2,minmax(0,1fr)); }
.detailed-price-card {
  display: flex;
  min-height: 600px;
  flex-direction: column;
  padding: 38px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.detailed-price-card.featured { color: rgba(255,255,255,.84); background: var(--blue-deep); border-color: var(--blue-deep); box-shadow: var(--shadow); }
.detailed-price-card.featured .price-label,
.detailed-price-card.featured .price,
.detailed-price-card.featured .duration { color: var(--white); }
.detailed-price-card.featured > p:not(.price,.price-label,.duration) { color: rgba(255,255,255,.76); }
.detailed-price-card .duration { margin: -8px 0 28px; color: var(--primary-dark); font-weight: 800; }
.detailed-price-card .button { margin-top: auto; }
.detailed-price-card.featured .button { color: var(--ink); background: var(--white); border-color: var(--white); }
.preparation-note { padding: 20px; margin: 24px 0; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius-sm); }
.preparation-note strong { color: var(--white); }
.preparation-note p { margin-top: 5px; color: rgba(255,255,255,.76); font-size: .88rem; }
.included-list { display: grid; gap: 12px; padding: 0; margin: 0; list-style: none; }
.included-list li { position: relative; padding: 17px 18px 17px 52px; color: var(--ink); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); font-weight: 700; }
.included-list li::before { position: absolute; top: 17px; left: 18px; display: grid; width: 24px; height: 24px; place-items: center; color: var(--primary); background: var(--surface-strong); border-radius: 50%; content: "✓"; font-size: .75rem; }
.main-nav a[aria-current="page"] { color: var(--primary); }

@media (max-width: 1180px) {
  .card-grid.five { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .card-grid.five .info-card { min-height: 260px; }
}
@media (max-width: 860px) {
  .listening-grid,
  .safety-grid,
  .included-layout,
  .subpage-hero-grid { grid-template-columns: 1fr; gap: 42px; }
  .detailed-pricing-grid { grid-template-columns: 1fr; }
  .detailed-price-card { min-height: 0; }
  .card-grid.five { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 620px) {
  .hero-location span { display: none; }
  .hero-location { display: grid; gap: 4px; }
  .card-grid.five { grid-template-columns: 1fr; }
  .card-grid.five .info-card { min-height: 0; }
  .topic-grid-seven div:last-child { grid-column: auto; }
  .risk-list ul { grid-template-columns: 1fr; }
  .detailed-price-card { padding: 28px 22px; }
  .subpage-hero { padding: 64px 0 52px; }
}


/* Audit 20. 7. 2026 – final legal page and touch-target corrections */
.footer-bottom a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding-block: 8px;
  color: #e5edf2;
  font-size: 0.84rem;
  font-weight: 700;
}

.legal-footer-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.legal-footer .footer-bottom {
  min-height: 66px;
}

@media (max-width: 620px) {
  .legal-footer-nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 4px 22px;
  }

  .legal-footer-nav a {
    min-width: 120px;
  }
}


/* Lokální SEO stránka a regionální blok */
.local-seo-section {
  background: var(--white);
}

.local-seo-grid {
  display: grid;
  gap: 58px;
  align-items: start;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
}

.local-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.local-areas span,
.local-areas a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 9px 14px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .84rem;
  font-weight: 750;
  text-decoration: none;
}

.local-areas a:hover,
.local-areas a:focus-visible {
  color: var(--primary-dark);
  background: var(--surface-strong);
  border-color: #b8ceda;
}

.locality-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.locality-card {
  min-height: 188px;
  padding: 27px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.locality-card h3 {
  margin-bottom: 10px;
}

.locality-card p {
  color: var(--muted);
  font-size: .92rem;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: .82rem;
}

.breadcrumbs a {
  color: var(--primary-dark);
}

.region-summary {
  display: grid;
  gap: 14px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.region-summary strong {
  color: var(--ink);
  font-size: 1.12rem;
}

.region-summary span {
  color: var(--muted);
  font-size: .9rem;
}

.local-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.local-facts {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.local-facts div {
  display: grid;
  gap: 3px;
  padding: 17px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.local-facts strong {
  color: var(--ink);
  font-size: .88rem;
}

.local-facts span {
  color: var(--muted);
  font-size: .82rem;
}

@media (max-width: 860px) {
  .local-seo-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 620px) {
  .locality-grid {
    grid-template-columns: 1fr;
  }

  .local-cta {
    display: grid;
  }

  .local-cta .button {
    width: 100%;
  }
}


/* Audit 20. 7. 2026 – definitive privacy, contrast and touch corrections */
.legal-content a {
  color: #164f76;
  font-weight: 700;
}
.legal-content a:hover,
.legal-content a:focus-visible {
  color: #0e3855;
}
.legal-footer .footer-bottom > a,
.legal-footer-nav a {
  min-width: 44px;
  min-height: 44px;
  padding: 10px 8px;
  color: #f2f6f8;
  font-size: 0.9rem;
  line-height: 1.35;
}
.legal-footer .footer-bottom > a:hover,
.legal-footer .footer-bottom > a:focus-visible,
.legal-footer-nav a:hover,
.legal-footer-nav a:focus-visible {
  color: #ffffff;
  text-decoration-thickness: 2px;
}
@media (max-width: 860px) {
  body.has-mobile-contact main {
    padding-bottom: 78px;
  }
}


/* Build 20260720e – audit follow-up */
.profile-principles {
  display: grid;
  min-height: 390px;
  align-content: center;
  gap: 22px;
  padding: 42px;
  color: var(--text);
  background: linear-gradient(145deg, rgba(255,255,255,.78), rgba(255,255,255,.18)), var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.profile-principles strong {
  color: var(--ink);
  font-size: clamp(1.45rem, 3vw, 2rem);
}
.profile-principles ul {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.profile-principles li {
  position: relative;
  padding: 14px 16px 14px 46px;
  background: rgba(255,255,255,.78);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.profile-principles li::before {
  position: absolute;
  top: 14px;
  left: 16px;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: var(--primary);
  background: var(--surface-strong);
  border-radius: 50%;
  content: "✓";
  font-size: .72rem;
  font-weight: 800;
}
.site-footer .footer-grid a {
  min-height: 44px;
  align-items: center;
  padding-block: 10px;
}
@media (max-width: 620px) {
  .profile-principles { min-height: 0; padding: 30px 22px; }
  body.has-mobile-contact main { padding-bottom: 90px; }
}
