﻿:root {
  --bg: #f6f8fb;
  --surface: #ffffff;
  --text: #121a2f;
  --muted: #6a7182;
  --primary: #43c530;
  --primary-dark: #2fa31f;
  --dark: #0d1a36;
  --border: #e8ecf3;
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html {
  font-size: var(--base-font-size, 15px);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Outfit, sans-serif;
  background:
    radial-gradient(1200px 600px at 100% -10%, #eef7ff 0%, transparent 55%),
    radial-gradient(900px 500px at -10% 20%, #f3fff0 0%, transparent 50%),
    var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

body.page-enter {
  animation: pageIn 0.5s ease;
}

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

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(240, 246, 255, 0.42));
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 10px 28px rgba(17, 31, 54, 0.08);
  z-index: 20;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 16px;
  margin: 8px auto;
  padding: 0 14px;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.logo img {
  width: clamp(150px, 24vw, var(--logo-width-desktop, 300px));
  max-width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
  justify-content: flex-end;
}

.main-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.main-nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switch {
  border: 1px solid #d7dfeb;
  border-radius: 999px;
  background: #f8fbff;
  min-height: 46px;
  min-width: 112px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font: inherit;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-decoration: none;
  color: #7c8aa2;
  box-shadow: 0 4px 12px rgba(18, 32, 57, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.lang-switch:hover {
  transform: translateY(-1px);
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(18, 32, 57, 0.1);
}

.lang-switch .lang-opt {
  color: #8a98af;
}

.lang-switch .lang-sep {
  margin: 0 4px;
  color: #a3afc4;
}

html[lang="nl"] .lang-switch .lang-opt.nl,
html[lang="en"] .lang-switch .lang-opt.en {
  color: #44c530;
  font-weight: 700;
}

.menu-toggle {
  display: none;
}

.btn {
  text-decoration: none;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
}

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

.hero {
  padding: 40px 0 44px;
}

.hero-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
}

.pill {
  display: inline-block;
  background: #e9f8e5;
  color: #237118;
  padding: 8px 13px;
  border-radius: 999px;
  font-weight: 500;
  margin: 0 0 16px;
}

h1 {
  font-size: clamp(1.7rem, 3.1vw, 2.8rem);
  line-height: 1.03;
  margin: 0 0 14px;
}

.hero-sub {
  color: var(--muted);
  margin: 0 0 22px;
  font-size: 0.98rem;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.hero-rating {
  color: #223;
  font-size: 0.94rem;
}

.hero-media {
  position: relative;
}

.hero-media img {
  border-radius: 20px;
  box-shadow: 0 26px 40px rgba(10, 20, 40, 0.12);
  min-height: 300px;
  object-fit: cover;
}

.media-badge {
  position: absolute;
  right: 14px;
  top: 14px;
  background: var(--primary);
  color: #fff;
  border-radius: 10px;
  padding: 10px 12px;
  font-weight: 700;
  max-width: 140px;
  text-align: center;
}

.benefits {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.benefits-list li {
  text-align: center;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.benefits-list li i {
  color: #39b727;
}

.section {
  padding: 58px 0;
}

.section-soft {
  background: #f0f4fa;
}

.section-head {
  text-align: center;
  margin-bottom: 28px;
}

.section-head h2 {
  margin: 0 0 8px;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.brands-section {
  padding-top: 46px;
  padding-bottom: 30px;
}

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

.brand-chip {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  min-height: 54px;
  display: grid;
  place-items: center;
  color: #8b91a0;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease;
}

.brand-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(10, 20, 40, 0.08);
}

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

.type-picker-head {
  margin-bottom: 16px;
}

.type-picker-head p {
  margin: 0;
  color: #4f5564;
  font-size: clamp(1rem, 1.4vw, 1.1rem);
}

.type-picker-head .dot {
  width: 11px;
  height: 11px;
  display: inline-block;
  border-radius: 50%;
  margin-right: 10px;
  background: #15a9db;
}

.device-type-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 36px;
}

.device-type-grid-home {
  margin-bottom: 46px;
}

.device-type-card {
  background: #f8fafc;
  border: 1px solid #e3e9f2;
  border-radius: 22px;
  min-height: 185px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #5b616f;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.device-type-card:hover,
.device-type-card.active {
  transform: translateY(-3px);
  border-color: #d7dee9;
  box-shadow: 0 14px 28px rgba(10, 20, 40, 0.08);
}

.device-visual {
  width: 84px;
  height: 84px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

.device-visual i {
  font-size: var(--visual-size, 52px);
  color: #727a86;
}

.device-visual img {
  width: var(--visual-size, 52px);
  height: var(--visual-size, 52px);
  object-fit: contain;
}

.device-type-card p {
  margin: 0;
  font-size: clamp(1.05rem, 1.25vw, 1.35rem);
  letter-spacing: 0.05em;
  font-weight: 600;
  color: #4a505d;
  text-transform: uppercase;
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 10px 24px rgba(13, 26, 54, 0.05);
}

.card h3 {
  margin-top: 0;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 350px;
  background: #f8fafc;
  border-radius: 26px;
  border: 1px solid #e1e8f2;
  padding: 24px;
}

.service-icon {
  width: 82px;
  height: 82px;
  border-radius: 20px;
  background: #eaf7ec;
  color: #33ad23;
  display: grid;
  place-items: center;
  font-size: 1.9rem;
  margin-bottom: 18px;
}

.service-card h3 {
  font-size: clamp(1.5rem, 2vw, 2rem);
  margin: 0 0 16px;
}

.service-card p {
  font-size: clamp(1.08rem, 1.25vw, 1.2rem);
  color: #262f44;
  margin: 0;
  line-height: 1.5;
}

.service-bottom {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.service-price {
  margin: 0;
  color: #6d7890;
}

.service-price strong {
  color: #35b625;
  font-size: 2.2rem;
  line-height: 1;
}

.category-hero {
  margin: 0 0 18px;
  border: 1px solid #dfe6f2;
  border-radius: 20px;
  background: #fff;
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 16px;
  align-items: center;
}

.category-hero h2 {
  margin: 0 0 8px;
}

.category-hero p {
  margin: 0;
  color: var(--muted);
}

.category-hero img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 14px;
}

.price-thumb {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #e2e8f1;
}

.brand-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.brand-tab {
  text-decoration: none;
  color: #34415f;
  border: 1px solid #dce5f1;
  background: #fff;
  border-radius: 999px;
  padding: 9px 14px;
  font-weight: 600;
}

.brand-tab:hover {
  border-color: #c5d3e7;
  background: #f7fafe;
}

.brand-tab.active {
  background: #e9f8e5;
  color: #237118;
  border-color: #bde7b6;
}

.brand-block+.brand-block {
  margin-top: 24px;
}

.brand-block>h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
}

.category-hero.no-image {
  grid-template-columns: 1fr;
}

.price-row.empty {
  background: #fbfdff;
}

.service-bottom a {
  color: #5632bc;
  font-size: clamp(1.15rem, 1.6vw, 2rem);
  text-decoration: underline;
  font-weight: 500;
}

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

.service-card-home {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 22px;
  border: 1px solid #d8e9d5;
  box-shadow: 0 16px 34px rgba(8, 20, 38, 0.06);
  padding: 22px 20px 18px;
  min-height: 420px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card-home:hover {
  transform: translateY(-4px);
  border-color: #cde4c8;
  box-shadow: 0 22px 36px rgba(11, 26, 46, 0.1);
}

.service-icon-home {
  width: 78px;
  height: 78px;
  border-radius: 16px;
  background: #ecf7ee;
  color: #39b727;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.service-card-home:hover .service-icon-home {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 18px rgba(67, 197, 48, 0.2);
}

.service-icon-home i {
  line-height: 1;
}

.service-icon-home img {
  width: 70%;
  height: 70%;
  object-fit: contain;
}

.service-card-home h3 {
  font-size: clamp(1.55rem, 1.75vw, var(--service-title-size, 40px));
  margin: 0 0 12px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 800;
}

.service-card-home p {
  margin: 0;
  color: #415474;
  font-size: 1.05rem;
  line-height: 1.5;
  font-weight: 500;
}

.service-meta-home {
  margin-top: auto;
  display: grid;
  gap: 10px;
  padding-top: 14px;
}

.service-meta-row-home {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.98rem;
  color: #5d6f8d;
  font-weight: 500;
}

.service-meta-row-home strong {
  color: #192947;
  font-size: clamp(1.25rem, 1.7vw, 1.9rem);
  font-weight: 800;
}

.service-price-strong-home {
  color: #35b625 !important;
}

.service-actions-home {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.service-btn-secondary,
.service-btn-primary {
  min-height: 56px;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: 999px;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.28s ease, color 0.28s ease, border-color 0.28s ease;
}

@media (prefers-reduced-motion: reduce) {

  .service-card-home,
  .service-icon-home {
    transition: none;
  }

  .service-card-home:hover,
  .service-card-home:hover .service-icon-home {
    transform: none;
    box-shadow: none;
  }
}

.service-btn-secondary {
  border: 1px solid #d5e0ee;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  color: #1a2a48;
  box-shadow: 0 6px 14px rgba(16, 32, 58, 0.08);
}

.service-btn-secondary:hover {
  transform: translateY(-1px);
  background: #ffffff;
  box-shadow: 0 10px 18px rgba(16, 32, 58, 0.12);
}

.service-btn-primary {
  background: linear-gradient(135deg, #43c530 0%, #34b824 100%);
  border: 1px solid #35b625;
  box-shadow: none;
}

.service-btn-primary:hover,
.service-btn-primary:active,
.service-btn-primary:focus-visible {
  transform: none;
  box-shadow: none;
  background: linear-gradient(135deg, #43c530 0%, #34b824 100%);
  border-color: #35b625;
  color: #fff;
}

.is-hidden-service {
  display: none;
}

.services-more-wrap {
  margin-top: 16px;
  display: flex;
  justify-content: center;
}

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

.step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}

.step-index {
  color: #9bcf93;
  font-size: 2.2rem;
  line-height: 1;
  margin-bottom: 12px;
  font-weight: 700;
}

.timeline {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: 6px 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #8be07b;
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 16px 28px;
}

.timeline-item.left {
  left: 0;
}

.timeline-item.right {
  left: 50%;
}

.timeline-dot {
  position: absolute;
  top: 38px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #45c733;
  border: 3px solid #dff6db;
  z-index: 2;
}

.timeline-item.left .timeline-dot {
  right: -8px;
}

.timeline-item.right .timeline-dot {
  left: -8px;
}

.timeline-card {
  background: #fff;
  border: 1px solid #7ede70;
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(11, 25, 45, 0.06);
}

.timeline-card h3 {
  margin: 0 0 8px;
}

.timeline-card p {
  margin: 0;
  color: var(--muted);
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 34px;
  max-width: 780px;
  margin: 0 auto;
  position: relative;
}

.quote {
  font-size: 1.2rem;
  margin-top: 0;
}

.author {
  color: var(--muted);
  margin-bottom: 0;
}

.slider-controls {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: flex;
  gap: 8px;
}

.slider-controls button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
}

.section-dark {
  background: var(--dark);
  color: #f1f5ff;
}

#services .container,
#pages .container,
#posts .container {
  background: #ffffff;
  border: 1px solid #e4ebf5;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 18px 36px rgba(9, 22, 42, 0.06);
}

.section-soft .container {
  background: #f7fbff;
  border: 1px solid #e2eaf5;
  border-radius: 24px;
  padding: 24px;
}

.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: start;
}

.cities-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cities-list li {
  background: #152a57;
  border: 1px solid #244481;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.92rem;
}

.map-box {
  background: #0f2146;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #234178;
}

.map-box img {
  width: 100%;
  min-height: 310px;
  object-fit: cover;
}

.cta {
  background: linear-gradient(135deg, #43c530, #25a81b);
  color: #fff;
  padding: 56px 0;
}

.cta-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn-light {
  background: #fff;
  color: #1a2b17;
}

.btn-outline-light {
  color: #fff;
  border-color: #fff;
}

.site-footer {
  background: #191b22;
  color: #f1f4fb;
  padding: 64px 0 0;
  border-top: 1px solid #222833;
}

.footer-grid-5 {
  display: grid;
  gap: 26px;
  grid-template-columns: 1.1fr 1fr 1fr 1fr 1fr;
}

.site-footer h3,
.site-footer h4 {
  color: #fff;
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 1.15rem;
}

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

.site-footer a {
  color: #f1f4fb;
  text-decoration: none;
}

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

.site-footer li+li {
  margin-top: 0;
}

.footer-contact p {
  margin: 0 0 10px;
  color: #e6ecf9;
}

.footer-big {
  font-size: clamp(1.55rem, 2.2vw, 2.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 12px;
}

.footer-big a {
  color: #ffffff;
  text-decoration: none;
}

.footer-line-list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(80, 240, 74, 0.45);
  font-weight: 600;
}

.footer-social {
  margin-top: 14px;
  display: flex;
  gap: 16px;
}

.footer-social a {
  font-size: 1.2rem;
  opacity: 0.95;
}

.footer-bottom {
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-bottom-wrap p {
  margin: 0;
  color: #f7f9ff;
  font-size: 0.96rem;
}

.post-date {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0 0 6px;
}

.article-wrap {
  max-width: 820px;
  background: #fff;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 18px;
}

.service-detail {
  background: #f3f6fb;
}

.service-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 26px;
  align-items: center;
}

.service-icon.lg {
  width: 70px;
  height: 70px;
  font-size: 2rem;
  margin-bottom: 18px;
}

.service-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 20px 0;
}

.service-breadcrumb {
  margin: 0 0 14px;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  color: #5a6681;
  font-size: 0.95rem;
}

.service-breadcrumb a {
  color: #5a6681;
  text-decoration: none;
}

.service-breadcrumb a:hover {
  text-decoration: underline;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  background: #e9f8e5;
  color: #237118;
  border: 1px solid #cfeec8;
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 600;
}

.meta-pill.price {
  background: #fff;
  color: #1e2a47;
  border-color: var(--border);
}

.service-image-wrap img {
  border-radius: 20px;
  min-height: 340px;
  object-fit: cover;
  box-shadow: 0 24px 40px rgba(10, 20, 40, 0.13);
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.info-card ul,
.info-card ol {
  margin: 0;
  padding-left: 20px;
  color: #2f3a53;
}

.info-card li+li {
  margin-top: 8px;
}

.booking-page {
  background: #f3f6fb;
}

.booking-head {
  text-align: center;
  padding-bottom: 26px;
}

.booking-head p {
  color: var(--muted);
  margin: 8px 0 0;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.7fr;
  gap: 20px;
  align-items: start;
}

.booking-form-card h2 {
  margin: 0 0 4px;
}

.muted-text {
  color: var(--muted);
  margin: 0 0 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.booking-form-card form {
  display: grid;
  gap: 14px;
}

.booking-form-card label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

.booking-form-card input,
.booking-form-card select,
.booking-form-card textarea {
  width: 100%;
  border: 1px solid #d8e2ef;
  border-radius: 12px;
  padding: 12px 13px;
  font: inherit;
  background: #fff;
}

.booking-submit {
  width: 100%;
  margin-top: 6px;
}

.booking-contact-card p {
  color: #2e3a56;
}

.booking-map iframe {
  width: 100%;
  min-height: 240px;
  border: 0;
  border-radius: 12px;
}

.pill-success {
  background: #e9f8e5;
  color: #237118;
  border: 1px solid #cfeec8;
  border-radius: 10px;
  padding: 8px 12px;
  margin: 0 0 12px;
  display: inline-block;
}

.booking-wizard-page .section {
  padding-top: 34px;
}

.booking-process-layout {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 28px;
  align-items: start;
}

.booking-process-rail {
  position: sticky;
  top: 94px;
  padding: 8px 6px 8px 2px;
}

.booking-process-rail h2 {
  margin: 0 0 16px;
  line-height: 1.2;
}

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

.booking-process-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  margin-bottom: 14px;
  position: relative;
}

.booking-process-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 17px;
  top: 34px;
  width: 2px;
  height: calc(100% + 2px);
  background: #32c665;
  opacity: 0.5;
}

.booking-process-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #32c665;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
}

.booking-process-list h3 {
  margin: 0 0 4px;
  font-size: 1.02rem;
}

.booking-process-list p {
  margin: 0;
  color: #5e6b86;
  font-size: 0.95rem;
  line-height: 1.4;
}

.booking-wizard-shell {
  background: #fff;
  border: 1px solid #dbe4f1;
  border-radius: 18px;
  padding: 20px;
}

.booking-wizard-wrap {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 26px;
  align-items: start;
}

.booking-steps-nav {
  position: sticky;
  top: 92px;
  background: #fff;
  border: 1px solid #dbe4f1;
  border-radius: 14px;
  padding: 16px;
  display: grid;
  gap: 10px;
}

.booking-step-nav-item {
  border: 0;
  background: transparent;
  text-align: left;
  border-radius: 12px;
  padding: 12px 10px;
  color: #5b6780;
  font: inherit;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.booking-step-nav-item i {
  width: 44px;
  height: 44px;
  border: 1px solid #ccd8ea;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #728099;
}

.booking-step-nav-item.is-active {
  color: #1ec87f;
}

.booking-step-nav-item.is-active i {
  border-color: #1ec87f;
  background: #1ec87f;
  color: #fff;
}

.booking-wizard-card {
  background: #fff;
  border: 1px solid #dbe4f1;
  border-radius: 14px;
  overflow: hidden;
}

.booking-step-panel {
  display: none;
  padding: 26px 26px 110px;
  position: relative;
}

.booking-step-panel.is-active {
  display: block;
}

.booking-step-panel h3 {
  margin-top: 0;
  margin-bottom: 14px;
}

.booking-step-panel label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  color: #243453;
  font-size: 1.25rem;
}

.booking-step-panel input,
.booking-step-panel select,
.booking-step-panel textarea {
  width: 100%;
  border: 1px solid #cfdcf0;
  border-radius: 12px;
  padding: 13px 14px;
  font: inherit;
  font-size: 1.08rem;
  background: #fff;
  color: #1b2b47;
}

.booking-step-panel input[type="date"] {
  min-height: 52px;
  font-size: 1.06rem;
  letter-spacing: 0.02em;
}

.booking-step-panel input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.9;
}

.booking-category-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.booking-chip {
  border: 1px solid #ced9ea;
  background: #fff;
  color: #60708f;
  border-radius: 10px;
  padding: 10px 18px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.booking-chip.is-active {
  border-color: #1ec87f;
  color: #1b2b47;
}

.booking-service-list {
  display: grid;
  gap: 14px;
  max-height: 560px;
  overflow: auto;
  padding-right: 4px;
}

.booking-select-card {
  border: 1px solid #d4deee;
  border-radius: 14px;
  padding: 18px;
  display: grid;
  grid-template-columns: 76px 1fr auto;
  gap: 16px;
  align-items: start;
  cursor: pointer;
  background: #fff;
}

.booking-select-card.is-selected {
  border-color: #1ec87f;
  box-shadow: 0 0 0 2px rgba(30, 200, 127, 0.08);
}

.booking-select-icon {
  width: 76px;
  height: 76px;
  border: 1px solid #d4deee;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #7785a0;
  background: #fbfdff;
}

.booking-select-icon i {
  font-size: 2rem;
}

.booking-select-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.booking-select-card h4 {
  margin: 0 0 6px;
}

.booking-select-card p {
  margin: 0;
  color: #5c6984;
  line-height: 1.45;
}

.booking-selected-badge {
  font-size: 1.6rem;
  color: #1ec87f;
  opacity: 0;
}

.booking-select-card.is-selected .booking-selected-badge {
  opacity: 1;
}

.booking-time-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.booking-time-slot {
  border: 1px solid #d4deee;
  border-radius: 10px;
  padding: 12px 14px;
  background: #fff;
  color: #445372;
  font: inherit;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.booking-step-panel .muted-text {
  margin: 0;
  font-size: 1rem;
  color: #6d7a92;
  font-weight: 500;
}

.booking-time-slot.is-selected {
  border-color: #1ec87f;
  color: #152340;
}

.booking-step-actions {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  border-top: 1px solid #dbe4f1;
  background: #fff;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 26px;
  gap: 12px;
}

.booking-summary-head p {
  margin: 6px 0 14px;
  color: #6b7690;
}

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

.booking-summary-grid>div {
  border: 1px solid #dbe4f1;
  border-radius: 10px;
  padding: 12px 14px;
}

.booking-summary-grid p {
  margin: 8px 0 0;
  font-weight: 700;
}

.booking-final-card {
  background: #fff;
  border: 1px solid #dbe4f1;
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 18px;
  text-align: center;
}

.booking-final-card h2 {
  margin: 0 0 10px;
  color: #5f6d89;
}

.booking-final-lead {
  margin: 0 0 18px;
  font-size: clamp(1.2rem, 2.2vw, 2rem);
  font-weight: 800;
  color: #1e2a45;
}

.booking-final-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.booking-final-meta>div {
  border: 1px solid #dbe4f1;
  border-radius: 10px;
  padding: 10px;
}

.booking-final-meta p {
  margin: 6px 0 0;
  font-weight: 700;
}

.pricing-page {
  background: #f3f6fb;
}

.pricing-head {
  text-align: center;
  padding-bottom: 22px;
}

.pricing-head p {
  color: var(--muted);
  margin: 8px 0 12px;
}

.pricing-list {
  display: grid;
  gap: 12px;
}

.price-group-title {
  margin: 8px 0 2px;
  color: #1a2a49;
  font-size: 1.25rem;
}

.price-row {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.price-row:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(10, 20, 40, 0.08);
}

.price-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.price-left h3 {
  margin: 0 0 4px;
}

.price-left p {
  margin: 0;
  color: var(--muted);
}

.price-icon {
  margin: 0;
  width: 44px;
  height: 44px;
  font-size: 1.2rem;
  background: #eaf7ec;
  color: #33ad23;
}

.price-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.price-right p {
  margin: 0;
  color: #6d7890;
}

.price-right strong {
  color: #35b625;
  font-size: 1.6rem;
  line-height: 1;
}

.pricing-footer-cta {
  text-align: center;
  padding-top: 8px;
}

.pricing-footer-cta p {
  color: var(--muted);
}

.price-html-wrap {
  background: #fff;
  border: 1px solid #dfe6f2;
  border-radius: 14px;
  padding: 14px;
  overflow-x: auto;
}

.price-html-wrap table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.price-html-wrap th,
.price-html-wrap td {
  border: 1px solid #dfe6f2;
  padding: 10px;
  text-align: left;
  font-size: 0.93rem;
}

.price-html-wrap th {
  background: #f4f8ff;
}

.price-matrix {
  margin-top: 22px;
  background: #fff;
  border: 1px solid #dfe7f3;
  border-radius: 14px;
  overflow: hidden;
}

.price-matrix h2 {
  margin: 0;
  padding: 14px 16px;
  background: #7fc06d;
  color: #fff;
  font-size: 1.35rem;
}

.table-wrap {
  overflow-x: auto;
}

.price-matrix table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.price-matrix th,
.price-matrix td {
  border: 1px solid #e6edf7;
  padding: 9px 10px;
  text-align: left;
  font-size: 0.9rem;
  white-space: nowrap;
}

.price-matrix th {
  background: #f5f8fc;
  color: #1b2740;
  font-weight: 700;
}

.matrix-note {
  margin: 0;
  padding: 10px 14px 14px;
  color: #5c6984;
  font-size: 0.85rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pageIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {

  .hero-grid,
  .coverage-grid,
  .service-hero-grid,
  .info-grid,
  .booking-grid {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .booking-wizard-wrap {
    grid-template-columns: 1fr;
  }

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

  .booking-process-rail {
    position: static;
    border: 1px solid #dbe4f1;
    border-radius: 14px;
    background: #fff;
    padding: 14px;
  }

  .booking-wizard-shell {
    padding: 14px;
  }

  .booking-steps-nav {
    position: static;
  }

  .booking-step-panel {
    padding: 18px 14px 112px;
  }

  .booking-step-actions {
    padding: 12px 14px;
  }

  .booking-time-grid,
  .booking-summary-grid,
  .booking-final-meta {
    grid-template-columns: 1fr;
  }

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

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

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

  .nav-wrap {
    min-height: 70px;
  }

  .hero {
    padding: 30px 0 38px;
  }

  .section {
    padding: 52px 0;
  }

  #services .container,
  #pages .container,
  #posts .container,
  .section-soft .container {
    border-radius: 18px;
    padding: 16px;
  }

  .booking-form-card,
  .booking-contact-card,
  .booking-map {
    width: 100%;
  }

  .timeline::before {
    left: 14px;
    transform: none;
  }

  .timeline-item,
  .timeline-item.left,
  .timeline-item.right {
    width: 100%;
    left: 0;
    padding: 8px 0 8px 34px;
  }

  .timeline-item.left .timeline-dot,
  .timeline-item.right .timeline-dot {
    left: 6px;
    right: auto;
    top: 24px;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-flex;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 8px 12px;
    background: #fff;
    font: inherit;
  }

  .main-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 76px;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
  }

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

  .main-nav ul {
    flex-direction: column;
    width: 100%;
  }

  .nav-actions {
    width: 100%;
    justify-content: space-between;
  }

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

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

  .service-card-home {
    min-height: auto;
    padding: 18px 14px;
    border-radius: 20px;
  }

  .service-icon-home {
    width: 86px !important;
    height: 86px !important;
    border-radius: 16px;
    margin-bottom: 18px;
  }

  .service-actions-home {
    grid-template-columns: 1fr;
  }

  .device-type-grid {
    grid-template-columns: 1fr;
    margin-bottom: 28px;
  }

  .device-type-card {
    min-height: 150px;
  }

  .device-type-card p {
    font-size: 1.35rem;
  }

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

  .category-hero img {
    height: 170px;
  }

  .service-card {
    min-height: 320px;
    padding: 20px;
  }

  .service-icon {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    font-size: 1.65rem;
    margin-bottom: 14px;
  }

  .service-bottom a {
    font-size: 1.2rem;
  }

  .service-price strong {
    font-size: 2rem;
  }

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

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

  .price-row,
  .price-right {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .logo img {
    width: var(--logo-width-mobile, 210px);
  }

  h1 {
    font-size: clamp(1.85rem, 8.2vw, 2.4rem);
    line-height: 1.1;
  }

  .hero-sub {
    font-size: 1rem;
  }

  .btn {
    padding: 11px 16px;
  }

  .hero-cta .btn,
  .cta-actions .btn {
    width: 100%;
  }

  .booking-form-card form {
    gap: 10px;
  }

  .booking-map iframe {
    min-height: 210px;
  }
}

@media (min-width: 761px) and (max-width: 1024px) {
  .container {
    width: min(1160px, 94%);
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

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

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

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

.faq-page {
  padding-top: 24px;
}

.faq-wrap {
  background: #f7f9fc;
  border: 1px solid #e3eaf4;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 35px rgba(13, 26, 54, 0.06);
}

.faq-banner {
  background: linear-gradient(135deg, #47c933, #35b625);
  color: #0d1a36;
  padding: 20px 24px;
}

.faq-banner h1 {
  margin: 0;
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
}

.faq-accordion {
  display: grid;
}

.faq-item {
  border-top: 1px solid #dde3ec;
  background: #f8fafc;
}

.faq-item:first-child {
  border-top: 0;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 800;
  color: #0d1a36;
  font-size: clamp(1.02rem, 1.4vw, 1.28rem);
  line-height: 1.35;
  padding: 26px 26px 14px;
  position: relative;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 26px;
  font-size: 1.7rem;
  color: #1882ff;
}

.faq-item[open] summary::after {
  content: "x";
}

.faq-answer {
  padding: 0 26px 24px;
  color: var(--muted);
  font-size: clamp(1rem, 1.1vw, 1.08rem);
  line-height: 1.8;
}

.faq-answer strong {
  color: #3a3f48;
  font-size: 1.22em;
}

@media (max-width: 760px) {
  .faq-banner {
    padding: 14px 12px;
  }

  .faq-item summary {
    padding: 16px 14px 10px;
    font-size: 1.05rem;
  }

  .faq-item summary::after {
    right: 12px;
    top: 16px;
  }

  .faq-answer {
    padding: 0 14px 16px;
    line-height: 1.7;
  }
}