/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --bg:          #f7f9ff;
  --bg-alt:      #eef3ff;
  --surface:     #ffffff;
  --dark:        #0a1628;
  --dark-2:      #0f1e35;
  --text:        #0a1628;
  --text-2:      #334155;
  --text-3:      #64748b;
  --primary:     #1d4ed8;
  --primary-hov: #1e3a8a;
  --primary-lt:  #dbeafe;
  --accent:      #22b8e0;
  --amber:       #f59e0b;
  --border:      #e2eaf8;
  --border-dark: rgba(255,255,255,0.09);
  --shadow-sm:   0 1px 4px rgba(10,22,40,0.06), 0 4px 14px rgba(10,22,40,0.04);
  --shadow:      0 4px 24px rgba(10,22,40,0.09), 0 1px 4px rgba(10,22,40,0.04);
  --shadow-lg:   0 8px 48px rgba(10,22,40,0.14);
  --r-sm:        10px;
  --r:           18px;
  --r-lg:        26px;
  --r-full:      999px;
  --max-w:       1160px;
  --header-h:    78px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.68;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; height: auto; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
address { font-style: normal; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 { line-height: 1.18; font-weight: 800; margin-bottom: 0; }

h1 { font-size: clamp(2.1rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.7rem, 3.8vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.28rem); font-weight: 700; }

p { color: var(--text-2); margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

em { font-style: normal; color: var(--accent); }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.65rem;
}
.eyebrow-inv { color: var(--accent); }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: min(var(--max-w), calc(100% - 2.5rem));
  margin-inline: auto;
}

.section { padding: clamp(4rem, 8vw, 6.5rem) 0; }

.bg-white   { background: var(--surface); }
.bg-alt     { background: var(--bg-alt); }
.bg-dark    { background: var(--dark); }

/* Section heading block */
.sec-head {
  max-width: 720px;
  margin-bottom: clamp(2.4rem, 4vw, 3.4rem);
}
.sec-head h2 { margin-top: 0.4rem; }

.sec-head-inv h2 { color: #fff; }

.sec-sub { font-size: 1.05rem; margin-top: 0.75rem; }
.sec-sub-inv { color: #94a3b8; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.78rem 1.35rem;
  border-radius: var(--r-full);
  font: 700 0.95rem/1 "Manrope", sans-serif;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
  white-space: nowrap;
}
.btn:hover, .btn:focus-visible { transform: translateY(-2px); }
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.btn-lg { padding: 0.9rem 1.75rem; font-size: 1rem; }

.btn-primary {
  color: #fff;
  background: linear-gradient(130deg, var(--primary), #2563eb);
  box-shadow: 0 6px 20px rgba(29,78,216,0.28);
}
.btn-primary:hover { background: linear-gradient(130deg, var(--primary-hov), var(--primary)); }

.btn-white {
  color: var(--dark);
  background: #fff;
  box-shadow: 0 6px 22px rgba(10,22,40,0.18);
}
.btn-white:hover { background: #f0f5ff; }

.btn-outline-white {
  color: #fff;
  background: transparent;
  border-color: rgba(255,255,255,0.45);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }

.btn-block { width: 100%; }

/* ============================================================
   SKIP LINK
   ============================================================ */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--dark);
  color: #fff;
  padding: 0.8rem 1rem;
  z-index: 9999;
  border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus { left: 0; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(247, 249, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(10,22,40,0.1); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.logo-img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--border);
  object-fit: cover;
  background: #fff;
}
.logo-texts {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1.25;
}
.logo-name { font-size: 0.97rem; font-weight: 800; color: var(--text); }
.logo-sub  { font-size: 0.72rem; font-weight: 600; color: var(--text-3); }

/* Main nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-2);
  transition: color 0.2s;
}
.nav-link:hover, .nav-link:focus-visible { color: var(--primary); }
.nav-cta { margin-left: 0.5rem; padding: 0.65rem 1.25rem; font-size: 0.9rem; }
.nav-link.active { color: var(--primary); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--dark);
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(3.5rem, 7vw, 6rem);
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -20%;
  left: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(29,78,216,0.22) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

/* Hero left column */
.hero-copy { display: flex; flex-direction: column; gap: 1.5rem; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(34,184,224,0.12);
  border: 1px solid rgba(34,184,224,0.28);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.45rem 0.9rem;
  border-radius: var(--r-full);
  width: fit-content;
}

.hero h1 { color: #fff; margin: 0; }

.lead {
  color: #94a3b8;
  font-size: 1.05rem;
  max-width: 56ch;
  margin: 0;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.85rem; }

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0;
}
.hero-pills li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #cbd5e1;
}

/* Hero right card */
.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.hero-photo {
  margin: 0;
  line-height: 0;
}
.hero-photo img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.hero-card-body { padding: clamp(1.2rem, 3vw, 1.75rem); }
.card-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--primary);
  margin-bottom: 0.3rem;
}
.hero-card-body h2 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); margin: 0.1rem 0 1rem; }

.adr-list { display: grid; gap: 0.55rem; margin-bottom: 1rem; }
.adr-row {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.9rem;
  color: var(--text-2);
}
.adr-row svg { flex-shrink: 0; margin-top: 2px; }
.adr-row a { color: var(--primary); font-weight: 600; }
.adr-row a:hover { text-decoration: underline; }

.rating-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding-top: 0.85rem;
  border-top: 1px dashed #d1ddf5;
}
.stars { color: var(--amber); font-size: 1.05rem; letter-spacing: 0.1em; }
.rating-text-wrap { display: flex; align-items: baseline; gap: 0.35rem; }
.rating-num { font-size: 1.5rem; font-weight: 900; color: var(--text); }
.rating-label { font-size: 0.85rem; color: var(--text-3); }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 1.6rem 0;
}
.trust-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex: 1;
  min-width: 160px;
}
.trust-item div { display: flex; flex-direction: column; gap: 0.1rem; }
.trust-item strong { font-size: 0.97rem; font-weight: 800; color: var(--text); }
.trust-item span   { font-size: 0.82rem; color: var(--text-3); }

.trust-sep {
  width: 1px;
  height: 32px;
  background: var(--border);
  flex-shrink: 0;
}

/* ============================================================
   SERVICES
   ============================================================ */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.svc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: clamp(1.4rem, 3vw, 2rem);
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: #bfdbfe;
}

.svc-icon {
  width: 52px;
  height: 52px;
  background: #eff6ff;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  flex-shrink: 0;
}

.svc-card h3 { margin-bottom: 0.5rem; color: var(--text); }
.svc-card p  { font-size: 0.93rem; margin: 0; }

/* ============================================================
   ABOUT / SPLIT LAYOUT
   ============================================================ */
.split-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.split-content h2 { margin-top: 0.4rem; margin-bottom: 1.2rem; }
.split-content p  { max-width: 56ch; }

.about-photo {
  margin-top: 1.5rem;
  text-align: center;
}
.about-photo img {
  border-radius: var(--r);
  border: 1px solid var(--border);
  width: min(100%, 760px);
  margin-inline: auto;
  aspect-ratio: 16/10;
  object-fit: cover;
  box-shadow: var(--shadow);
}

/* Stats column */
.split-stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.25rem 1.4rem;
  box-shadow: var(--shadow-sm);
}
.stat-val {
  display: block;
  font-size: 1.65rem;
  font-weight: 900;
  color: var(--primary-hov);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-card p { font-size: 0.88rem; color: var(--text-2); margin: 0; }

/* ============================================================
   FEATURES / WARUM WIR
   ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.feature-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: clamp(1.4rem, 3vw, 2rem);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}
.feature-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.feature-num {
  font-size: 2.4rem;
  font-weight: 900;
  color: #dbeafe;
  line-height: 1;
  flex-shrink: 0;
  width: 56px;
  letter-spacing: -0.02em;
}

.feature-body h3 { margin-bottom: 0.45rem; color: var(--text); }
.feature-body p  { font-size: 0.93rem; margin: 0; }

/* ============================================================
   PROCESS / STEPS
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}

.step-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-dark);
  border-radius: var(--r);
  padding: clamp(1.4rem, 2.5vw, 2rem);
  transition: background 0.25s ease;
}
.step-card:hover { background: rgba(255,255,255,0.08); }

.step-num {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.8rem;
  font-variant-numeric: tabular-nums;
}
.step-card h3 { color: #fff; font-size: 1.12rem; margin-bottom: 0.5rem; }
.step-card p  { color: #94a3b8; font-size: 0.9rem; margin: 0; }

.steps-cta { text-align: center; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: clamp(1.4rem, 2.5vw, 1.9rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.testi-stars { color: var(--amber); font-size: 1rem; letter-spacing: 0.12em; }

.testi-card p {
  font-size: 0.97rem;
  color: var(--text-2);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

.testi-card cite {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text-3);
  font-style: normal;
}

/* Rating summary */
.rating-summary {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.4rem 2rem;
  width: fit-content;
  margin-inline: auto;
}
.rating-big {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
}
.stars-lg { color: var(--amber); font-size: 1.2rem; letter-spacing: 0.15em; }
.rating-summary p { font-size: 0.9rem; color: var(--text-2); margin-top: 0.3rem; margin-bottom: 0; }
.rating-summary small { font-size: 0.8rem; color: var(--text-3); }

/* ============================================================
   LOCATION
   ============================================================ */
.loc-figure {
  margin-bottom: 1.5rem;
  text-align: center;
}
.loc-figure img {
  width: min(100%, 900px);
  margin: 0 auto;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  aspect-ratio: 16/7;
  object-fit: cover;
}
.loc-figure figcaption {
  margin-top: 0.75rem;
  font-size: 0.88rem;
  color: var(--text-3);
}
.loc-cta { display: flex; justify-content: center; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact-col h2 { margin-top: 0.4rem; margin-bottom: 1rem; }
.contact-col > p { max-width: 50ch; }

.contact-details {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}
.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}
.cd-icon {
  width: 38px;
  height: 38px;
  background: var(--primary-lt);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-details li div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.contact-details li strong { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.07em; color: var(--text-3); font-weight: 700; }
.contact-details li a, .contact-details li span { font-size: 0.97rem; color: var(--text-2); font-weight: 600; }
.contact-details li a:hover { color: var(--primary); text-decoration: underline; }

.office-hours { padding-top: 1.5rem; border-top: 1px solid var(--border); }
.office-hours h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.placeholder-note { font-size: 0.88rem; color: var(--text-3); font-style: italic; }
.hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.92rem;
  color: var(--text-2);
}
.hours-list li strong {
  color: var(--text);
  font-weight: 700;
}

/* Form */
.form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  padding: clamp(1.5rem, 3.5vw, 2.4rem);
}

.contact-form h3 { font-size: 1.2rem; margin-bottom: 1.4rem; color: var(--text); }

.form-field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 0.85rem; }
.form-field label { font-size: 0.88rem; font-weight: 700; color: var(--text-2); }
.form-field label span { color: var(--primary); }

.form-field input,
.form-field textarea {
  font: inherit;
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 0.72rem 0.9rem;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-size: 0.97rem;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(29,78,216,0.12);
}
.form-field textarea { resize: vertical; min-height: 120px; }

.form-note { font-size: 0.8rem; color: var(--text-3); margin-top: 0.75rem; text-align: center; }
.form-success {
  display: none;
  text-align: center;
  padding: 1rem;
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  border-radius: var(--r-sm);
  color: #065f46;
  font-weight: 700;
  margin-top: 0.75rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark);
  padding-top: clamp(3rem, 6vw, 4.5rem);
  color: #cbd5e1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border-dark);
}

/* Brand col */
.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}
.footer-logo {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.1);
  flex-shrink: 0;
}
.footer-brand strong { display: block; color: #fff; font-size: 0.97rem; font-weight: 800; }
.footer-brand span   { font-size: 0.82rem; color: #64748b; }

/* Footer columns */
.footer-col h3 {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 1rem;
}
.footer-col address p, .footer-col p { color: #94a3b8; font-size: 0.88rem; margin-bottom: 0.4rem; }
.footer-col a { color: #94a3b8; font-size: 0.88rem; display: block; margin-bottom: 0.5rem; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-col nav { display: flex; flex-direction: column; }

/* Footer bottom */
.footer-bottom {
  padding: 1.1rem 0 1.5rem;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-bottom small { font-size: 0.82rem; color: #475569; }

.powered-by a {
  color: #22b8e0;
  font-weight: 700;
  transition: opacity 0.2s;
}
.powered-by a:hover { opacity: 0.8; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .btn, .svc-card, .testi-card, .feature-item, .step-card { transition: none; }
}

@media (hover: none) {
  .svc-card:hover, .testi-card:hover, .feature-item:hover, .step-card:hover { transform: none; box-shadow: initial; }
}

/* ============================================================
   RESPONSIVE — TABLET  (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ============================================================
   RESPONSIVE — TABLET PORTRAIT  (≤ 840px)
   ============================================================ */
@media (max-width: 840px) {
  /* Nav becomes overlay */
  .hamburger { display: flex; }
  .main-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: 1rem 1.25rem 1.25rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    z-index: 199;
  }
  .main-nav.open { display: flex; }
  .nav-link {
    padding: 0.65rem 0.9rem;
    border-radius: var(--r-sm);
    font-size: 1rem;
  }
  .nav-link:hover { background: var(--bg-alt); }
  .nav-cta { margin: 0.5rem 0 0; width: 100%; justify-content: center; }

  /* Hero */
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { max-width: 540px; }
  .hero-copy { gap: 1.2rem; }

  /* Split layouts */
  .split-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }

  /* Feature grid → 1 col */
  .feature-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE — MOBILE  (≤ 640px)
   ============================================================ */
@media (max-width: 640px) {
  :root { --header-h: 68px; }
  .container { width: min(var(--max-w), calc(100% - 1.5rem)); }
  .section { padding: clamp(2.8rem, 8vw, 4.5rem) 0; }

  h1 { font-size: clamp(1.85rem, 9vw, 2.4rem); }
  h2 { font-size: clamp(1.5rem, 7vw, 1.95rem); }

  /* Chip / pills */
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .hero-pills { gap: 0.4rem; }

  /* Trust strip */
  .trust-row { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .trust-sep { display: none; }
  .trust-item { min-width: 0; width: 100%; }

  /* Service cards */
  .svc-grid { grid-template-columns: 1fr; }

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

  /* Testimonials */
  .testi-grid { grid-template-columns: 1fr; }

  /* Rating summary */
  .rating-summary { flex-direction: column; align-items: center; gap: 0.6rem; width: 100%; text-align: center; }
  .rating-big { font-size: 2.8rem; }

  /* Location */
  .loc-figure img { aspect-ratio: 4/3; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .powered-by { text-align: center; }
}
