/* --- Variables --- */
:root {
  --bg-dark: #1a1a1c;
  --bg-header: #0f0f11;
  --text: #ffffff;
  --accent: #e85d22;
  --accent-hover: #f07030;
  --card-bg: rgba(255, 255, 255, 0.06);
  --card-border: rgba(255, 255, 255, 0.08);
  --radius: 12px;
  --radius-btn: 999px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* --- Reset & base --- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: #ffffff;
  color: #111319;
  line-height: 1.5;
  overflow-x: hidden;
}
body.modal-open { overflow: hidden; }
body.cookie-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  color: #ffffff;
  background: rgba(15, 15, 17, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.5rem 1rem;
}
.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo-icon {
  width: 28px;
  height: 28px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Crect x='3' y='3' width='18' height='18' rx='1'/%3E%3Cline x1='3' y1='12' x2='21' y2='12'/%3E%3Cline x1='12' y1='3' x2='12' y2='21'/%3E%3C/svg%3E") center/contain no-repeat;
}
.logo-text {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: transparent;
  color: white;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-item-services {
  position: relative;
}
.nav-services-toggle {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  opacity: 0.9;
  padding: 0;
}
.nav-services-toggle::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}
.nav-services-menu {
  position: absolute;
  top: calc(100% + 0.65rem);
  left: 0;
  min-width: 250px;
  border-radius: 10px;
  background: #15161b;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.4rem;
  display: grid;
  gap: 0.1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 130;
}
.nav-services-menu a {
  display: block;
  border-radius: 8px;
  padding: 0.5rem 0.6rem;
  font-size: 0.9rem;
  opacity: 0.94;
}
.nav-services-menu a:hover {
  background: rgba(255, 255, 255, 0.09);
}
.nav-item-services:hover .nav-services-menu,
.nav-item-services:focus-within .nav-services-menu,
.nav-item-services.is-open .nav-services-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-list a {
  font-size: 0.95rem;
  opacity: 0.9;
}
.nav-list a:hover { opacity: 1; }
.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hours {
  font-size: 0.9rem;
  opacity: 0.85;
  white-space: nowrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-phone {
  background: var(--accent);
  color: white;
  white-space: nowrap;
}
.btn-phone:hover { background: var(--accent-hover); }

/* --- Hero --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 0 1rem;
  overflow: hidden;
  color: #ffffff;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: #1a1a1c url("assets/images/hero-backgraund.png") center/cover no-repeat;
}
.hero-bg-person {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 40%;
  background: url("assets/images/hero-man-right.png") right bottom/contain no-repeat;
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.15) 50%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  flex: 1;
  padding: 6rem 0 4rem;
}
.hero-content { max-width: 720px; }
.hero-title {
  font-size: clamp(3.5rem, 8vw, 5rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}
.hero-desc {
  font-size: 1.05rem;
  opacity: 0.9;
  margin: 0 0 1.5rem;
}
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.5rem;
  background: var(--accent);
  color: white;
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius);
  transition: background 0.2s;
}
.btn-cta:hover { background: var(--accent-hover); }
.btn-cta-icon {
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/contain no-repeat;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.2);
}
/* --- Feature cards (overlap hero) --- */
.hero-cards {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1rem 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.card {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: relative;
  transition: transform 0.2s, border-color 0.2s;
}
.card:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.12);
}
.card-icon {
  display: block;
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
  border-radius: 8px;
  background: var(--accent);
}
.card-icon--window {
  background: var(--accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white' opacity='0.9'%3E%3Cpath d='M4 4h16v16H4V4zm2 2v6h6V6H6zm8 0v6h6V6h-6zM6 14v4h6v-4H6zm8 0v4h6v-4h-6z'/%3E%3C/svg%3E") center/60% no-repeat;
}
.card-icon--clock {
  background: var(--accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white' opacity='0.9'%3E%3Cpath d='M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm0 18c-4.4 0-8-3.6-8-8s3.6-8 8-8 8 3.6 8 8-3.6 8-8 8zm.5-13H11v6l5.2 3.2.8-1.2-4.5-2.8V7z'/%3E%3C/svg%3E") center/60% no-repeat;
}
.card-icon--parts {
  background: var(--accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white' opacity='0.9'%3E%3Cpath d='M12 2L2 7v10l10 5 10-5V7L12 2zm0 2.18l6.9 3.45L12 11.09 5.1 7.63 12 4.18zM4 8.82l7 3.5v7.36l-7-3.5V8.82zm9 10.86v-7.36l7-3.5v7.36l-7 3.5z'/%3E%3C/svg%3E") center/60% no-repeat;
}
.card-icon--warranty {
  background: var(--accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white' opacity='0.9'%3E%3Cpath d='M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm0 10.99h7c-.53 4.12-3.28 7.79-7 8.94V12H5V6.3l7-3.11v8.8z'/%3E%3C/svg%3E") center/60% no-repeat;
}
.card-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}
.card-desc {
  font-size: 0.9rem;
  opacity: 0.85;
  margin: 0;
  line-height: 1.45;
}
.card-chat {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: var(--accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H6l-2 2V4h16v12z'/%3E%3C/svg%3E") center/55% no-repeat;
  cursor: pointer;
  transition: transform 0.2s;
}
.card-chat:hover { transform: scale(1.05); }

/* --- Services section --- */
.services {
  background: transparent;
  color: #131316;
  padding: 5.5rem 1rem 4.5rem;
}
.services-inner {
  max-width: 1440px;
  margin: 0 auto;
}
.services-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
}
.services-kicker {
  margin: 0 0 0.25rem;
  color: #67676f;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.services-title {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1.12;
}
.services-controls {
  display: flex;
  gap: 0.45rem;
}
.services-arrow {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  position: relative;
  transition: transform 0.2s, background 0.2s;
}
.services-arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
.services-arrow[data-services-scroll="left"]::before { transform: rotate(-135deg); left: 2px; }
.services-arrow[data-services-scroll="right"]::before { transform: rotate(45deg); left: -2px; }
.services-arrow:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.services-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 1fr);
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}
.services-track::-webkit-scrollbar {
  height: 0;
}
.services-track {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.service-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(20, 20, 24, 0.08);
  overflow: hidden;
  display: grid;
  grid-template-rows: 180px auto 1fr auto;
  scroll-snap-align: start;
  box-shadow: 0 10px 24px rgba(18, 18, 22, 0.06);
}
.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-card h3 {
  margin: 0.9rem 1rem 0.45rem;
  font-size: 1.3rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.service-card p {
  margin: 0 1rem 0.75rem;
  color: #44444f;
  font-size: 0.95rem;
  line-height: 1.42;
}
.service-meta {
  margin: 0 1rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.service-meta span {
  font-weight: 700;
  font-size: 0.96rem;
}
.service-btn {
  border: 0;
  border-radius: 999px;
  background: #ffe5d8;
  color: var(--accent);
  padding: 0.4rem 0.8rem;
  font-weight: 700;
  cursor: pointer;
}
.service-btn:hover {
  background: #ffd5be;
}

/* --- Why us section --- */
.why-us {
  background: transparent;
  color: #111319;
  padding: 5.2rem 1rem;
}
.why-us-inner {
  max-width: 1240px;
  margin: 0 auto;
}
.why-us-kicker {
  margin: 0;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: #6a6a72;
}
.why-us-title {
  margin: 0.4rem auto 2rem;
  text-align: center;
  font-size: clamp(2rem, 3.8vw, 3.1rem);
  line-height: 1.1;
  max-width: 760px;
}
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem 1.6rem;
}
.why-card img {
  width: 100%;
  height: 250px;
  border-radius: 26px;
  object-fit: cover;
  display: block;
}
.why-card h3 {
  margin: 0.9rem 0 0.35rem;
  font-size: clamp(1.45rem, 2.3vw, 2.15rem);
  line-height: 1.12;
}
.why-card p {
  margin: 0;
  color: #3b3c43;
  font-size: 1.08rem;
  line-height: 1.45;
}

/* --- Comfort banner --- */
.comfort-banner {
  position: relative;
  min-height: 58vh;
  overflow: hidden;
}
.comfort-banner-bg {
  position: absolute;
  inset: 0;
  background: #1a1a1c url("assets/images/59234-min_1.jpg.webp") center/cover no-repeat;
}
.comfort-banner-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 60% 100%, rgba(245, 120, 48, 0.62) 0%, rgba(245, 120, 48, 0.15) 58%, transparent 100%),
    linear-gradient(0deg, rgba(245, 112, 38, 0.82) 0%, rgba(240, 104, 35, 0.56) 30%, rgba(0, 0, 0, 0.24) 62%, rgba(0, 0, 0, 0.1) 100%);
}
.comfort-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  min-height: 58vh;
  margin: 0 auto;
  padding: 2rem 1rem;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  gap: 1rem;
}
.comfort-banner-brand {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  opacity: 0.95;
}
.comfort-banner h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.25rem, 4.8vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.comfort-banner-btn {
  justify-self: center;
  background: #fff;
  color: #13141a;
  border-radius: 999px;
  padding: 1.05rem 1.95rem;
  min-height: 56px;
  font-size: 1.02rem;
  border: 1px solid rgba(20, 22, 30, 0.08);
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(16, 18, 24, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.comfort-banner-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 30px rgba(16, 18, 24, 0.24);
}
.comfort-banner-btn .btn-cta-icon {
  width: 22px;
  height: 22px;
  background-color: rgba(16, 17, 22, 0.15);
}

/* --- Scroll reveal band --- */
.scroll-reveal {
  height: 170vh;
  position: relative;
  z-index: 1;
}
.scroll-reveal-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.scroll-reveal-media {
  position: absolute;
  inset: 0;
  background: #1a1a1c url("assets/images/59234-min_1.jpg.webp") center/cover no-repeat;
  transform: scale(1.14);
}
.scroll-reveal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(232, 93, 34, 0.7) 0%, rgba(232, 93, 34, 0.38) 24%, rgba(0, 0, 0, 0.26) 48%, rgba(0, 0, 0, 0.12) 100%);
}
.scroll-reveal-content {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  height: 100%;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1rem;
}
.scroll-reveal-brand {
  font-size: 0.95rem;
  opacity: 0.92;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.scroll-reveal-content h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.3rem, 4.8vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.scroll-reveal-btn {
  align-self: flex-end;
  background: #fff;
  color: #101116;
  border-radius: 999px;
  padding: 0.95rem 1.55rem;
  font-weight: 700;
}
.scroll-reveal-btn .btn-cta-icon {
  background-color: rgba(16, 17, 22, 0.12);
}

/* --- Process section --- */
.process {
  position: relative;
  margin-top: 0;
  z-index: 2;
  background: #f3f3f5;
  color: #111319;
  border-radius: 0;
  padding: 4.8rem 1rem 4rem;
}
.process-inner {
  max-width: 1240px;
  margin: 0 auto;
}
.process-kicker {
  margin: 0;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: #666771;
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.process-kicker-icon {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: conic-gradient(from 90deg, #ffcb5a, #ff9f39, #ffd566, #ffb14f);
  box-shadow: 0 0 0 2px rgba(255, 166, 64, 0.15);
}
.process-title {
  margin: 0.55rem auto 2.6rem;
  text-align: center;
  font-size: clamp(2.2rem, 4.1vw, 3.35rem);
  line-height: 1.06;
  max-width: 920px;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.3rem;
}
.process-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.process-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  margin-bottom: 0.9rem;
}
.process-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.28rem;
  line-height: 1.15;
}
.process-card p {
  margin: 0;
  color: #3a3b44;
  font-size: 0.92rem;
  line-height: 1.42;
  max-width: 230px;
}

/* --- About section --- */
.about-section {
  padding: 4.2rem 1rem 4.8rem;
}
.about-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  border-radius: 22px;
  overflow: hidden;
  background: #f4f4f6;
}
.about-copy {
  padding: 1.7rem 1.8rem 1.55rem;
}
.about-kicker {
  margin: 0 0 0.7rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: #1a1c22;
  font-size: 0.95rem;
}
.about-kicker-icon {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: conic-gradient(from 90deg, #ffcb5a, #ff9f39, #ffd566, #ffb14f);
}
.about-copy h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(2rem, 3.9vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
}
.about-copy p {
  margin: 0 0 0.95rem;
  color: #34353e;
  font-size: 1.02rem;
  line-height: 1.45;
}
.about-copy p:last-child { margin-bottom: 0; }
.about-media {
  min-height: 520px;
  background: #ddd url("assets/images/onas.webp") center/cover no-repeat;
}

/* --- FAQ section --- */
.faq {
  padding: 4.5rem 1rem 5.2rem;
}
.faq-inner {
  max-width: 900px;
  margin: 0 auto;
}
.faq-kicker {
  margin: 0;
  text-align: center;
  font-weight: 700;
  font-size: 0.98rem;
  color: #1a1c22;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.faq-kicker-icon {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: conic-gradient(from 90deg, #ffcb5a, #ff9f39, #ffd566, #ffb14f);
}
.faq-title {
  margin: 0.65rem auto 2rem;
  text-align: center;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  line-height: 1.08;
  max-width: 760px;
}
.faq-list {
  border-top: 1px solid #e8e8ed;
}
.faq-item {
  border-bottom: 1px solid #e8e8ed;
}
.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  font: inherit;
  font-size: 2rem;
  line-height: 1.18;
  font-weight: 700;
  color: #15161d;
  cursor: pointer;
}
.faq-plus {
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  position: relative;
}
.faq-plus::before,
.faq-plus::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 2px;
  background: #20222a;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
}
.faq-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq-question[aria-expanded="true"] .faq-plus::after {
  transform: translate(-50%, -50%) rotate(0deg);
}
.faq-answer-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.faq-question[aria-expanded="true"] + .faq-answer-wrap {
  grid-template-rows: 1fr;
}
.faq-answer {
  overflow: hidden;
}
.faq-answer p {
  margin: 0 0 1rem;
  color: #3a3c45;
  font-size: 1.02rem;
  line-height: 1.45;
}

/* --- Interactive estimator section --- */
.estimator {
  padding: 4.2rem 1rem 4.8rem;
}
.estimator-inner {
  max-width: 1040px;
  margin: 0 auto;
}
.estimator-kicker {
  margin: 0;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: #1a1c22;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.estimator-kicker-icon {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: conic-gradient(from 90deg, #ffcb5a, #ff9f39, #ffd566, #ffb14f);
}
.estimator-title {
  margin: 0.6rem auto 1.55rem;
  text-align: center;
  font-size: clamp(1.95rem, 4vw, 3rem);
  line-height: 1.1;
  max-width: 740px;
}
.estimator-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
}
.estimator-form,
.estimator-result {
  border: 1px solid #e6e8ef;
  border-radius: 16px;
  background: #f7f7f9;
  padding: 1.05rem 0.95rem;
}
.estimator-form {
  display: grid;
  gap: 0.8rem;
}
.estimator-field {
  display: grid;
  gap: 0.35rem;
}
.estimator-field span {
  font-size: 0.92rem;
  color: #3a3c45;
}
.estimator-field select,
.estimator-field input[type="range"] {
  width: 100%;
}
.estimator-field select {
  border: 1px solid #d5d8e2;
  border-radius: 10px;
  background: #fff;
  color: #111319;
  min-height: 42px;
  padding: 0 0.7rem;
  font: inherit;
}
.estimator-label {
  margin: 0 0 0.28rem;
  color: #636572;
  font-size: 0.9rem;
}
.estimator-price {
  margin: 0 0 0.6rem;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.05;
}
.estimator-note {
  margin: 0 0 1rem;
  color: #373a45;
}
.estimator-cta {
  width: 100%;
  border-radius: 12px;
  min-height: 46px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
}
.estimator-cta:hover { background: var(--accent-hover); }

/* --- Contact page --- */
.contact-page {
  color: #111319;
  padding-bottom: 4rem;
}
.contact-hero {
  padding: 6.2rem 1rem 2rem;
}
.contact-hero-inner {
  max-width: 1240px;
  margin: 0 auto;
}
.contact-kicker {
  margin: 0 0 0.4rem;
  color: #686a74;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}
.contact-hero h1 {
  margin: 0 0 0.65rem;
  font-size: clamp(2rem, 5vw, 3.3rem);
  line-height: 1.06;
}
.contact-hero p {
  margin: 0;
  max-width: 760px;
  color: #3d3f48;
  font-size: 1.02rem;
}
.contact-content {
  padding: 0 1rem;
}
.contact-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.contact-card {
  background: #f5f5f7;
  border: 1px solid #e8e8ed;
  border-radius: 16px;
  padding: 1.2rem 1.2rem 1rem;
}
.contact-card h2 {
  margin: 0 0 0.8rem;
  font-size: 1.5rem;
}
.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.contact-list li {
  color: #2f3139;
  font-size: 1rem;
}
.contact-list a {
  color: #0f3d92;
}
.contact-form {
  display: grid;
  gap: 0.7rem;
}
.contact-field {
  display: grid;
  gap: 0.3rem;
}
.contact-field span {
  color: #44464e;
  font-size: 0.9rem;
}
.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 1px solid #d8d9e1;
  border-radius: 10px;
  background: #fff;
  color: #12131a;
  padding: 0.7rem 0.75rem;
  font: inherit;
}
.contact-submit {
  margin-top: 0.2rem;
  width: 100%;
  border-radius: 12px;
  padding: 0.85rem 1rem;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
}
.contact-submit:hover { background: var(--accent-hover); }

/* --- Global footer --- */
.site-footer {
  background: #111218;
  color: #fff;
  padding: 2.2rem 1rem 1.2rem;
  margin-top: 2rem;
}
.site-footer-inner {
  max-width: 1240px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.footer-brand {
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0 0 0.35rem;
}
.footer-company p {
  margin: 0 0 0.4rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
}
.footer-col h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.28rem;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
}
.footer-links a:hover {
  color: #f8c189;
}
.footer-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.85rem 0;
}
.footer-disclaimer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.86rem;
  line-height: 1.45;
}
.footer-bottom {
  padding-top: 0.75rem;
}
.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.84rem;
}

/* --- Floating chat button --- */
/* --- Call button (floating) --- */
@keyframes fab-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(232, 93, 34, 0.5); transform: scale(1); }
  50% { box-shadow: 0 4px 28px rgba(232, 93, 34, 0.7), 0 0 0 10px rgba(232, 93, 34, 0.15); transform: scale(1.03); }
}
@keyframes fab-ring {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 0; }
}
.fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 99;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E") center/55% no-repeat;
  color: transparent;
  font-size: 0;
  box-shadow: 0 4px 20px rgba(232, 93, 34, 0.5);
  animation: fab-pulse 2s ease-in-out infinite;
  transition: transform 0.2s, background 0.2s;
}
.fab::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--accent);
  animation: fab-ring 2s ease-out infinite;
  pointer-events: none;
}
.fab:hover {
  background-color: var(--accent-hover);
  transform: scale(1.08);
  animation: none;
  box-shadow: 0 6px 24px rgba(232, 93, 34, 0.6);
}
.fab:hover::after { animation: none; opacity: 0; }

/* --- Order modal --- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  align-items: center;
  justify-items: center;
  padding: 1rem;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.modal.is-open {
  pointer-events: auto;
  opacity: 1;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(1.5px);
  -webkit-backdrop-filter: blur(1.5px);
}
.modal-panel {
  position: relative;
  width: min(520px, 100%);
  background: #17171a;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 1.15rem 1.15rem 1.2rem;
  transform: translateY(36px) scale(0.96);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
}
.modal.is-open .modal-panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.modal-close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}
.modal-close::before,
.modal-close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
}
.modal-close::before { transform: translate(-50%, -50%) rotate(45deg); }
.modal-close::after { transform: translate(-50%, -50%) rotate(-45deg); }
.modal-title {
  margin: 0 0 0.3rem;
  font-size: 1.55rem;
  font-weight: 800;
  color: #ffffff;
}
.modal-subtitle {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.86);
}
.modal-step { display: none; }
.modal-step.is-active { display: block; }
.order-form {
  display: grid;
  gap: 0.7rem;
}
.order-field {
  display: grid;
  gap: 0.3rem;
}
.order-field span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}
.order-field input,
.order-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  padding: 0.75rem 0.8rem;
  font: inherit;
}
.order-field input::placeholder,
.order-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.62);
}
.order-field input:focus,
.order-field textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.modal-submit {
  margin-top: 0.25rem;
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--accent);
  color: #fff;
  border-radius: 12px;
  font-weight: 700;
}
.modal-submit:hover { background: var(--accent-hover); }

/* --- Cookie consent modal --- */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  place-items: center;
  padding: 1rem;
}
.cookie-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
}
.cookie-panel {
  position: relative;
  width: min(720px, 100%);
  background: #121319;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 1.1rem 1.05rem;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.32);
}
.cookie-title {
  margin: 0 0 0.45rem;
  font-size: 1.25rem;
  font-weight: 800;
}
.cookie-text {
  margin: 0 0 0.65rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.96rem;
  line-height: 1.45;
}
.cookie-links {
  margin: 0 0 0.85rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.86);
}
.cookie-links a {
  color: #f9c07f;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.cookie-btn {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  background: transparent;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}
.cookie-btn-primary {
  border-color: transparent;
  background: var(--accent);
}
.cookie-btn-primary:hover { background: var(--accent-hover); }

/* --- Legal pages --- */
.legal-page {
  color: #12131a;
}
.legal-main {
  padding: 5.6rem 1rem 3rem;
}
.legal-inner {
  max-width: 980px;
  margin: 0 auto;
}
.legal-title {
  margin: 0 0 0.45rem;
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  line-height: 1.08;
}
.legal-updated {
  margin: 0 0 1.4rem;
  color: #5a5d69;
  font-size: 0.92rem;
}
.legal-block {
  margin-bottom: 1.15rem;
  border: 1px solid #e6e8ef;
  border-radius: 14px;
  background: #f7f7f9;
  padding: 1rem 0.95rem;
}
.legal-block h2 {
  margin: 0 0 0.45rem;
  font-size: 1.32rem;
}
.legal-block p {
  margin: 0 0 0.6rem;
  color: #2a2d38;
  line-height: 1.5;
}
.legal-block p:last-child { margin-bottom: 0; }

/* --- Mobile --- */
@media (max-width: 900px) {
  .header-inner { justify-content: flex-start; }
  .header-right { display: none; }
  .nav { margin-left: auto; }
  .nav-toggle {
    display: flex;
    margin-left: auto;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  .nav-toggle span { transition: transform 0.2s, opacity 0.2s; }
  .nav-list {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--bg-header);
    flex-direction: column;
    align-items: stretch;
    padding: 5rem 1.5rem 1.5rem;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.3s;
    box-shadow: -10px 0 30px rgba(0,0,0,0.3);
  }
  .nav.is-open .nav-list { transform: translateX(0); }
  .nav-list li { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-list a {
    display: block;
    padding: 1rem 0;
    font-size: 1.1rem;
  }
  .nav-item-services {
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-services-toggle {
    width: 100%;
    justify-content: space-between;
    font-size: 1.1rem;
    padding: 1rem 0;
    opacity: 1;
  }
  .nav-services-menu {
    position: static;
    min-width: 0;
    border: 0;
    background: transparent;
    padding: 0 0 0.75rem 0.8rem;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    gap: 0;
  }
  .nav-item-services.is-open .nav-services-menu {
    display: grid;
  }
  .nav-services-menu a {
    padding: 0.42rem 0;
    font-size: 0.96rem;
  }

  .hero {
    height: 100svh;
    min-height: 100svh;
    padding: 0 0.75rem;
  }
  .hero-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 45%, rgba(0,0,0,0.45) 100%);
  }
  .hero-bg-person {
    left: 0;
    right: 0;
    background-position: center bottom;
    background-size: auto 62%;
  }
  .hero-inner {
    align-items: flex-start;
    justify-content: center;
    padding: 5.4rem 0 0;
  }
  .hero-content {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-title {
    font-size: clamp(1.95rem, 9.8vw, 2.65rem);
    line-height: 1.08;
    margin-bottom: 0.75rem;
    text-align: center;
  }
  .hero-desc {
    font-size: 1rem;
    max-width: none;
    margin-bottom: 1rem;
    text-align: center;
  }
  .hero-content .btn-cta {
    margin: 0 auto;
    display: flex;
    width: max-content;
    padding: 0.85rem 1.25rem;
  }

  .hero-cards {
    position: absolute;
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.9rem;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
  }
  .hero-cards .card:nth-child(4) { display: none; }
  .hero-cards .card {
    background: var(--accent);
    border: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 10px;
    padding: 0.62rem 0.45rem 0.72rem;
    min-height: 72px;
    text-align: center;
  }
  .hero-cards .card-icon {
    width: 20px;
    height: 20px;
    margin: -13px auto 0.24rem;
    border-radius: 50%;
    background-color: #fff;
    background-image: none !important;
    border: none;
    position: relative;
  }
  .hero-cards .card-icon::after {
    content: "✓";
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    color: var(--accent);
  }
  .hero-cards .card-title {
    font-size: 0.92rem;
    line-height: 1.12;
    margin: 0;
    letter-spacing: 0;
    text-transform: none;
  }
  .hero-cards .card-desc,
  .card-chat { display: none; }

  .fab {
    width: 56px;
    height: 56px;
    bottom: 0.75rem;
    right: 0.65rem;
    background: rgba(243, 160, 98, 0.95) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z'/%3E%3C/svg%3E") center/53% no-repeat;
    box-shadow: 0 6px 16px rgba(243, 125, 42, 0.45);
    animation: none;
  }
  .fab::after {
    display: none;
  }

  .services {
    padding: 3.2rem 0.75rem 2.6rem;
  }
  .services-head {
    margin-bottom: 1rem;
  }
  .services-title {
    font-size: 1.7rem;
  }
  .services-track {
    grid-auto-columns: minmax(300px, 82vw);
    gap: 0.75rem;
  }
  .service-card {
    grid-template-rows: 170px auto 1fr auto;
  }
  .service-card h3 {
    font-size: 1.05rem;
    margin: 0.75rem 0.85rem 0.35rem;
  }
  .service-card p {
    margin: 0 0.85rem 0.7rem;
    font-size: 0.88rem;
  }
  .service-meta {
    margin: 0 0.85rem 0.8rem;
  }

  .why-us {
    padding: 3.6rem 0.75rem;
  }
  .why-us-title {
    margin-bottom: 1.35rem;
  }
  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }
  .why-card img {
    height: 220px;
    border-radius: 20px;
  }
  .why-card h3 {
    font-size: 1.65rem;
  }
  .why-card p {
    font-size: 0.99rem;
  }
  .scroll-reveal {
    height: 145vh;
  }
  .scroll-reveal-content {
    padding: 1.25rem 0.75rem 1.35rem;
  }
  .scroll-reveal-content h2 {
    max-width: 92%;
    font-size: clamp(2rem, 9vw, 3.1rem);
  }
  .scroll-reveal-btn {
    align-self: flex-start;
    padding: 0.8rem 1.2rem;
  }
  .comfort-banner {
    min-height: 52vh;
  }
  .comfort-banner-inner {
    min-height: 52vh;
    padding: 1.35rem 0.75rem;
  }
  .comfort-banner h2 {
    max-width: 92%;
    font-size: clamp(2rem, 9vw, 3rem);
  }
  .comfort-banner-btn {
    justify-self: center;
    padding: 0.92rem 1.35rem;
    min-height: 52px;
    font-size: 0.96rem;
  }
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
  .process-card {
    padding: 0;
  }
  .process-card h3 {
    font-size: 1.12rem;
  }
  .process-card p {
    font-size: 0.86rem;
    max-width: none;
  }
  .about-section {
    padding: 3.1rem 0.75rem 3.4rem;
  }
  .about-inner {
    grid-template-columns: 1fr;
    border-radius: 18px;
  }
  .about-copy {
    padding: 1.2rem 1rem;
  }
  .about-copy h2 {
    font-size: clamp(1.65rem, 6.6vw, 2.3rem);
  }
  .about-copy p {
    font-size: 0.95rem;
  }
  .about-media {
    min-height: 360px;
  }
  .faq {
    padding: 3.2rem 0.75rem 3.8rem;
  }
  .faq-title {
    margin-bottom: 1.4rem;
  }
  .faq-question {
    font-size: 1.65rem;
    padding: 0.85rem 0;
  }
  .estimator {
    padding: 3rem 0.75rem 3.2rem;
  }
  .estimator-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .contact-hero {
    padding: 5.2rem 0.75rem 1.4rem;
  }
  .contact-content {
    padding: 0 0.75rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
  }
  .footer-company {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .hero-content { width: 100%; max-width: 100%; }
  .hero-title { font-size: clamp(1.85rem, 9.7vw, 2.35rem); }
  .hero-bg-person { background-size: auto 56%; }
  .services-controls { display: none; }
  .services-track { grid-auto-columns: minmax(290px, 88vw); }
  .why-us-kicker { font-size: 0.88rem; }
  .why-us-title { font-size: 2rem; }
  .why-card img { height: 195px; }
  .why-card h3 { font-size: 1.45rem; }
  .comfort-banner {
    min-height: 46vh;
  }
  .comfort-banner-inner {
    min-height: 46vh;
  }
  .comfort-banner h2 {
    max-width: 100%;
    font-size: clamp(1.9rem, 10.2vw, 2.5rem);
  }
  .comfort-banner-btn {
    width: 100%;
    justify-self: center;
    justify-content: center;
    min-height: 50px;
    padding: 0.88rem 1rem;
    font-size: 0.95rem;
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }
  .about-media {
    min-height: 290px;
  }
  .faq-title {
    font-size: clamp(1.7rem, 9vw, 2.35rem);
  }
  .faq-question {
    font-size: 1.12rem;
    line-height: 1.22;
  }
  .faq-plus {
    flex-basis: 24px;
  }
  .faq-answer p {
    font-size: 0.94rem;
  }
  .estimator-title {
    font-size: clamp(1.65rem, 8vw, 2.2rem);
    margin-bottom: 1.15rem;
  }
  .estimator-form,
  .estimator-result {
    padding: 0.9rem 0.8rem;
  }
  .estimator-price {
    font-size: clamp(1.7rem, 8.5vw, 2.2rem);
  }
  .contact-hero h1 {
    font-size: clamp(1.75rem, 9vw, 2.4rem);
  }
  .contact-hero p {
    font-size: 0.95rem;
  }
  .contact-card {
    padding: 1rem 0.9rem 0.85rem;
  }
  .contact-card h2 {
    font-size: 1.25rem;
  }
  .site-footer {
    padding: 1.8rem 0.75rem 1rem;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-company {
    grid-column: auto;
  }
  .footer-disclaimer p {
    font-size: 0.8rem;
  }
  .process-title {
    margin-bottom: 1.8rem;
  }
  .process-kicker {
    font-size: 0.9rem;
  }
  .process-kicker-icon {
    width: 14px;
    height: 14px;
  }
  .modal {
    align-items: center;
    padding: 0;
  }
  .modal-panel {
    width: min(94vw, 520px);
    border-radius: 16px;
    padding: 1rem 0.9rem 1.1rem;
  }
  .modal-title { font-size: 1.35rem; }
  .cookie-panel {
    border-radius: 14px;
    padding: 0.95rem 0.85rem;
  }
  .cookie-title {
    font-size: 1.08rem;
  }
  .cookie-text,
  .cookie-links {
    font-size: 0.88rem;
  }
  .legal-main {
    padding: 5rem 0.75rem 2.2rem;
  }
  .legal-block {
    padding: 0.85rem 0.8rem;
  }
  .legal-block h2 {
    font-size: 1.12rem;
  }
}
