/* ========= KlarWerk Gebäudereinigung ========= */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@500;600;700;800&family=Rubik:wght@400;500;600&display=swap');

:root {
  --petrol: #0E4F49;
  --petrol-dark: #0A3B36;
  --aqua: #7FD8CE;
  --mist: #E4F3F0;
  --paper: #F8FCFB;
  --ink: #122B28;
  --lemon: #F2C14E;
  --danger: #D9534F;
  --radius-lg: 26px;
  --radius-sm: 12px;
  --shadow: 0 12px 32px rgba(14, 79, 73, 0.14);
  --font-display: 'Sora', sans-serif;
  --font-body: 'Rubik', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container { width: min(1140px, 92%); margin-inline: auto; }

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; }

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }

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

section { padding: 84px 0; }

.section-head { max-width: 620px; margin-bottom: 46px; }
.section-head p { margin-top: 12px; color: #43625e; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  padding: 14px 28px;
  border-radius: 999px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:active { transform: scale(.96); }
.btn-primary { background: var(--petrol); color: #fff; }
.btn-primary:hover { background: var(--petrol-dark); box-shadow: var(--shadow); transform: translateY(-2px); }
.btn-lemon { background: var(--lemon); color: var(--ink); }
.btn-lemon:hover { box-shadow: 0 10px 24px rgba(242, 193, 78, .45); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--petrol); border: 2px solid var(--petrol); }
.btn-ghost:hover { background: var(--mist); }
.btn:focus-visible, a:focus-visible { outline: 3px solid var(--aqua); outline-offset: 3px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 252, 251, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(14, 79, 73, .1);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 20px;
}
.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-drop {
  width: 34px; height: 34px;
  background: var(--petrol);
  border-radius: 50% 50% 50% 6px;
  transform: rotate(-45deg);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.logo-drop::after {
  content: '';
  width: 10px; height: 10px;
  background: var(--aqua);
  border-radius: 50%;
  transform: translate(-3px, -3px);
}
.main-nav { display: flex; gap: 28px; }
.main-nav a {
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 3px;
  background: var(--aqua);
  border-radius: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 14px; }

/* Cart button */
.cart-btn {
  position: relative;
  background: var(--mist);
  border: none;
  width: 48px; height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: grid; place-items: center;
  transition: background .2s ease, transform .2s ease;
}
.cart-btn:hover { background: var(--aqua); transform: translateY(-2px); }
.cart-btn svg { width: 22px; height: 22px; stroke: var(--petrol); }
.cart-count {
  position: absolute;
  top: -4px; right: -4px;
  min-width: 22px; height: 22px;
  padding: 0 5px;
  background: var(--lemon);
  color: var(--ink);
  font-size: .75rem;
  font-weight: 700;
  border-radius: 999px;
  display: grid; place-items: center;
  transition: transform .2s ease;
}
.cart-count.bump { animation: bump .45s ease; }
@keyframes bump {
  0% { transform: scale(1); }
  35% { transform: scale(1.55) rotate(8deg); }
  70% { transform: scale(.85); }
  100% { transform: scale(1); }
}

/* Burger */
.burger {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  align-items: center;
}
.burger span {
  width: 26px; height: 3px;
  background: var(--petrol);
  border-radius: 3px;
  transition: transform .3s ease, opacity .3s ease;
}
.burger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(140deg, var(--petrol) 0%, #0C635B 55%, #12756B 100%);
  color: #fff;
  padding: 100px 0 120px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero p.lead { margin: 20px 0 32px; font-size: 1.15rem; color: #D7EEEA; max-width: 46ch; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.hero-badge {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: .9rem;
}

/* Bubbles */
.bubbles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.bubble {
  position: absolute;
  bottom: -120px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.55), rgba(255,255,255,.06) 60%);
  animation: rise linear infinite;
}
@keyframes rise {
  to { transform: translateY(-115vh) translateX(40px); opacity: 0; }
}

/* Squeegee card in hero */
.hero-visual {
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: 0 30px 60px rgba(0,0,0,.25);
  position: relative;
  overflow: hidden;
}
.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(127,216,206,.35) 45%, transparent 60%);
  transform: translateX(-120%);
  animation: shine 4.5s ease-in-out infinite;
}
@keyframes shine { 45% , 100% { transform: translateX(120%); } }
.hero-visual h3 { margin-bottom: 18px; }
.hero-visual ul { list-style: none; display: grid; gap: 14px; }
.hero-visual li { display: flex; gap: 12px; align-items: flex-start; }
.tick {
  width: 24px; height: 24px; flex-shrink: 0;
  background: var(--mist);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--petrol);
  font-weight: 700;
  font-size: .85rem;
}

/* ---------- Cards / services ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }

.service-card {
  background: #fff;
  border: 1px solid rgba(14,79,73,.09);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-icon {
  width: 58px; height: 58px;
  background: var(--mist);
  border-radius: 18px;
  display: grid; place-items: center;
  font-size: 1.6rem;
}
.service-card p { color: #43625e; font-size: .97rem; flex: 1; }
.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
}
.price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--petrol);
}
.price small { font-size: .8rem; font-weight: 500; color: #56736f; }

.add-to-cart {
  background: var(--petrol);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 10px 18px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .2s ease, transform .2s ease;
}
.add-to-cart:hover { background: var(--petrol-dark); transform: translateY(-2px); }
.add-to-cart.added { background: #2E8B57; animation: pulse-added .5s ease; }
@keyframes pulse-added {
  50% { transform: scale(1.08); }
}

/* Fly to cart clone */
.fly-item {
  position: fixed;
  z-index: 999;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--aqua);
  display: grid; place-items: center;
  font-size: 1.3rem;
  box-shadow: 0 8px 20px rgba(14,79,73,.35);
  pointer-events: none;
  transition: transform .7s cubic-bezier(.45, -0.15, .55, 1.1), opacity .7s ease;
}

/* ---------- Steps ---------- */
.steps { counter-reset: step; }
.step-card {
  background: var(--mist);
  border-radius: var(--radius-lg);
  padding: 30px;
  position: relative;
}
.step-card::before {
  counter-increment: step;
  content: counter(step);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.6rem;
  color: var(--aqua);
  display: block;
  margin-bottom: 10px;
}
.step-card h3 { margin-bottom: 8px; }
.step-card p { color: #3d5e5a; font-size: .95rem; }

/* ---------- Stats band ---------- */
.stats-band { background: var(--petrol); color: #fff; padding: 60px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-num { font-family: var(--font-display); font-weight: 800; font-size: 2.6rem; color: var(--aqua); }
.stat-label { color: #CBE8E3; font-size: .95rem; }

/* ---------- Testimonials ---------- */
.quote-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(14,79,73,.09);
  padding: 30px;
}
.quote-card p { font-size: 1rem; color: #33524e; }
.quote-author { margin-top: 18px; display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--aqua);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--petrol-dark);
}
.quote-author strong { display: block; font-family: var(--font-display); font-size: .95rem; }
.quote-author span { font-size: .85rem; color: #56736f; }
.stars { color: var(--lemon); letter-spacing: 2px; margin-bottom: 12px; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--lemon), #F7D57C);
  border-radius: var(--radius-lg);
  padding: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-band h2 { max-width: 22ch; }
.cta-band p { color: #4a3f1e; margin-top: 8px; }

/* ---------- Pricing ---------- */
.plan-card {
  background: #fff;
  border: 2px solid rgba(14,79,73,.12);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.plan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.plan-card.featured { border-color: var(--petrol); position: relative; background: var(--petrol); color: #fff; }
.plan-card.featured .plan-price, .plan-card.featured h3 { color: #fff; }
.plan-card.featured li { color: #D7EEEA; }
.plan-tag {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--lemon);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .8rem;
  padding: 5px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
.plan-price { font-family: var(--font-display); font-weight: 800; font-size: 2.4rem; color: var(--petrol); }
.plan-price small { font-size: .95rem; font-weight: 500; }
.plan-card ul { list-style: none; display: grid; gap: 10px; flex: 1; }
.plan-card li { display: flex; gap: 10px; color: #3d5e5a; font-size: .95rem; }
.plan-card li::before { content: '✓'; color: var(--aqua); font-weight: 700; }

/* ---------- FAQ ---------- */
.faq-item {
  background: #fff;
  border: 1px solid rgba(14,79,73,.1);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none; border: none;
  text-align: left;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q .chev { transition: transform .3s ease; color: var(--petrol); flex-shrink: 0; }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-a p { padding: 0 24px 20px; color: #43625e; }

/* ---------- Team ---------- */
.team-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(14,79,73,.09);
  padding: 30px;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.team-avatar {
  width: 90px; height: 90px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--aqua), var(--mist));
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--petrol-dark);
}
.team-card span { color: #56736f; font-size: .9rem; }

.value-card {
  border-left: 5px solid var(--aqua);
  background: #fff;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 24px 26px;
}
.value-card p { color: #43625e; margin-top: 6px; font-size: .96rem; }

/* ---------- Forms ---------- */
.form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(14,79,73,.1);
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-field { position: relative; }
.form-field.full { grid-column: 1 / -1; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 16px 16px 16px 16px;
  border: 2px solid #CFE3DF;
  border-radius: var(--radius-sm);
  background: var(--paper);
  color: var(--ink);
  transition: border-color .25s ease, box-shadow .25s ease;
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-field label {
  position: absolute;
  left: 14px; top: 16px;
  padding: 0 6px;
  background: transparent;
  color: #6b8480;
  pointer-events: none;
  transition: all .2s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--petrol);
  box-shadow: 0 0 0 4px rgba(127,216,206,.35);
}
.form-field input:focus + label,
.form-field input:not(:placeholder-shown) + label,
.form-field textarea:focus + label,
.form-field textarea:not(:placeholder-shown) + label,
.form-field select:focus + label,
.form-field select.filled + label {
  top: -10px;
  font-size: .8rem;
  color: var(--petrol);
  background: #fff;
  border-radius: 6px;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: transparent; }

.form-field.error input, .form-field.error textarea, .form-field.error select {
  border-color: var(--danger);
  animation: shake .4s ease;
}
.error-msg {
  display: none;
  color: var(--danger);
  font-size: .82rem;
  margin-top: 6px;
}
.form-field.error .error-msg { display: block; }
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-7px); }
  50% { transform: translateX(7px); }
  75% { transform: translateX(-4px); }
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.show { display: block; animation: fade-up .5s ease; }
@keyframes fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.check-circle {
  width: 88px; height: 88px;
  margin: 0 auto 22px;
}
.check-circle circle {
  fill: none;
  stroke: var(--aqua);
  stroke-width: 4;
  stroke-dasharray: 260;
  stroke-dashoffset: 260;
  animation: draw .7s ease forwards;
}
.check-circle path {
  fill: none;
  stroke: var(--petrol);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: draw .5s ease .5s forwards;
}
@keyframes draw { to { stroke-dashoffset: 0; } }

/* ---------- Cart drawer ---------- */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 40, 37, .45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  z-index: 200;
}
.drawer-overlay.open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  height: 100dvh;
  width: min(420px, 100%);
  background: #fff;
  z-index: 201;
  transform: translateX(105%);
  transition: transform .38s cubic-bezier(.2, .8, .25, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 50px rgba(0,0,0,.2);
}
.cart-drawer.open { transform: translateX(0); }
.drawer-head {
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(14,79,73,.1);
}
.drawer-head h3 { font-size: 1.2rem; }
.drawer-close {
  background: var(--mist);
  border: none;
  width: 38px; height: 38px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--petrol);
  transition: background .2s ease, transform .2s ease;
}
.drawer-close:hover { background: var(--aqua); transform: rotate(90deg); }
.drawer-body { flex: 1; overflow-y: auto; padding: 20px 26px; }
.drawer-empty { text-align: center; color: #56736f; padding: 50px 10px; }
.drawer-empty .big { font-size: 3rem; margin-bottom: 12px; }

.cart-line {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(14,79,73,.15);
  animation: fade-up .3s ease;
}
.cart-line.removing { animation: slide-out .3s ease forwards; }
@keyframes slide-out {
  to { opacity: 0; transform: translateX(40px); height: 0; padding: 0; }
}
.cart-line .emoji {
  width: 48px; height: 48px;
  background: var(--mist);
  border-radius: 14px;
  display: grid; place-items: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.cart-line-info { flex: 1; min-width: 0; }
.cart-line-info strong { font-family: var(--font-display); font-size: .95rem; display: block; }
.cart-line-info span { font-size: .85rem; color: #56736f; }
.qty-controls { display: flex; align-items: center; gap: 8px; }
.qty-btn {
  width: 28px; height: 28px;
  border: 2px solid var(--mist);
  background: #fff;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  color: var(--petrol);
  transition: background .15s ease, border-color .15s ease;
}
.qty-btn:hover { background: var(--mist); border-color: var(--aqua); }
.qty-val { min-width: 20px; text-align: center; font-weight: 600; }
.remove-line {
  background: none; border: none;
  color: var(--danger);
  cursor: pointer;
  font-size: 1.05rem;
  padding: 6px;
  border-radius: 8px;
  transition: background .15s ease;
}
.remove-line:hover { background: #fdecec; }

.drawer-foot {
  padding: 20px 26px 26px;
  border-top: 1px solid rgba(14,79,73,.1);
}
.drawer-total {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 16px;
}
.drawer-foot .btn { width: 100%; justify-content: center; }

/* Toast */
.toast {
  position: fixed;
  bottom: 28px; left: 50%;
  transform: translate(-50%, 80px);
  background: var(--petrol);
  color: #fff;
  padding: 14px 24px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  box-shadow: var(--shadow);
  opacity: 0;
  transition: transform .35s cubic-bezier(.2,.8,.25,1), opacity .35s ease;
  z-index: 300;
  pointer-events: none;
}
.toast.show { transform: translate(-50%, 0); opacity: 1; }

/* ---------- Cart page ---------- */
.cart-page-grid {
  display: grid;
  grid-template-columns: 1.4fr .9fr;
  gap: 34px;
  align-items: start;
}
.cart-table { background: #fff; border-radius: var(--radius-lg); border: 1px solid rgba(14,79,73,.1); padding: 12px 26px; }
.summary-card {
  background: var(--petrol);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  position: sticky;
  top: 100px;
}
.summary-card h3 { margin-bottom: 18px; }
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255,255,255,.25);
  font-size: .97rem;
  color: #D7EEEA;
}
.summary-row.total {
  border: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: #fff;
  margin-top: 8px;
}
.summary-card .btn { width: 100%; justify-content: center; margin-top: 20px; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Page hero (subpages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--petrol), #12756B);
  color: #fff;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.page-hero p { color: #CBE8E3; margin-top: 12px; max-width: 55ch; }
.breadcrumb { font-size: .88rem; color: #9ED4CC; margin-bottom: 14px; }
.breadcrumb a { color: #CBE8E3; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 34px; align-items: start; }
.info-tile {
  background: var(--mist);
  border-radius: var(--radius-sm);
  padding: 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.info-tile .ico {
  width: 46px; height: 46px;
  background: #fff;
  border-radius: 14px;
  display: grid; place-items: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.info-tile strong { font-family: var(--font-display); display: block; }
.info-tile span { color: #43625e; font-size: .93rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--petrol-dark);
  color: #B9DBD6;
  padding: 60px 0 30px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 34px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.site-footer h4 { color: #fff; margin-bottom: 16px; font-size: 1rem; }
.site-footer a { color: #B9DBD6; display: block; padding: 5px 0; transition: color .2s ease; }
.site-footer a:hover { color: var(--aqua); }
.footer-bottom { padding-top: 24px; font-size: .88rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid, .grid-3, .grid-2, .stats-grid, .cart-page-grid,
  .contact-grid, .form-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .main-nav {
    position: fixed;
    top: 80px; right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    width: min(300px, 85%);
    padding: 20px;
    border-radius: 0 0 0 var(--radius-lg);
    box-shadow: var(--shadow);
    transform: translateX(110%);
    transition: transform .3s ease;
    z-index: 150;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { padding: 14px 10px; border-bottom: 1px solid var(--mist); }
  .burger { display: flex; }
  section { padding: 60px 0; }
  .cta-band { padding: 34px; }
  .form-card { padding: 26px; }
  .summary-card { position: static; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
}
