/* =========================================================
   MUDr. Jitka Lukáčová – praktický lékař pro děti a dorost
   Fresh, modern redesign. Plain CSS, no framework.
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  --sky: #38bdf8;
  --sky-deep: #0ea5e9;
  --sky-ink: #075985;
  --mint: #5eead4;
  --sunshine: #fcd34d;
  --coral: #fb7185;

  --ink: #1e293b;
  --muted: #64748b;
  --line: #e6eef5;
  --surface: #ffffff;
  --surface-2: #f4f9fd;
  --bg: #f7fbfe;

  --radius: 20px;
  --radius-sm: 12px;
  --shadow-sm: 0 2px 10px rgba(14, 116, 144, 0.06);
  --shadow: 0 18px 45px -20px rgba(2, 132, 199, 0.35);
  --shadow-lg: 0 30px 70px -30px rgba(2, 132, 199, 0.45);

  --maxw: 1160px;
  --font-sans: "Nunito", ui-rounded, "Segoe UI", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
}

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

a {
  color: var(--sky-deep);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--sky-ink);
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin: 0;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 22px;
}

.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;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 74px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--ink);
  font-size: 1.05rem;
}

.brand:hover {
  color: var(--ink);
}

.brand__mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, var(--sky), var(--mint));
  color: #fff;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.brand__mark svg {
  width: 24px;
  height: 24px;
}

.brand small {
  display: block;
  font-weight: 600;
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.nav__menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
}

.nav__menu a {
  display: inline-block;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.94rem;
}

.nav__menu a:hover {
  background: var(--surface-2);
  color: var(--sky-ink);
}

.nav__menu a.is-active {
  background: linear-gradient(140deg, var(--sky), var(--mint));
  color: #fff;
}

.nav__toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  width: 46px;
  height: 46px;
  cursor: pointer;
  color: var(--ink);
}

.nav__toggle svg {
  width: 24px;
  height: 24px;
  margin: auto;
}

/* ---------- Nav dropdown ---------- */
.has-dropdown {
  position: relative;
}

.nav__dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 9px 14px;
  border: none;
  background: none;
  border-radius: 999px;
  color: var(--ink);
  font-family: inherit;
  font-weight: 700;
  font-size: 0.94rem;
  cursor: pointer;
}

.nav__dropdown-toggle:hover,
.has-dropdown:hover .nav__dropdown-toggle,
.nav__dropdown-toggle[aria-expanded="true"] {
  background: var(--surface-2);
  color: var(--sky-ink);
}

.nav__chevron {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.has-dropdown:hover .nav__chevron,
.nav__dropdown-toggle[aria-expanded="true"] .nav__chevron {
  transform: rotate(180deg);
}

.nav__submenu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 250px;
  list-style: none;
  margin: 0;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}

.has-dropdown:hover .nav__submenu,
.has-dropdown:focus-within .nav__submenu,
.nav__submenu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__submenu a {
  display: block;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.9rem;
}

.nav__submenu a:hover {
  background: var(--surface-2);
  color: var(--sky-ink);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #eaf7ff 0%, #f3fbf8 60%, #fff 100%);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
  padding-block: 64px 72px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--sky-ink);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.hero__eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
}

.hero h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  margin-top: 18px;
}

.hero h1 .accent {
  color: var(--sky-deep);
}

.hero__lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 46ch;
  margin-top: 16px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero__media {
  position: relative;
}

.hero__photo {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid #fff;
  aspect-ratio: 4 / 3.4;
}

.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__badge {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: #fff;
  border-radius: 18px;
  padding: 14px 18px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__badge .icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, var(--sunshine), var(--coral));
  color: #fff;
}

.hero__badge strong {
  display: block;
  font-size: 1.05rem;
}

.hero__badge small {
  color: var(--muted);
  font-weight: 600;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.98rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn svg {
  width: 19px;
  height: 19px;
}

.btn--primary {
  background: linear-gradient(140deg, var(--sky-deep), var(--sky));
  color: #fff;
  box-shadow: var(--shadow);
}

.btn--primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--ghost {
  background: #fff;
  border-color: var(--line);
  color: var(--sky-ink);
}

.btn--ghost:hover {
  color: var(--sky-ink);
  border-color: var(--sky);
  transform: translateY(-2px);
}

/* ---------- Section basics ---------- */
.section {
  padding-block: 66px;
}

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

.section__head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 40px;
}

.section__kicker {
  color: var(--sky-deep);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.section__head h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-top: 10px;
}

.section__head p {
  color: var(--muted);
  margin-top: 12px;
}

/* ---------- Info cards (Dovolená / Kontakty / Aktuality) ---------- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card__icon {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: #fff;
  margin-bottom: 16px;
}

.card__icon svg {
  width: 26px;
  height: 26px;
}

.card__icon--sky {
  background: linear-gradient(140deg, var(--sky), var(--sky-deep));
}

.card__icon--mint {
  background: linear-gradient(140deg, var(--mint), #22c1a4);
}

.card__icon--sun {
  background: linear-gradient(140deg, var(--sunshine), #f59e0b);
}

.card h3 {
  font-size: 1.25rem;
}

.card__body {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.98rem;
}

.card__body p {
  margin: 0 0 8px;
}

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

.dates {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dates li {
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
}

.dates li:last-child {
  border-bottom: 0;
}

.dates .date {
  display: block;
  font-weight: 800;
  color: var(--sky-ink);
}

.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.contact-line svg {
  width: 18px;
  height: 18px;
  color: var(--sky-deep);
  margin-top: 4px;
  flex-shrink: 0;
}

.pill {
  display: inline-block;
  background: #fff1f2;
  color: #be123c;
  font-weight: 800;
  font-size: 0.82rem;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}

/* ---------- Ordinační hodiny (table) ---------- */
.hours-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  background: #fff;
}

table.hours {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  font-size: 0.92rem;
}

table.hours thead th {
  background: linear-gradient(140deg, var(--sky-deep), var(--sky));
  color: #fff;
  font-weight: 800;
  padding: 14px 12px;
  text-align: center;
  font-size: 0.82rem;
}

table.hours thead th:first-child {
  text-align: left;
  border-top-left-radius: var(--radius);
}

table.hours thead th:last-child {
  border-top-right-radius: var(--radius);
}

table.hours tbody td {
  padding: 14px 12px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

table.hours tbody tr:nth-child(even) {
  background: var(--surface-2);
}

table.hours tbody tr:last-child td {
  border-bottom: 0;
}

table.hours .day {
  text-align: left;
  font-weight: 800;
  color: var(--ink);
}

table.hours .tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.8rem;
  line-height: 1.3;
}

.tag--odber {
  background: #e0f2fe;
  color: var(--sky-ink);
}

.tag--poradna {
  background: #dcfce7;
  color: #15803d;
}

.tag--nemoc {
  background: #fef3c7;
  color: #b45309;
}

.tag--x {
  color: #cbd5e1;
  font-weight: 800;
}

.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 22px;
}

.legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--muted);
  font-weight: 700;
}

.legend i {
  width: 14px;
  height: 14px;
  border-radius: 5px;
  display: inline-block;
}

/* ---------- Pojišťovny ---------- */
.insurers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.insurer {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 26px;
  font-weight: 800;
  color: var(--sky-ink);
  box-shadow: var(--shadow-sm);
  min-width: 150px;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.insurer:hover {
  transform: translateY(-3px);
  border-color: var(--sky);
}

.insurer small {
  display: block;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.76rem;
  margin-top: 2px;
}

/* ---------- Nabídka služeb ---------- */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service {
  display: flex;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.service:hover {
  transform: translateY(-3px);
  border-color: var(--sky);
  box-shadow: var(--shadow);
}

.service__icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #e0f2fe;
  color: var(--sky-ink);
}

.service__icon svg {
  width: 24px;
  height: 24px;
}

.service__body h3 {
  font-size: 1.02rem;
  line-height: 1.35;
}

.service__body p {
  margin: 8px 0 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ---------- Ceník ---------- */
.pricelist {
  max-width: 820px;
  margin-inline: auto;
  display: grid;
  gap: 12px;
}

.price-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.price-item:hover {
  transform: translateY(-2px);
  border-color: var(--sky);
}

.price-item__label {
  font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
}

.price-item__label small {
  display: block;
  margin-top: 4px;
  font-weight: 500;
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.5;
}

.price-item__price {
  flex-shrink: 0;
  font-weight: 800;
  color: var(--sky-ink);
  background: #e0f2fe;
  border-radius: 999px;
  padding: 8px 16px;
  white-space: nowrap;
  font-size: 0.98rem;
}

.pricelist__note {
  max-width: 820px;
  margin: 22px auto 0;
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
}

/* ---------- Footer ---------- */
/* ---------- Kontakt ---------- */
.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;
  align-items: stretch;
}

.contact__cards {
  display: grid;
  gap: 14px;
  align-content: start;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: var(--shadow-sm);
}

.contact-card__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #e0f2fe;
  color: var(--sky-ink);
}

.contact-card__icon svg {
  width: 22px;
  height: 22px;
}

.contact-card__label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-bottom: 2px;
}

.contact-card__value {
  font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
}

.contact-card__value a {
  color: var(--ink);
}

.contact-card__value a:hover {
  color: var(--sky-ink);
}

.contact__map {
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  min-height: 320px;
}

.contact__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}

/* ---------- Subpage / article ---------- */
.page-hero {
  background: linear-gradient(160deg, #eaf7ff 0%, #f3fbf8 60%, #fff 100%);
  border-bottom: 1px solid var(--line);
  padding-block: 40px 44px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 14px;
}

.breadcrumb a {
  color: var(--sky-ink);
  font-weight: 700;
}

.breadcrumb span {
  color: var(--muted);
}

.page-hero h1 {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  line-height: 1.15;
  margin: 0;
}

.page-hero p {
  margin: 12px 0 0;
  color: var(--muted);
  max-width: 62ch;
}

.article {
  padding-block: 44px 20px;
}

.article__body {
  max-width: 820px;
  margin-inline: auto;
}

.article__body h2 {
  font-size: 1.3rem;
  margin: 34px 0 12px;
}

.article__body h3 {
  font-size: 1.05rem;
  margin: 24px 0 6px;
  color: var(--sky-ink);
}

.article__body p {
  margin: 0 0 14px;
}

.article__body ul {
  margin: 0 0 16px;
  padding-left: 22px;
}

.article__body li {
  margin-bottom: 6px;
}

.prose-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px 28px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}

.prose-card > :first-child {
  margin-top: 0;
}

.prose-card > :last-child {
  margin-bottom: 0;
}

/* Embedded Google Form */
.form-embed {
  max-width: 820px;
  margin-inline: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.form-embed iframe {
  display: block;
  width: 100%;
  min-height: 720px;
  border: 0;
}

.form-fallback {
  max-width: 820px;
  margin: 16px auto 0;
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
}

.form-fallback a {
  color: var(--sky-ink);
  font-weight: 700;
}

/* Vaccine group + PDF chips */
.vaccine-group h3 {
  margin-top: 0;
}

.pdf-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pdf-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.92rem;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.pdf-list a:hover {
  border-color: var(--sky);
  background: #fff;
  transform: translateY(-2px);
  color: var(--sky-ink);
}

.pdf-list svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--coral);
}

/* Emergency / info cards */
.info-block {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--sky);
  border-radius: 14px;
  padding: 20px 22px;
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
}

.info-block h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.08rem;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin: 10px 0 4px;
  font-size: 0.94rem;
}

.hours-table th,
.hours-table td {
  text-align: left;
  padding: 8px 10px;
  border-bottom: 1px solid var(--line);
}

.hours-table th {
  color: var(--muted);
  font-weight: 700;
}

.hours-table td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--sky-ink);
  white-space: nowrap;
}

.contact-line {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  margin-top: 10px;
  font-weight: 700;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #0b3a52;
  color: #cfe7f5;
  padding-block: 44px 26px;
  margin-top: 20px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer h4 {
  color: #fff;
  font-size: 1.02rem;
  margin: 0 0 14px;
}

.site-footer a {
  color: #cfe7f5;
}

.site-footer a:hover {
  color: #fff;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.footer__brand .brand__mark {
  box-shadow: none;
}

.footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__list li {
  margin-bottom: 9px;
  font-size: 0.94rem;
}

.footer__note {
  padding-top: 20px;
  font-size: 0.82rem;
  color: #9fc4da;
  text-align: center;
  line-height: 1.6;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 44px;
    padding-block: 44px 60px;
  }

  .hero__media {
    max-width: 460px;
    margin-inline: auto;
    width: 100%;
  }

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

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

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

@media (max-width: 760px) {
  .nav__toggle {
    display: grid;
  }

  .nav__menu {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 14px 18px 20px;
    box-shadow: var(--shadow);
    display: none;
  }

  .nav__menu.is-open {
    display: flex;
  }

  .nav__menu a {
    padding: 12px 14px;
  }

  .nav__dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 12px 14px;
    font-size: 1rem;
  }

  .nav__submenu {
    position: static;
    min-width: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0 0 4px 10px;
    display: none;
  }

  .nav__submenu.is-open {
    display: block;
  }

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

  .price-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

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

  .pdf-list {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}
