/* ==============================================
   ANTÉNY KREJČÍ — global.css
   Projekt: anteny-krejci.cz
   ============================================== */

/* ==============================================
   1. CUSTOM PROPERTIES (TOKENY)
   ============================================== */

:root {
  /* Barvy */
  --color-primary:      #1B3A5C;
  --color-cta:          #2563EB;
  --color-cta-hover:    #1D4ED8;
  --color-section-alt:  #EEF4FF;
  --color-text:         #1A1A2E;
  --color-text-muted:   #64748B;
  --color-border:       #E2E8F0;
  --color-success:      #16A34A;
  --color-bg:           #FFFFFF;

  /* Typografie */
  --font-heading: 'Outfit', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Velikosti (10px REM systém — html: 62.5%) */
  --text-sm:   1.5rem;   /* 15px — minimum */
  --text-base: 1.7rem;   /* 17px — min. pro seniory */
  --text-lg:   1.8rem;   /* 18px */
  --text-xl:   2rem;     /* 20px */
  --line-height-body: 1.75;

  /* Layout */
  --section-padding-y:   11.6rem; /* 116px */
  --section-padding-y-s: 5.3rem;  /* 53px — menší sekce */
  --container-max:       120rem;  /* 1200px */
  --container-pad:       2rem;    /* 20px na každé straně */

  /* Komponenty */
  --border-radius-card: 0.8rem;
  --border-radius-btn:  0.6rem;
  --btn-padding:        1.4rem 2.8rem;
  --btn-min-height:     4.8rem;
  --btn-font-weight:    600;

  /* Header */
  --header-height: 7rem;
}

/* ==============================================
   2. RESET & BASE
   ============================================== */

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

html {
  font-size: 62.5%; /* 1rem = 10px */
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 2rem);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--line-height-body);
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

table {
  border-collapse: collapse;
  width: 100%;
}

/* ==============================================
   3. PŘESKOČIT NA OBSAH
   ============================================== */

.skip-link {
  position: absolute;
  top: -10rem;
  left: 1.6rem;
  z-index: 9999;
  padding: 1.2rem 2rem;
  background: var(--color-primary);
  color: #fff;
  font-size: var(--text-base);
  font-weight: 600;
  border-radius: 0 0 var(--border-radius-btn) var(--border-radius-btn);
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

/* ==============================================
   4. TYPOGRAFIE
   ============================================== */

h1, h2, h3 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1.2;
  font-weight: 600;
}

h1 {
  font-size: clamp(3.4rem, 5.4vw, 5.2rem);
}

h2 {
  font-size: clamp(2.8rem, 4.4vw, 4.1rem);
}

h3 {
  font-size: clamp(2.2rem, 2.8vw, 2.7rem);
}

p {
  max-width: 68ch;
}

h1 + p,
h2 + p {
  margin-top: 2.4rem;
}

p + p {
  margin-top: 1.6rem;
}

strong {
  font-weight: 600;
}

.heading-line {
  display: block;
}

/* ==============================================
   5. LAYOUT — KONTEJNER & SEKCE
   ============================================== */

.container {
  width: min(var(--container-max), 100% - (var(--container-pad) * 2));
  margin-inline: auto;
}

.section {
  padding-block: var(--section-padding-y);
}

.section--alt {
  background: var(--color-section-alt);
}

.section--navy {
  background: var(--color-primary);
  color: #fff;
}

.section--navy h2,
.section--navy h3 {
  color: #fff;
}

.section--tight-top {
  padding-top: 7rem;
}

.section--tight-bottom {
  padding-bottom: 7rem;
}

.section--area-compact {
  padding-block: calc(var(--section-padding-y) * 0.7);
}

.section--compact-30 {
  padding-block: calc(var(--section-padding-y) * 0.7);
}

.section--compact-40 {
  padding-block: calc(var(--section-padding-y) * 0.6);
}

.section--kazety-compact {
  padding-block: calc(var(--section-padding-y) * 0.3);
}

.section--kazety-compact .content-split {
  align-items: flex-start;
}

.section--kazety-compact .content-split__body {
  align-self: center;
}

.section--kazety-compact .content-split__body p {
  margin-bottom: 1.2rem;
}

.section--kazety-compact .content-split__subheading--spacious {
  margin-top: 2.8rem;
  margin-bottom: 0.8rem;
}

.section--kazety-compact .content-list {
  margin-top: 1.2rem;
  gap: 0.6rem;
}

.section--kazety-compact .content-split__image {
  margin-top: 0;
}

.section__header {
  margin-bottom: 6.3rem;
}

.section__header--center {
  text-align: center;
}

.section__subtitle {
  margin-top: 3.2rem;
  font-size: var(--text-lg);
  color: var(--color-text);
  max-width: 60ch;
}

.section__header--center .section__subtitle {
  margin-inline: auto;
}

/* ==============================================
   6. HEADER & NAVIGACE
   ============================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow 0.2s;
}

.site-header--scrolled {
  box-shadow: 0 2px 12px rgba(27, 58, 92, 0.10);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: var(--header-height);
}

/* Logo */
.site-header__logo {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--color-primary);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Navigace */
.site-nav {
  margin-left: auto;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.site-nav__item {
  position: relative;
}

.site-nav__link {
  display: block;
  padding: 1rem 1.4rem;
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--color-text);
  border-radius: var(--border-radius-btn);
  transition: color 0.15s, background 0.15s;
}

.site-nav__link--dropdown {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.site-nav__link--dropdown svg {
  transition: transform 0.15s;
}

.site-nav__dropdown-icon {
  flex-shrink: 0;
  width: 1.8rem;
  height: 1.8rem;
  display: block;
}

.site-nav__link:hover {
  color: var(--color-cta);
  background: var(--color-section-alt);
}

.site-nav__link--active {
  color: inherit;
  background: transparent;
}

.site-nav__item--dropdown:hover .site-nav__link--dropdown,
.site-nav__item--dropdown:focus-within .site-nav__link--dropdown {
  color: var(--color-cta);
  background: var(--color-section-alt);
}

.site-nav__item--dropdown:hover .site-nav__link--dropdown svg,
.site-nav__item--dropdown:focus-within .site-nav__link--dropdown svg {
  transform: rotate(180deg);
}

.site-nav__submenu {
  position: absolute;
  top: calc(100% + 0.8rem);
  left: 0;
  z-index: 101;
  display: grid;
  min-width: 24rem;
  padding: 0.8rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-card);
  box-shadow: 0 12px 30px rgba(27, 58, 92, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.4rem);
  transition: opacity 0.15s, transform 0.15s, visibility 0.15s;
}

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

.site-nav__submenu-link {
  display: block;
  padding: 1rem 1.2rem;
  border-radius: var(--border-radius-btn);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--color-text);
  transition: color 0.15s, background 0.15s;
}

.site-nav__submenu-link:hover,
.site-nav__submenu-link:focus {
  color: var(--color-cta);
  background: transparent;
}

.site-nav__submenu-link[aria-current="page"] {
  color: var(--color-cta);
  background: transparent;
  font-weight: 600;
}

.site-nav__phone-item {
  display: none;
}

.site-nav__phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.2rem 1.8rem;
  min-height: 4.8rem;
  border-radius: var(--border-radius-btn);
  background: var(--color-cta);
  color: #fff;
  font-size: 1.7rem;
  font-weight: var(--btn-font-weight);
  transition: background 0.15s;
}

.site-nav__phone:hover,
.site-nav__phone:focus {
  background: var(--color-cta-hover);
}

/* Telefon v headeru */
.site-header__phone {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.8rem;
  background: var(--color-cta);
  color: #fff;
  font-size: 1.6rem;
  font-weight: var(--btn-font-weight);
  border-radius: var(--border-radius-btn);
  white-space: nowrap;
  flex-shrink: 0;
  min-height: 4.4rem;
  transition: background 0.15s;
}

.site-header__phone:hover {
  background: var(--color-cta-hover);
}

/* Hamburger */
.site-header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
  width: 4.4rem;
  height: 4.4rem;
  padding: 0.8rem;
  flex-shrink: 0;
}

.site-header__hamburger span {
  display: block;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.site-header__hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header__hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.site-header__hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==============================================
   7. FOOTER
   ============================================== */

.site-footer {
  background: var(--color-primary);
  color: #fff;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  padding-block: 5rem;
}

.site-footer__heading {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.6rem;
}

.site-footer__text {
  font-size: 1.55rem;
  line-height: 1.7;
  max-width: none;
  color: #fff;
}

.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.site-footer__contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  width: fit-content;
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  transition: opacity 0.15s;
}

.site-footer__contact-link svg {
  flex-shrink: 0;
}

.site-footer__phone {
  font-size: 2rem;
}

.site-footer__contact-link:hover {
  opacity: 0.8;
}

.site-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.site-footer__nav a {
  font-size: 1.55rem;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.15s;
}

.site-footer__nav a:hover {
  opacity: 0.7;
}

.site-footer__area-detail {
  margin-top: 1.2rem;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-block: 2rem;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.55);
}

.site-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
}

.site-footer__credit {
  color: inherit;
  text-decoration: none;
}

.site-footer__credit:hover {
  color: #fff;
}

/* ==============================================
   8. TLAČÍTKA
   ============================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: var(--btn-padding);
  min-height: var(--btn-min-height);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--btn-font-weight);
  border-radius: var(--border-radius-btn);
  line-height: 1.2;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-cta);
  color: #fff;
  border: 2px solid var(--color-cta);
}

.btn--primary:hover {
  background: var(--color-cta-hover);
  border-color: var(--color-cta-hover);
}

.btn--secondary {
  background: transparent;
  color: var(--color-cta);
  border: 2px solid var(--color-cta);
}

.btn--secondary:hover {
  background: var(--color-cta-hover);
  border-color: var(--color-cta-hover);
  color: #fff;
}

.btn--lg {
  font-size: var(--text-lg);
  padding: 1.6rem 3.2rem;
  min-height: 5.6rem;
}

/* ==============================================
   9. HERO — HOMEPAGE
   ============================================== */

.hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(48rem, 65vh, 72rem);
  display: flex;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* Gradient odstraněn */
.hero__overlay {
  display: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: inherit;
  padding-block: 6rem 7rem;
  color: #fff;
}

/* Text blok — max polovina šířky containeru, zarovnán vlevo */
.hero__text {
  max-width: 68rem;
}

.hero__text h1 {
  color: #fff;
  max-width: 30ch;
  margin-bottom: 2rem;
}

.hero__title-line {
  display: block;
  white-space: nowrap;
}

.hero__location {
  font-size: var(--text-lg);
  color: #fff;
  margin-top: 1rem;
  margin-bottom: 2.4rem;
  max-width: none;
}

.hero__tagline {
  font-size: var(--text-lg);
  line-height: 1.65;
  color: #fff;
  max-width: 44ch;
  margin-bottom: 3.2rem;
}

.hero__phone {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.6rem 3.2rem;
  background: var(--color-cta);
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: var(--border-radius-btn);
  min-height: 6rem;
  transition: background 0.15s;
  align-self: flex-start;
}

.hero__phone:hover {
  background: var(--color-cta-hover);
}

/* ==============================================
   10. PŘEHLED SLUŽEB — DLAŽDICE
   ============================================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 34rem;
  background: var(--color-bg);
  border: 2px solid rgba(255, 255, 255, 0.70);
  border-radius: var(--border-radius-card);
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(27, 58, 92, 0.12);
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
  text-decoration: none;
  color: #fff;
}

.service-card:hover {
  border-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 26px rgba(27, 58, 92, 0.20);
  transform: translateY(-2px);
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(27, 58, 92, 0.84) 0%,
    rgba(27, 58, 92, 0.68) 58%,
    rgba(27, 58, 92, 0.50) 100%
  );
  pointer-events: none;
}

.service-card__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.service-card__image,
.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(1px) brightness(0.80) saturate(0.92);
  transform: scale(1.03);
}

.service-card__image--antennas,
.service-card__image--antennas img {
  object-position: center 45%;
}

.service-card__image--cameras,
.service-card__image--cameras img {
  object-position: center 45%;
}

.service-card__body {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3.6rem;
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 3vw, 3.5rem);
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.4rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
}

.service-card__desc {
  font-size: var(--text-lg);
  color: #fff;
  line-height: 1.6;
  max-width: none;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.28);
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  margin-top: 2.8rem;
  padding: 1.1rem 1.6rem;
  background: #fff;
  border-radius: var(--border-radius-btn);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-cta);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}

.service-card:hover .service-card__link {
  background: var(--color-cta);
  color: #fff;
}

/* ==============================================
   11. DŮVODY — PROČ MARTIN
   ============================================== */

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 5.2rem;
  row-gap: 4.4rem;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
  text-align: center;
}

.trust-item__icon {
  width: 4rem;
  height: 4rem;
  color: var(--color-cta);
  flex-shrink: 0;
}

.trust-item__title {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.3;
}

.trust-item__text {
  font-size: var(--text-base);
  color: var(--color-text);
  line-height: 1.6;
  max-width: 28ch;
}

/* ==============================================
   12. RECENZE — SLIDER
   ============================================== */

.slider {
  position: relative;
  isolation: isolate;
  --slider-min-height: 32rem;
}

.slider__track {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  min-height: var(--slider-min-height);
  transition: height 0.28s ease;
}

.slider__track::-webkit-scrollbar {
  display: none;
}

.slider__item {
  flex: 0 0 calc((100% - 4rem) / 3);
  min-width: 28rem;
  padding: 3.2rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-card);
  scroll-snap-align: start;
}

.slider__quote {
  font-size: var(--text-lg);
  line-height: 1.7;
  color: var(--color-text);
  font-style: italic;
  max-width: none;
  margin-bottom: 2rem;
}

.slider__quote::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--color-section-alt);
  line-height: 0;
  vertical-align: -1.8rem;
  margin-right: 0.4rem;
}

.slider__author {
  font-weight: 600;
  font-size: var(--text-base);
  color: var(--color-primary);
}

.slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  margin-top: 2.8rem;
}

.slider__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.4rem;
  height: 4.4rem;
  border: 2px solid var(--color-border);
  border-radius: 50%;
  background: var(--color-bg);
  color: var(--color-primary);
  transition: border-color 0.15s, background 0.15s;
}

.slider__btn:hover {
  border-color: var(--color-cta);
  background: var(--color-section-alt);
}

/* ==============================================
   13. NÁHLED O MNĚ — HOMEPAGE
   ============================================== */

.about-preview {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 5rem;
}

.about-preview__image {
  width: clamp(22rem, 28vw, 32rem);
  flex-shrink: 0;
  border-radius: var(--border-radius-card);
  overflow: hidden;
}

.about-preview__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 4;
}

.about-preview__content h2 {
  margin-bottom: 1.6rem;
}

.about-preview__text {
  margin-bottom: 2.8rem;
  color: var(--color-text);
}

.about-preview__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--color-cta);
  font-size: var(--text-lg);
}

.about-preview__link:hover {
  text-decoration: underline;
}

/* ==============================================
   14. CTA BLOK
   ============================================== */

.cta-block {
  text-align: center;
  padding: var(--section-padding-y) 0;
  background: var(--color-bg);
}

.cta-block--alt {
  background: var(--color-section-alt);
}

.cta-block--service .cta-block__text {
  margin-bottom: 2.7rem;
}

.cta-block__text {
  font-size: clamp(3rem, 4.4vw, 4.4rem);
  font-family: var(--font-heading);
  color: var(--color-primary);
  margin-bottom: 1.6rem;
  max-width: 50ch;
  margin-inline: auto;
}

.cta-block__lead {
  margin-inline: auto;
  margin-bottom: 3.2rem;
  max-width: 58ch;
  font-size: var(--text-lg);
  color: var(--color-text);
  line-height: 1.7;
}

.cta-block__lead-line {
  display: block;
}

.cta-block__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  flex-wrap: wrap;
  margin-bottom: 1.8rem;
}

.cta-block__phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.6rem 3.2rem;
  min-width: 18rem;
  background: var(--color-cta);
  color: #fff;
  font-size: var(--text-lg);
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: var(--border-radius-btn);
  min-height: 6.4rem;
  transition: background 0.15s;
}

.cta-block__phone:hover {
  background: var(--color-cta-hover);
}

.cta-block__message {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.6rem 3.2rem;
  min-width: 18rem;
  min-height: 6.4rem;
  border: 2px solid var(--color-cta);
  border-radius: var(--border-radius-btn);
  background: #fff;
  color: var(--color-cta);
  font-size: var(--text-lg);
  font-weight: 600;
  transition: background 0.15s, color 0.15s;
}

.cta-block__message:hover {
  background: var(--color-cta-hover);
  border-color: var(--color-cta-hover);
  color: #fff;
}

.cta-block__secondary {
  display: block;
  margin-inline: auto;
  margin-top: 0;
  font-size: var(--text-base);
  color: var(--color-text);
  text-align: center;
}

.cta-block__secondary a {
  color: var(--color-cta);
  text-decoration: underline;
}

/* ==============================================
   15. HLAVIČKA VNITŘNÍCH STRÁNEK
   ============================================== */

.page-header {
  background: var(--color-primary);
  color: #fff;
  padding-block: 7.2rem 6rem;
}

.page-header h1 {
  color: #fff;
  max-width: 24ch;
}

.page-header__intro {
  margin-top: 2.9rem;
  font-size: var(--text-lg);
  color: #fff;
  max-width: 60ch;
  line-height: 1.65;
}

.content-narrow {
  max-width: 80rem;
}

.section-compact {
  padding-block: 3.2rem;
}

.section-cta {
  margin-top: 3.2rem;
  text-align: center;
}

.section-cta__text {
  margin-inline: auto;
  margin-bottom: 1.6rem;
  max-width: 50ch;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-primary);
}

.section-cta__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
}

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

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.4rem;
}

.tag-pill {
  padding: 0.8rem 1.6rem;
  border-radius: var(--border-radius-btn);
  background: var(--color-section-alt);
  color: var(--color-primary);
  font-size: 1.6rem;
  font-weight: 600;
}

.icon-pill-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem;
  margin-top: 2.4rem;
}

.icon-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.6rem;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-btn);
  background: #fff;
  color: var(--color-primary);
  font-size: 1.6rem;
  font-weight: 600;
}

.icon-pill svg {
  flex-shrink: 0;
}

/* ==============================================
   16. SEKCE OBSAHU — FOTO + TEXT
   ============================================== */

.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 5vw, 6rem);
  align-items: center;
}

.content-split--reverse {
  direction: rtl;
}

.content-split--reverse > * {
  direction: ltr;
}

.content-split__image {
  border-radius: var(--border-radius-card);
  overflow: hidden;
}

.content-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 50rem;
}

.content-split__body h2 {
  margin-bottom: 2.4rem;
}

.content-split__body p {
  margin-bottom: 1.6rem;
  color: var(--color-text);
}

.content-split__subheading {
  margin-top: 3.2rem;
  margin-bottom: 1.2rem;
}

.content-split__subheading--spacious {
  margin-top: 4.8rem;
}

.content-split__image--show-full img {
  height: auto;
  max-height: none;
  object-fit: contain;
}

/* Seznam v obsahu */
.content-list {
  margin-top: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.content-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: var(--text-base);
  line-height: 1.55;
}

.content-list li::before {
  content: '';
  display: block;
  width: 1.8rem;
  height: 1.8rem;
  min-width: 1.8rem;
  background: var(--color-cta);
  border-radius: 50%;
  margin-top: 0.15em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='white' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 70%;
}

/* ==============================================
   17. KROKY — JAK TO PROBÍHÁ
   ============================================== */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.2rem;
  counter-reset: steps;
}

.step {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.step__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.2rem;
  height: 5.2rem;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 600;
  border-radius: 50%;
  flex-shrink: 0;
}

.step__title {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 600;
  color: var(--color-primary);
}

.step__text {
  font-size: var(--text-base);
  color: var(--color-text);
  line-height: 1.6;
  max-width: none;
}

/* ==============================================
   18. CENÍK — TABULKA
   ============================================== */

.pricing {
  overflow-x: auto;
}

.pricing-table {
  width: 100%;
  border-radius: var(--border-radius-card);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.pricing-table thead th {
  background: var(--color-primary);
  color: #fff;
  padding: 1.4rem 2rem;
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 600;
  text-align: left;
}

.pricing-table tbody tr:nth-child(odd) {
  background: var(--color-bg);
}

.pricing-table tbody tr:nth-child(even) {
  background: var(--color-section-alt);
}

.pricing-table tbody td {
  padding: 1.3rem 2rem;
  font-size: var(--text-base);
  line-height: 1.5;
  vertical-align: top;
}

.pricing-table tbody td:last-child {
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  white-space: nowrap;
  color: var(--color-primary);
}

.pricing-note {
  margin-top: 1.2rem;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: none;
}

/* ==============================================
   19. BOX — ZVÝHODNĚNÁ CENA PRO SENIORY
   ============================================== */

.senior-box {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2.4rem 3.2rem;
  background: var(--color-section-alt);
  border-left: 4px solid var(--color-cta);
  border-radius: 0 var(--border-radius-card) var(--border-radius-card) 0;
  margin-block: 3.2rem;
}

.senior-box__badge {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background: var(--color-cta);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 0.4rem;
}

.senior-box__body {
  flex: 1;
}

.senior-box__price {
  font-size: 2.6rem;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.2;
  margin-bottom: 0.6rem;
  max-width: none;
}

.senior-box__price s {
  font-size: 1.8rem;
  color: var(--color-text-muted);
  font-weight: 400;
  margin-left: 0.8rem;
}

.senior-box__text {
  font-size: var(--text-base);
  color: var(--color-text);
  max-width: none;
}

/* ==============================================
   20. OBLAST PŮSOBENÍ
   ============================================== */

.area {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: var(--text-base);
  color: var(--color-text-muted);
}

.area__icon {
  width: 2.4rem;
  height: 2.4rem;
  color: var(--color-cta);
  flex-shrink: 0;
}

/* ==============================================
   21. INTERNÍ ODKAZ — BLOK
   ============================================== */

.internal-link-block {
  margin-top: 2.4rem;
  padding: 2.4rem 3.2rem;
  background: var(--color-section-alt);
  border-radius: var(--border-radius-card);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.internal-link-block__text {
  font-size: var(--text-base);
  color: var(--color-text);
  max-width: none;
}

.internal-link-block__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--color-cta);
  white-space: nowrap;
  transition: gap 0.15s;
}

.internal-link-block__link:hover {
  gap: 0.8rem;
  text-decoration: underline;
}

/* ==============================================
   22. FORMULÁŘ
   ============================================== */

.form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 60rem;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.form__label {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
}

.form__input,
.form__textarea {
  padding: 1.2rem 1.6rem;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-bg);
  border: 1px solid #CBD5E1;
  border-radius: var(--border-radius-btn);
  transition: border-color 0.15s, box-shadow 0.15s;
  width: 100%;
}

.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--color-cta);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.form__textarea {
  resize: vertical;
  min-height: 14rem;
  line-height: 1.6;
}

.form__success {
  display: none;
  padding: 1.6rem 2rem;
  background: #dcfce7;
  border: 1px solid var(--color-success);
  border-radius: var(--border-radius-btn);
  color: #15803d;
  font-size: var(--text-base);
  font-weight: 600;
}

.form__success--visible {
  display: block;
}

.form__success a {
  color: #15803d;
}

.form__submit {
  align-self: flex-start;
}

.form__note {
  margin-top: 0.8rem;
  max-width: 52ch;
  font-size: 1.5rem;
  color: var(--color-text-muted);
}

.form__hint {
  margin-top: -0.4rem;
  font-size: 1.5rem;
  color: var(--color-text-muted);
}

/* ==============================================
   23. KONTAKTNÍ STRÁNKA
   ============================================== */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 8rem;
  align-items: start;
}

.contact-hero {
  grid-column: 1 / -1;
  max-width: 78ch;
}

.contact-hero__lead {
  margin-top: 1.8rem;
  max-width: none;
}

.contact-phone-pane {
  grid-column: 1;
  grid-row: 2;
}

.contact-form-pane {
  grid-column: 2;
  grid-row: 2 / span 2;
  margin-top: 2.2rem;
}

.contact-area-pane {
  grid-column: 1;
  grid-row: 3;
  display: grid;
  gap: 2.4rem;
}

.contact-area-pane .area-map-figure {
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}

.contact-area-note {
  margin-top: -0.4rem;
  font-size: 1.6rem;
  color: var(--color-text-muted);
  max-width: none;
}

.contact-card {
  padding: 2.4rem;
  background: var(--color-section-alt);
  border-radius: var(--border-radius-card);
}

.contact-intro {
  margin-bottom: 2.4rem;
}

.contact-muted {
  font-size: 1.6rem;
  color: var(--color-text-muted);
}

.text-link {
  color: var(--color-cta);
}

.text-link--strong {
  font-weight: 600;
}

.contact-phone-block {
  margin-bottom: 4rem;
}

.contact-phone-block__number {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  font-family: var(--font-heading);
  font-size: clamp(3.6rem, 6vw, 5.6rem);
  font-weight: 600;
  color: var(--color-cta);
  line-height: 1;
}

.contact-phone-block__note {
  margin-top: 0.8rem;
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: none;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  font-size: var(--text-base);
  color: var(--color-text);
}

.contact-info__item {
  display: flex;
  gap: 0.6rem;
  max-width: none;
}

.contact-info__label {
  font-weight: 600;
  min-width: 4rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
  gap: 4rem;
}

.info-grid__title {
  margin-bottom: 1.2rem;
  font-size: 2rem;
}

/* ==============================================
   24. STRÁNKA O MNĚ
   ============================================== */

.about-main {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5rem;
  align-items: start;
}

.about-main__image {
  width: clamp(26rem, 30vw, 36rem);
  flex-shrink: 0;
  border-radius: var(--border-radius-card);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(27, 58, 92, 0.12);
}

.about-main__image img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.about-main__image-mobile {
  display: none;
}

.about-main__content h2 {
  margin-top: 3.2rem;
  margin-bottom: 1.6rem;
}

.about-main__content h2:first-child {
  margin-top: 0;
}

.about-services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
  margin-top: 1.6rem;
}

.about-services__item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.8rem;
  min-height: 100%;
  padding: 1.8rem 2.2rem;
  background: var(--color-section-alt);
  border-radius: var(--border-radius-btn);
  border: 1px solid transparent;
  text-decoration: none;
  color: var(--color-text);
  transition: background 0.15s, border-color 0.15s;
}

.about-services__item:hover {
  background: #dbeafe;
  border-color: #bfdbfe;
}

.about-services__name {
  font-weight: 600;
  color: var(--color-primary);
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 2.8rem;
}

.about-services__desc {
  margin-top: 0.3rem;
  max-width: none;
  font-size: 1.6rem;
  color: var(--color-text-muted);
}

.about-services__link-arrow {
  margin-top: 0.2rem;
  flex-shrink: 0;
  color: var(--color-cta);
  font-size: 1.8rem;
}

/* ==============================================
   25. ZPĚT NA ZAČÁTEK
   ============================================== */

.back-to-top {
  position: fixed;
  bottom: 3rem;
  right: 2.4rem;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(27, 58, 92, 0.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  transform: translateY(1rem);
}

.back-to-top--visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--color-cta);
}

/* ==============================================
   26. FOCUS & PŘÍSTUPNOST
   ============================================== */

:focus-visible {
  outline: 3px solid var(--color-cta);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ==============================================
   27. STRÁNKA 404
   ============================================== */

.error-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 60vh;
  padding: 6rem 2rem;
}

.error-page__code {
  font-family: var(--font-heading);
  font-size: 10rem;
  font-weight: 600;
  color: var(--color-section-alt);
  line-height: 1;
  margin-bottom: 2rem;
}

.error-page h1 {
  margin-bottom: 1.6rem;
}

.error-page p {
  margin-bottom: 3.2rem;
  color: var(--color-text-muted);
}

/* ==============================================
   28. OBLAST PŮSOBENÍ — mapa
   ============================================== */

.area-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.area-map-figure {
  margin: 0;
  border-radius: var(--border-radius-card);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(27, 58, 92, 0.10);
}

.area-map-figure svg {
  display: block;
  width: 100%;
  height: auto;
}

.feature-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(3rem, 5vw, 6rem);
  align-items: center;
}

.feature-split__content p {
  color: var(--color-text);
}

.feature-split__title {
  margin-bottom: 2.4rem;
}

.feature-list {
  display: grid;
  gap: 1.2rem;
}

.feature-list__item {
  display: grid;
  grid-template-columns: 4.8rem 1fr;
  gap: 1.6rem;
  align-items: center;
  padding: 1.4rem 1.8rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-card);
}

.feature-list__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  background: var(--color-section-alt);
  color: var(--color-cta);
}

.feature-list__icon svg {
  flex-shrink: 0;
}

.feature-list__text {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-primary);
  max-width: none;
}

/* ==============================================
   29. RESPONZIVNÍ DESIGN
   ============================================== */

/* Tablet — 900px */
@media (max-width: 900px) {
  /* Header — mobilní menu */
  .site-header__hamburger {
    display: flex;
    margin-left: auto;
  }

  .site-header__phone {
    display: none;
  }

  .site-nav {
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 4px 16px rgba(27, 58, 92, 0.10);
    display: none;
    z-index: 99;
    margin-left: 0;
  }

  .site-nav--open {
    display: block;
  }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    padding: 1.2rem;
    gap: 0.4rem;
  }

  .site-nav__link {
    padding: 1.2rem 1.6rem;
    font-size: var(--text-lg);
  }

  .site-nav__link--dropdown {
    display: block;
    color: var(--color-primary);
    background: transparent;
  }

  .site-nav__dropdown-icon {
    display: none;
  }

  .site-nav__submenu {
    position: static;
    display: grid;
    min-width: 0;
    padding: 0 0 0.6rem 1.2rem;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
  }

  .site-nav__submenu-link {
    padding: 1rem 1.6rem;
    font-size: var(--text-base);
    color: var(--color-text);
  }

  .site-nav__phone-item {
    display: block;
    margin-top: 0.8rem;
  }

  .site-nav__phone {
    display: flex;
    width: 100%;
  }

  /* Hero — na mobilu text nahoře, telefon dole */
  .hero {
    min-height: clamp(38rem, 52vh, 58rem);
  }

  .hero__bg {
    object-position: 58% center;
  }

  .hero__overlay {
    display: block;
    background: linear-gradient(
      to top,
      rgba(27, 58, 92, 0.92) 0%,
      rgba(27, 58, 92, 0.70) 55%,
      rgba(27, 58, 92, 0.20) 100%
    );
    position: absolute;
    inset: 0;
    z-index: 1;
  }

  .hero__content {
    align-items: stretch;
    padding-block: 5rem 4rem;
  }

  .hero__content > .container {
    display: flex;
  }

  .hero__text {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
  }

  .hero__title-line {
    display: inline;
    white-space: normal;
  }

  .hero__phone {
    margin-top: auto;
  }

  /* Trust grid */
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* About preview */
  .about-preview {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-preview__image {
    width: 100%;
    max-width: 32rem;
  }

  /* Content split */
  .content-split {
    grid-template-columns: 1fr;
  }

  .content-split--reverse {
    direction: ltr;
  }

  .content-split__body {
    order: 1;
  }

  .content-split__image {
    order: 2;
  }

  /* Menší mezera mezi prvními dvěma content sekcemi na mobilu */
  section[aria-labelledby="anteny-heading"].section--tight-bottom,
  section[aria-labelledby="vyuka-heading"].section--tight-bottom {
    padding-bottom: 4.2rem; /* -40 % z 7rem */
  }

  section[aria-labelledby="satelity-heading"].section--tight-top,
  section[aria-labelledby="ostatni-pomoc-heading"].section--tight-top {
    padding-top: 4.2rem; /* -40 % z 7rem */
  }

  .section--kazety-compact .content-split__image {
    margin-top: 0;
  }

  /* Steps */
  .steps {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }

  .step {
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
  }

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

  .slider__item {
    flex-basis: calc((100% - 2rem) / 2);
  }

  .slider {
    --slider-min-height: 29rem;
  }

  /* Footer */
  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-block: 4rem;
  }

  .site-footer__bottom-inner {
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
  }

  /* About main */
  .about-main {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-main__image {
    display: none;
  }

  .about-main__image-mobile {
    display: block;
    width: 100%;
    max-width: 34rem;
    height: 26rem;
    margin: 1.8rem 0 2.2rem;
    border-radius: var(--border-radius-card);
    object-fit: cover;
    object-position: center 18%;
  }

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

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .contact-hero,
  .contact-phone-pane,
  .contact-form-pane,
  .contact-area-pane {
    grid-column: 1;
    grid-row: auto;
  }

  .contact-form-pane {
    margin-top: 0;
  }

  .contact-area-pane .area-map-figure {
    order: 3;
  }

  .contact-area-note {
    order: 2;
    margin-top: 0;
  }

  .area-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .area-map-figure {
    order: 0;
  }

  .feature-split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* Mobil — 600px */
@media (max-width: 600px) {
  :root {
    --section-padding-y: 8.5rem;
  }

  h1 {
    font-size: clamp(3rem, 7.8vw, 3.7rem);
  }

  .hero__content {
    padding-block: 6rem 3.2rem;
  }

  .hero__text h1 {
    max-width: none;
    margin-bottom: 1.4rem;
  }

  .hero__tagline {
    font-size: var(--text-base);
    line-height: 1.55;
    margin-bottom: 2.2rem;
  }

  .hero__phone {
    width: fit-content;
    max-width: 100%;
    justify-content: center;
    padding: 1.4rem 1.8rem;
    font-size: 1.9rem;
  }

  .site-header__phone span {
    display: none; /* Skryje text, nechá jen ikonu */
  }

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

  .slider__item {
    flex-basis: 100%;
    padding: 2.4rem;
  }

  .slider {
    --slider-min-height: 26rem;
  }

  .senior-box {
    flex-direction: column;
    gap: 1.2rem;
  }

  .internal-link-block {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-block__phone {
    font-size: var(--text-lg);
    padding: 1.6rem 3.2rem;
  }

  .cta-block__phone,
  .cta-block__message {
    width: 100%;
  }

  .contact-phone-block__number {
    font-size: 3.6rem;
  }

  .about-main__image-mobile {
    max-width: 30rem;
    height: 22rem;
    object-position: center 16%;
  }

  .pricing-table thead th,
  .pricing-table tbody td {
    padding: 1rem 1.4rem;
    font-size: 1.5rem;
  }

  /* Service pages: pricing CTA spacing */
  .pricing-note {
    margin-bottom: 2.4rem;
  }

  .section-cta {
    margin-top: 2.4rem;
  }

  .section-cta__text {
    margin-bottom: 2rem;
  }

  .section-cta__actions {
    row-gap: 1.4rem;
  }

  .pricing + .section-cta {
    text-align: left;
  }

  .pricing + .section-cta .section-cta__text {
    margin-inline: 0;
  }

  .pricing + .section-cta .section-cta__actions {
    justify-content: flex-start;
  }

  /* Service pages: area section spacing */
  .section--area-compact .section__header {
    margin-bottom: 1.8rem;
  }

  .section--area-compact .area-layout {
    gap: 2.2rem;
  }

  .section--area-compact .area-map-figure {
    margin-top: 1.2rem;
  }
}
