:root {
  --font-base: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --color-text: #2d3740;
  --color-heading: #142833;
  --color-muted: #65727c;
  --color-accent: #247f83;
  --color-accent-dark: #16646b;
  --color-soft: #f4f7f8;
  --color-border: #dce5e8;
  --color-white: #ffffff;
  --shadow-soft: 0 12px 32px rgba(20, 40, 51, .08);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-base);
  color: var(--color-text);
  background: var(--color-white);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;
  transform: translateY(-150%);
  padding: .65rem .9rem;
  border-radius: 6px;
  color: #fff;
  background: var(--color-accent-dark);
  font-weight: 800;
  transition: transform .15s ease;
}

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

a {
  color: var(--color-accent);
  text-decoration: none;
}

a:hover {
  color: var(--color-accent-dark);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--color-heading);
  font-weight: 800;
  letter-spacing: 0;
}

.site-header {
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(220, 229, 232, .75);
  box-shadow: 0 10px 34px rgba(20, 40, 51, .07);
  backdrop-filter: blur(16px);
}

.navbar {
  min-height: 78px;
  padding: .75rem 0;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  color: var(--color-heading);
  font-weight: 800;
  transition: color .18s ease;
}

.navbar-brand:hover,
.navbar-brand:focus {
  color: var(--color-accent-dark);
}

.brand-logo {
  display: block;
  width: 180px;
  height: auto;
  max-width: min(52vw, 180px);
}

.navbar-nav {
  gap: .12rem;
}

.nav-link {
  color: #2d3b45;
  font-weight: 650;
  font-size: .95rem;
  border-radius: 10px;
  padding: .58rem .78rem !important;
  transition: color .18s ease, background-color .18s ease, box-shadow .18s ease;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--color-accent-dark);
  background: rgba(36, 127, 131, .08);
}

.nav-link.active,
.nav-link.show,
.dropdown-item.active,
.dropdown-item:active {
  color: var(--color-accent-dark);
  background: rgba(36, 127, 131, .11);
}

.dropdown-toggle::after {
  margin-left: .32rem;
  vertical-align: .13em;
  opacity: .78;
}

.dropdown-menu {
  min-width: 250px;
  padding: .55rem;
  border: 1px solid rgba(220, 229, 232, .9);
  border-radius: 14px;
  box-shadow: 0 22px 56px rgba(20, 40, 51, .14);
}

.dropdown-item {
  border-radius: 10px;
  padding: .62rem .74rem;
  color: #25343d;
  font-weight: 650;
  line-height: 1.25;
}

.dropdown-item:hover,
.dropdown-item:focus {
  color: var(--color-accent-dark);
  background: rgba(36, 127, 131, .08);
}

.dropdown-divider {
  margin: .45rem -.55rem;
  border-color: rgba(220, 229, 232, .85);
}

.btn {
  border-radius: 6px;
  font-weight: 750;
  padding: .72rem 1rem;
}

.btn-accent {
  color: #fff;
  background: var(--color-accent);
  border: 1px solid var(--color-accent);
  box-shadow: 0 12px 24px rgba(36, 127, 131, .2);
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease;
}

.btn-accent:hover,
.btn-accent:focus,
.btn-accent.active {
  color: #fff;
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  box-shadow: 0 16px 30px rgba(22, 100, 107, .24);
  transform: translateY(-1px);
}

.btn-outline-business {
  color: var(--color-heading);
  border: 1px solid #9fb3ba;
  background: #fff;
}

.btn-outline-business:hover {
  color: var(--color-heading);
  border-color: var(--color-accent);
  background: #eef7f7;
}

.section {
  padding: 76px 0;
}

.section-compact {
  padding: 46px 0;
}

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

.page-domov .main > section:not(.hero) {
  background: #fff;
}

.page-domov .main > section:nth-of-type(odd):not(.hero) {
  background: var(--color-soft);
}

.section-title {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-title h2 {
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  margin: 20px 0 12px;
}

.section-title p {
  color: var(--color-muted);
  font-size: 1.05rem;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--color-accent);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 94px 0 78px;
  background:
    linear-gradient(135deg, rgba(15, 47, 58, .96), rgba(36, 127, 131, .82)),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.18), transparent 28%);
  background-position: center;
  background-size: cover;
  color: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: opacity 3000ms ease-in-out;
  will-change: opacity;
}

.hero-bg.is-visible {
  opacity: 1;
}

.hero:not(.hero-with-slider) .hero-bg-current {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(10, 24, 31, .9) 0%, rgba(10, 24, 31, .78) 48%, rgba(10, 24, 31, .6) 100%),
    linear-gradient(180deg, rgba(10, 24, 31, .22), rgba(10, 24, 31, .5));
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero .section-kicker {
  color: #9ee2dd;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 1.05;
  margin-bottom: 22px;
}

.hero p {
  color: rgba(255,255,255,.86);
  font-size: 1.12rem;
}

.hero .btn-outline-business {
  color: #fff;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.5);
}

.hero-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 8px;
  padding: 22px;
}

.hero-points {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  display: flex;
  gap: 10px;
  color: #fff;
}

.hero-points i {
  color: #9ee2dd;
}

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

.business-card,
.info-card {
  height: 100%;
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(20, 40, 51, .03);
}

.business-card h3,
.info-card h3 {
  font-size: 1.14rem;
  margin-bottom: 10px;
}

.business-card p,
.info-card p {
  color: var(--color-muted);
  margin-bottom: 14px;
}

.search-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.search-chip-grid a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: .72rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  color: var(--color-heading);
  background: #fff;
  font-weight: 750;
  box-shadow: 0 8px 22px rgba(20, 40, 51, .05);
}

.search-chip-grid a:hover,
.search-chip-grid a:focus {
  color: var(--color-accent-dark);
  border-color: #bfd7db;
  background: #eef7f7;
}

.process-list {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  counter-increment: step;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: #fff;
}

.process-list li::before {
  content: counter(step);
  display: grid;
  place-items: center;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #fff;
  background: var(--color-accent);
  font-size: .82rem;
  font-weight: 800;
}

.process-list--cards {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.process-list--cards li {
  flex-direction: column;
  min-height: 100%;
}

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

.feature-list li {
  padding-left: 26px;
  position: relative;
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: .55rem;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-accent);
}

.content-block {
  max-width: 860px;
}

.content-block p {
  color: var(--color-muted);
  font-size: 1.05rem;
}

.content-block h2:not(:first-child) {
  margin-top: 32px;
}

.content-block h2 {
  margin-bottom: 16px;
}

.content-block p + h2,
.content-block ul + h2,
.content-block ol + h2,
.content-block .info-card + h2 {
  margin-top: 36px;
}

.service-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 2.5rem;
  align-items: start;
}

.service-page-layout .content-block {
  max-width: none;
}

.service-switcher {
  position: sticky;
  top: 96px;
  padding: 22px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.service-switcher h2 {
  margin: 12px 0 10px;
  font-size: 1.2rem;
}

.service-switcher p:not(.section-kicker) {
  margin-bottom: 16px;
  color: var(--color-muted);
  font-size: .96rem;
}

.service-switcher nav {
  display: grid;
  gap: 6px;
}

.service-switcher nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: .7rem .78rem;
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--color-heading);
  font-weight: 750;
  line-height: 1.25;
}

.service-switcher nav a::after {
  content: "›";
  color: var(--color-accent);
  font-size: 1.1rem;
  line-height: 1;
}

.service-switcher nav a:hover,
.service-switcher nav a.active {
  color: var(--color-accent-dark);
  border-color: #cfe0e3;
  background: #eef7f7;
}

.faq-intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.faq-feature-card {
  height: 100%;
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.faq-feature-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  border-radius: 50%;
  color: #fff;
  background: var(--color-accent);
  font-weight: 800;
  font-size: .88rem;
}

.faq-feature-card h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.faq-feature-card p {
  margin-bottom: 0;
  color: var(--color-muted);
}

.faq-topic-strip {
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.faq-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.faq-sidebar {
  position: sticky;
  top: 96px;
  padding: 22px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(20, 40, 51, .03);
}

.faq-sidebar nav {
  display: grid;
  gap: 6px;
}

.faq-sidebar a {
  display: block;
  padding: .55rem .65rem;
  border-radius: 6px;
  color: var(--color-heading);
  font-weight: 700;
}

.faq-sidebar a:hover {
  color: var(--color-accent);
  background: #eef7f7;
}

.faq-groups {
  display: grid;
  gap: 2rem;
}

.faq-group {
  scroll-margin-top: 110px;
}

.faq-group-heading {
  max-width: 820px;
  margin-bottom: 20px;
}

.faq-group-heading h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
}

.faq-group-heading p:last-child {
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 1.03rem;
}

.faq-accordion {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.faq-accordion .accordion-item {
  border-color: var(--color-border);
}

.faq-accordion .accordion-button {
  padding: 1.05rem 1.15rem;
  color: var(--color-heading);
  background: #fff;
  font-weight: 800;
  line-height: 1.35;
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--color-accent-dark);
  background: #f4f7f8;
}

.faq-accordion .accordion-button:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 .2rem rgba(36, 127, 131, .14);
}

.faq-accordion .accordion-body {
  padding: 1.25rem 1.15rem;
  color: var(--color-muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.breadcrumbs {
  background: #f8fafb;
  border-bottom: 1px solid var(--color-border);
  padding: 14px 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--color-muted);
  font-size: .92rem;
}

.breadcrumbs li + li::before {
  content: "/";
  margin-right: 8px;
  color: #9aa8af;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  border-radius: 8px;
  background: #0f2f3a;
  color: #dbe8eb;
}

.cta-panel h2 {
  color: #fff;
}

.cta-panel p {
  margin: 0;
}

.b2c-note {
  padding: 22px;
  border-left: 4px solid var(--color-accent);
  background: #fff;
}

.folder-example {
  display: grid;
  gap: .55rem;
  margin: 1.2rem 0 2rem;
  padding: 1.2rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: #0f2028;
}

.folder-example code {
  color: #d8f4f1;
  white-space: normal;
}

.example-table {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: #fff;
}

.example-table th {
  color: var(--color-heading);
  background: #eef7f7;
}

.example-table td,
.example-table th {
  padding: 1rem;
  vertical-align: top;
}

.project-form {
  padding: 30px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.project-form-help {
  position: sticky;
  top: 118px;
  padding: 28px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.project-form-help h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
}

.project-form-help ul {
  display: grid;
  gap: .85rem;
  margin: 1.35rem 0;
  padding: 0;
  list-style: none;
}

.project-form-help li {
  display: flex;
  gap: .65rem;
  color: var(--color-muted);
  line-height: 1.5;
}

.project-form-help li i {
  flex: 0 0 auto;
  margin-top: .18rem;
  color: var(--color-accent);
}

.project-form-example {
  margin: 1.35rem 0;
  padding: 18px;
  border: 1px solid #cfe1e4;
  border-radius: 8px;
  background: #f4faf9;
}

.project-form-example h3 {
  margin-bottom: .55rem;
  font-size: 1rem;
}

.project-form-example p {
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: .95rem;
}

.project-form-contact {
  padding-top: 18px;
  border-top: 1px solid var(--color-border);
}

.project-form-contact span,
.project-form-contact a {
  display: block;
}

.project-form-contact span {
  margin-bottom: .35rem;
  color: var(--color-muted);
  font-weight: 700;
}

.project-form-contact a {
  color: var(--color-accent-dark);
  font-weight: 800;
}

.form-control,
.form-select {
  border-color: var(--color-border);
  border-radius: 6px;
  min-height: 48px;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 .2rem rgba(36, 127, 131, .16);
}

.form-help {
  margin-top: .45rem;
  color: var(--color-muted);
  font-size: .92rem;
  line-height: 1.5;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-error {
  color: #9b1c1c;
  font-size: .9rem;
  margin-top: .35rem;
}

.alert-business {
  border: 1px solid #f0c7c7;
  background: #fff7f7;
  color: #7f1d1d;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 2rem;
}

.about-feature-image,
.about-gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.about-feature-image img,
.about-gallery img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.about-feature-image img {
  aspect-ratio: 16 / 10;
  min-height: 0;
  object-position: center bottom;
}

.about-feature-image figcaption,
.about-gallery figcaption {
  padding: .9rem 1rem;
  color: var(--color-muted);
  font-size: .95rem;
}

.about-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.about-gallery--spaces {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.about-gallery img {
  aspect-ratio: 16 / 10;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.trust-strip article {
  padding: 22px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.trust-strip h3 {
  font-size: 1.08rem;
  margin-bottom: .55rem;
}

.trust-strip p {
  margin-bottom: 0;
  color: var(--color-muted);
}

.map-panel {
  overflow: hidden;
  min-height: 420px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.map-embed {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.team-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.6rem;
  align-items: start;
  padding: 1.25rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.team-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 310px;
  aspect-ratio: 1 / 1.08;
  border-radius: 8px;
  object-fit: cover;
}

.team-card h3 {
  margin-bottom: .3rem;
  font-size: 1.25rem;
}

.team-role {
  color: var(--color-accent);
  font-weight: 800;
}

.site-footer {
  padding: 56px 0 28px;
  background: #0f2028;
  color: #c9d6da;
}

.site-footer h2,
.site-footer h3 {
  color: #fff;
}

.site-footer h3 {
  font-size: 1rem;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 28px;
}

.site-footer li {
  margin-bottom: 8px;
}

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

.footer-small {
  color: #9eb0b7;
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: #9eb0b7;
}

.mobile-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1030;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border-top: 1px solid var(--color-border);
}

.mobile-sticky-cta a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 54px;
  color: var(--color-heading);
  font-weight: 800;
}

.cookie-consent {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1040;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
  padding: 18px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(15, 32, 40, .18);
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent__body {
  max-width: 620px;
}

.cookie-consent__title {
  margin: 0 0 4px;
  color: var(--color-heading);
  font-weight: 800;
}

.cookie-consent__body p:last-child {
  margin-bottom: 0;
  color: var(--color-muted);
}

.cookie-consent__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-consent__actions .btn {
  white-space: nowrap;
}

@media (max-width: 991.98px) {
  .site-header {
    background: rgba(255, 255, 255, .97);
  }

  .navbar {
    min-height: 70px;
  }

  .brand-logo {
    width: 168px;
    max-width: 58vw;
  }

  .navbar-toggler {
    border: 1px solid rgba(36, 127, 131, .18);
    border-radius: 12px;
    padding: .55rem .65rem;
  }

  .navbar-toggler:focus {
    box-shadow: 0 0 0 .2rem rgba(36, 127, 131, .14);
  }

  .navbar-collapse {
    max-height: calc(100vh - 92px);
    overflow-y: auto;
    margin-top: .8rem;
    padding: .7rem;
    background: #fff;
    border: 1px solid rgba(220, 229, 232, .9);
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
  }

  .navbar-nav {
    align-items: stretch !important;
    gap: .18rem;
    padding: 0;
  }

  .nav-link,
  .dropdown-item {
    padding: .78rem .85rem !important;
  }

  .dropdown-menu {
    margin: .15rem 0 .35rem;
    padding: .35rem;
    border-radius: 12px;
    box-shadow: none;
  }

  .navbar-nav .btn-accent {
    width: 100%;
    margin-top: .45rem;
  }

  .card-grid,
  .process-list,
  .feature-list,
  .about-intro-grid,
  .about-gallery,
  .trust-strip,
  .team-grid,
  .faq-intro-grid {
    grid-template-columns: 1fr;
  }

  .cta-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-sidebar,
  .service-switcher,
  .project-form-help {
    position: static;
  }

  .service-page-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 575.98px) {
  .section {
    padding: 54px 0;
  }

  .hero {
    padding: 70px 0 58px;
  }

  .hero h1 {
    font-size: clamp(2rem, 10vw, 2.65rem);
    line-height: 1.08;
  }

  .hero p {
    font-size: 1.02rem;
  }

  .hero .d-flex {
    align-items: stretch !important;
    flex-direction: column;
  }

  .project-form,
  .project-form-help,
  .cta-panel {
    padding: 22px;
  }

  .team-card {
    grid-template-columns: 1fr;
  }

  .team-card img {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .map-panel {
    min-height: 320px;
  }

  .map-embed {
    height: 320px;
  }

  body {
    padding-bottom: 54px;
  }

  .cookie-consent {
    left: 12px;
    right: 12px;
    bottom: 66px;
    align-items: stretch;
    flex-direction: column;
  }

  .cookie-consent__actions {
    align-items: stretch;
    flex-direction: column;
  }
}
