/* =========================================================
   KLARWERK — Gebäudereinigung Zürich
   Fiktives Demo-Projekt · gestaltet von loew.me
   ========================================================= */

:root {
  --bg:        #f6fafc;
  --bg-soft:   #eef6fb;
  --white:     #ffffff;
  --ink:       #233240;
  --ink-soft:  #4d6070;
  --ink-mute:  #7b8da0;
  --blue:      #1f8fe0;
  --blue-dark: #1573bb;
  --cyan:      #2ec5d3;
  --green:     #38b98a;
  --line:      #dce7ef;
  --shadow-sm: 0 2px 10px rgba(31, 143, 224, .06);
  --shadow-md: 0 12px 34px rgba(35, 50, 64, .09);
  --shadow-lg: 0 26px 60px rgba(31, 143, 224, .16);
  --radius:    18px;
  --radius-lg: 26px;
  --maxw:      1180px;
  --header-h:  84px;
  --grad:      linear-gradient(120deg, var(--blue) 0%, var(--cyan) 100%);
  --grad-soft: linear-gradient(135deg, #eaf6fe 0%, #e6faf7 100%);
  --font-head: 'Sora', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -.02em;
  margin: 0 0 .5em;
}

h1 { font-size: clamp(2.3rem, 5.4vw, 3.9rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1rem; }

a { color: var(--blue-dark); text-decoration: none; transition: color .2s; }
a:hover { color: var(--blue); }

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

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
}

section { position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-dark);
  background: var(--white);
  border: 1px solid var(--line);
  padding: .4rem .9rem;
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
}
.eyebrow::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--grad);
}

.lead { font-size: 1.15rem; color: var(--ink-soft); max-width: 62ch; }

.section-pad  { padding-block: clamp(64px, 9vw, 120px); }
.section-head { max-width: 720px; margin-bottom: 3rem; }
.section-head.center { margin-inline: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  padding: .95rem 1.7rem;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s cubic-bezier(.2,.7,.3,1), box-shadow .25s, background .25s, color .2s;
  line-height: 1;
}
.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 12px 26px rgba(31,143,224,.32);
}
.btn-primary:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(31,143,224,.42);
}
.btn-ghost {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { transform: translateY(-3px); color: var(--blue-dark); box-shadow: var(--shadow-md); }
.btn-light { background: rgba(255,255,255,.16); color:#fff; border-color: rgba(255,255,255,.4); }
.btn-light:hover { background: #fff; color: var(--blue-dark); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: height .3s ease, background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.site-header.scrolled {
  height: 66px;
  background: rgba(246,250,252,.86);
  backdrop-filter: blur(14px);
  box-shadow: 0 4px 22px rgba(35,50,64,.08);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.32rem;
  letter-spacing: -.01em;
  color: var(--ink);
}
.brand:hover { color: var(--ink); }
.brand-mark {
  width: 38px; height: 38px;
  border-radius: 11px;
  background: var(--grad);
  display: grid; place-items: center;
  box-shadow: 0 8px 18px rgba(31,143,224,.35);
  position: relative;
  flex: none;
}
.brand-mark::after {
  content: "";
  position: absolute;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  top: 7px; left: 7px;
}
.brand-mark::before {
  content: "";
  position: absolute;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.6);
  bottom: 8px; right: 9px;
}
.brand small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .64rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 2px;
}

.nav { display: flex; align-items: center; gap: .3rem; }
.nav a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .98rem;
  color: var(--ink-soft);
  padding: .55rem .85rem;
  border-radius: 100px;
  position: relative;
  transition: color .2s, background .2s;
}
.nav a:hover { color: var(--ink); background: var(--bg-soft); }
.nav a.active { color: var(--blue-dark); }
.nav a.active::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 4px;
  transform: translateX(-50%);
  width: 20px; height: 3px;
  border-radius: 3px;
  background: var(--grad);
}
.nav .btn { margin-left: .6rem; padding: .7rem 1.3rem; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 12px;
  cursor: pointer;
  padding: 0;
  box-shadow: var(--shadow-sm);
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 20px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  margin: 0 auto;
  transition: transform .3s, opacity .2s;
}
.nav-toggle span { position: relative; }
.nav-toggle span::before { position: absolute; top: -6px; left: 0; }
.nav-toggle span::after  { position: absolute; top: 6px;  left: 0; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + 40px);
  padding-bottom: clamp(60px, 8vw, 110px);
  overflow: hidden;
  background:
    radial-gradient(60% 55% at 82% 8%, rgba(46,197,211,.16), transparent 60%),
    radial-gradient(50% 50% at 8% 90%, rgba(31,143,224,.12), transparent 60%),
    var(--bg);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero h1 { margin-top: 1.2rem; }
.hero h1 .grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-lead { font-size: 1.2rem; color: var(--ink-soft); max-width: 46ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.hero-trust {
  display: flex; flex-wrap: wrap;
  gap: 1.4rem 2rem;
  margin-top: 2.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}
.hero-trust div { }
.hero-trust b { font-family: var(--font-head); font-size: 1.5rem; color: var(--ink); display: block; }
.hero-trust span { font-size: .86rem; color: var(--ink-mute); }

.hero-media { position: relative; }
.hero-media img {
  width: 100%;
  aspect-ratio: 4/4.4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.hero-float {
  position: absolute;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  padding: .9rem 1.1rem;
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .9rem;
  font-weight: 600;
  font-family: var(--font-head);
}
.hero-float .dot { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; color:#fff; flex:none; }
.hero-float small { display:block; font-family: var(--font-body); font-weight: 500; color: var(--ink-mute); font-size: .74rem; }
.hero-float.one { top: 12%; left: -22px; animation: floaty 6s ease-in-out infinite; }
.hero-float.two { bottom: 10%; right: -18px; animation: floaty 7s ease-in-out infinite .8s; }

@keyframes floaty {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-12px); }
}

/* floating bubbles */
.bubbles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; }
.bubbles span {
  position: absolute;
  bottom: -60px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, rgba(255,255,255,.9), rgba(46,197,211,.28));
  box-shadow: inset 0 0 8px rgba(255,255,255,.6);
  opacity: .5;
  animation: rise linear infinite;
}
@keyframes rise {
  0%   { transform: translateY(0) translateX(0) scale(.6); opacity: 0; }
  10%  { opacity: .5; }
  90%  { opacity: .4; }
  100% { transform: translateY(-108vh) translateX(28px) scale(1.05); opacity: 0; }
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--grad);
  color: #fff;
  overflow: hidden;
  padding: 1rem 0;
  --gap: 3rem;
}
.marquee-track {
  display: flex;
  gap: var(--gap);
  width: max-content;
  animation: scroll-x 26s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: var(--gap);
  white-space: nowrap;
}
.marquee-track span::after {
  content: "✦";
  opacity: .7;
}
@keyframes scroll-x {
  to { transform: translateX(calc(-50% - var(--gap) / 2)); }
}

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 1.5rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: transform .3s cubic-bezier(.2,.7,.3,1), box-shadow .3s, border-color .3s;
  position: relative;
  overflow: hidden;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: #cfe4f2; }
.card .ico {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: var(--grad-soft);
  color: var(--blue-dark);
  margin-bottom: 1.1rem;
  transition: transform .3s;
}
.card:hover .ico { transform: rotate(-6deg) scale(1.06); }
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--ink-soft); font-size: .98rem; margin: 0; }
.card .link-more {
  display: inline-flex; align-items: center; gap: .4rem;
  margin-top: 1.1rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .92rem;
}
.card .link-more svg { transition: transform .25s; }
.card:hover .link-more svg { transform: translateX(4px); }

/* USP / trust badges */
.badges { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.badge {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.3rem;
  display: flex; gap: .9rem; align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
}
.badge:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.badge .ico { width: 42px; height: 42px; border-radius: 11px; background: var(--grad-soft); color: var(--blue-dark); display: grid; place-items: center; flex: none; }
.badge b { font-family: var(--font-head); font-size: 1rem; display: block; }
.badge span { font-size: .86rem; color: var(--ink-mute); }

/* ---------- Counters ---------- */
.counters { background: var(--grad); color: #fff; border-radius: var(--radius-lg); padding: clamp(2.5rem, 5vw, 3.6rem); box-shadow: var(--shadow-lg); }
.counters .grid-4 { gap: 1rem; }
.counter { text-align: center; padding: .5rem; }
.counter b { font-family: var(--font-head); font-size: clamp(2.4rem, 5vw, 3.4rem); display: block; letter-spacing: -.02em; line-height: 1; }
.counter span { font-size: .95rem; opacity: .9; margin-top: .5rem; display: block; }
.counter + .counter { border-left: 1px solid rgba(255,255,255,.2); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; counter-reset: step; }
.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform .3s, box-shadow .3s;
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step .num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--grad);
  color: #fff;
  display: grid; place-items: center;
  margin-bottom: 1.1rem;
  box-shadow: 0 8px 18px rgba(31,143,224,.3);
}
.step h3 { font-size: 1.15rem; margin-bottom: .4rem; }
.step p { color: var(--ink-soft); font-size: .95rem; margin: 0; }

/* ---------- Testimonial ---------- */
.quote {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(2.2rem, 5vw, 3.6rem);
  box-shadow: var(--shadow-md);
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
  position: relative;
}
.quote::before {
  content: "“";
  font-family: var(--font-head);
  font-size: 6rem;
  line-height: 1;
  color: var(--cyan);
  opacity: .25;
  position: absolute;
  top: .2rem; left: 1.4rem;
}
.quote p { font-family: var(--font-head); font-weight: 500; font-size: clamp(1.2rem, 2.4vw, 1.6rem); color: var(--ink); line-height: 1.4; }
.quote-author { display: flex; align-items: center; justify-content: center; gap: .8rem; margin-top: 1.6rem; }
.quote-author .av { width: 48px; height: 48px; border-radius: 50%; background: var(--grad); color:#fff; display:grid; place-items:center; font-family: var(--font-head); font-weight:700; }
.quote-author b { display: block; font-family: var(--font-head); }
.quote-author span { font-size: .86rem; color: var(--ink-mute); }
.stars { color: #f5b638; letter-spacing: 2px; margin-bottom: 1rem; }

/* ---------- Split feature (image + text) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split.rev .split-media { order: 2; }
.split-media img { width: 100%; aspect-ratio: 5/4; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.split ul.checks { list-style: none; padding: 0; margin: 1.4rem 0 0; }
.checks li { display: flex; gap: .7rem; align-items: flex-start; margin-bottom: .8rem; color: var(--ink-soft); }
.checks li svg { flex: none; margin-top: 3px; color: var(--green); }

/* ---------- Service detail blocks ---------- */
.service-block {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 3rem);
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.6rem;
  transition: box-shadow .3s, transform .3s;
}
.service-block:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.service-block .ico { width: 64px; height: 64px; border-radius: 16px; background: var(--grad-soft); color: var(--blue-dark); display: grid; place-items: center; }
.service-block h3 { font-size: 1.5rem; }
.service-block .tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.tag { font-size: .82rem; font-weight: 600; font-family: var(--font-head); color: var(--blue-dark); background: var(--bg-soft); border: 1px solid var(--line); padding: .35rem .8rem; border-radius: 100px; }
.tag.eco { color: #2b8f6b; background: #e9f8f1; border-color: #cceee0; }

/* ---------- Pricing hint ---------- */
.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: #cfe4f2; }
.price-card.feat { border-color: var(--blue); box-shadow: var(--shadow-md); }
.price-card .from { font-size: .85rem; color: var(--ink-mute); }
.price-card .amount { font-family: var(--font-head); font-weight: 800; font-size: 2.4rem; color: var(--ink); line-height: 1; margin: .2rem 0; }
.price-card .amount small { font-size: .95rem; font-weight: 500; color: var(--ink-mute); }
.price-card ul { list-style: none; padding: 0; margin: 1.2rem 0 0; }
.price-card ul li { display: flex; gap: .6rem; padding: .45rem 0; font-size: .95rem; color: var(--ink-soft); border-top: 1px dashed var(--line); }
.price-card ul li:first-child { border-top: none; }
.price-card ul li svg { color: var(--green); flex: none; }

/* ---------- Team ---------- */
.team-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s; text-align: center; padding-bottom: 1.6rem; }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-avatar { height: 150px; background: var(--grad); position: relative; }
.team-avatar .initials { position: absolute; left: 50%; bottom: -38px; transform: translateX(-50%); width: 92px; height: 92px; border-radius: 50%; background: var(--white); border: 4px solid var(--white); box-shadow: var(--shadow-sm); display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; font-size: 1.7rem; color: var(--blue-dark); }
.team-card h3 { margin-top: 3.2rem; margin-bottom: .1rem; font-size: 1.2rem; }
.team-card .role { color: var(--blue-dark); font-weight: 600; font-family: var(--font-head); font-size: .9rem; }
.team-card p { color: var(--ink-soft); font-size: .92rem; padding-inline: 1.5rem; margin-top: .7rem; }

/* ---------- Values ---------- */
.value { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s; }
.value:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.value .ico { width: 48px; height: 48px; border-radius: 13px; background: var(--grad-soft); color: var(--blue-dark); display: grid; place-items: center; margin-bottom: 1rem; }
.value h3 { font-size: 1.15rem; }
.value p { color: var(--ink-soft); font-size: .95rem; margin: 0; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--grad);
  border-radius: var(--radius-lg);
  padding: clamp(2.6rem, 6vw, 4.2rem);
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.92); max-width: 54ch; margin-inline: auto; }
.cta-band .hero-cta { justify-content: center; }
.cta-band .deco { position: absolute; border-radius: 50%; background: rgba(255,255,255,.12); }
.cta-band .deco.a { width: 220px; height: 220px; top: -80px; right: -40px; }
.cta-band .deco.b { width: 150px; height: 150px; bottom: -60px; left: -30px; }

/* ---------- Page hero (subpages) ---------- */
.page-hero {
  padding-top: calc(var(--header-h) + 54px);
  padding-bottom: clamp(40px, 6vw, 70px);
  background:
    radial-gradient(50% 60% at 90% 0%, rgba(46,197,211,.14), transparent 60%),
    var(--bg-soft);
  border-bottom: 1px solid var(--line);
}
.page-hero .lead { margin-top: .8rem; }
.crumbs { font-size: .86rem; color: var(--ink-mute); margin-bottom: 1rem; font-family: var(--font-head); }
.crumbs a { color: var(--ink-mute); }
.crumbs a:hover { color: var(--blue-dark); }

/* ---------- Contact / form ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2.5rem; align-items: start; }
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.8rem, 4vw, 2.6rem); box-shadow: var(--shadow-md); }
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: .9rem; margin-bottom: .4rem; }
.field .req { color: var(--blue); }
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: .85rem 1rem;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(31,143,224,.14);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-note { font-size: .82rem; color: var(--ink-mute); margin-top: .4rem; }
.form-success {
  display: none;
  background: #e9f8f1;
  border: 1px solid #bfe9d5;
  color: #1f7a56;
  border-radius: 12px;
  padding: 1rem 1.2rem;
  margin-bottom: 1.4rem;
  font-weight: 500;
}
.form-success.show { display: block; }

.info-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem 1.8rem; box-shadow: var(--shadow-sm); margin-bottom: 1.3rem; }
.info-card h3 { font-size: 1.1rem; margin-bottom: .8rem; }
.info-list { list-style: none; padding: 0; margin: 0; }
.info-list li { display: flex; gap: .8rem; align-items: flex-start; padding: .5rem 0; color: var(--ink-soft); font-size: .95rem; }
.info-list li svg { color: var(--blue-dark); flex: none; margin-top: 2px; }
.info-list li b { color: var(--ink); font-family: var(--font-head); font-weight: 600; }

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  height: 260px;
  background:
    linear-gradient(135deg, #e3f1fb 0%, #e7f8f4 100%);
  position: relative;
  display: grid;
  place-items: center;
}
.map-embed::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(31,143,224,.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31,143,224,.09) 1px, transparent 1px);
  background-size: 34px 34px;
}
.map-pin { position: relative; text-align: center; z-index: 1; }
.map-pin .pin { width: 46px; height: 46px; border-radius: 50% 50% 50% 0; background: var(--grad); transform: rotate(-45deg); margin: 0 auto .8rem; box-shadow: var(--shadow-md); animation: floaty 3.5s ease-in-out infinite; }
.map-pin .pin::after { content: ""; position: absolute; inset: 13px; background: #fff; border-radius: 50%; }
.map-pin b { font-family: var(--font-head); color: var(--ink); }
.map-pin span { display: block; font-size: .84rem; color: var(--ink-mute); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq details { background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 0 1.4rem; margin-bottom: .9rem; box-shadow: var(--shadow-sm); transition: box-shadow .3s; }
.faq details[open] { box-shadow: var(--shadow-md); }
.faq summary { cursor: pointer; list-style: none; padding: 1.15rem 0; font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--blue-dark); transition: transform .3s; font-weight: 400; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--ink-soft); padding-bottom: 1.2rem; margin: 0; }

/* ---------- Footer ---------- */
.site-footer { background: #1a2733; color: #b9c7d4; padding-top: clamp(48px, 6vw, 72px); margin-top: clamp(60px, 8vw, 100px); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.4rem; padding-bottom: 3rem; }
.site-footer .brand { color: #fff; }
.site-footer .brand small { color: #7d92a5; }
.site-footer p { color: #90a3b4; font-size: .94rem; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: .6rem; }
.footer-col a { color: #b9c7d4; font-size: .94rem; }
.footer-col a:hover { color: #fff; }
.footer-contact li { display: flex; gap: .6rem; align-items: flex-start; font-size: .94rem; margin-bottom: .7rem; }
.footer-contact svg { color: var(--cyan); flex: none; margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.5rem 0; text-align: center; }
.footer-bottom p { color: #7d92a5; font-size: .88rem; margin: 0; }
.footer-bottom a { color: #b9c7d4; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

/* ---------- Focus visibility ---------- */
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; border-radius: 6px; }

.skip-link { position: absolute; left: -999px; top: 0; background: var(--blue-dark); color: #fff; padding: .7rem 1.2rem; border-radius: 0 0 10px 0; z-index: 200; }
.skip-link:focus { left: 0; color: #fff; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { max-width: 520px; margin-inline: auto; order: -1; }
  .hero-float.one { left: 0; }
  .hero-float.two { right: 0; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .badges { grid-template-columns: repeat(2, 1fr); }
  .steps  { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .split.rev .split-media { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .counter + .counter { border-left: none; }
}

@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed;
    inset: 0 0 auto 0;
    top: 0;
    flex-direction: column;
    align-items: stretch;
    gap: .3rem;
    background: rgba(246,250,252,.98);
    backdrop-filter: blur(16px);
    padding: calc(var(--header-h) + 16px) 24px 28px;
    box-shadow: var(--shadow-md);
    transform: translateY(-110%);
    transition: transform .38s cubic-bezier(.2,.7,.3,1);
    border-bottom: 1px solid var(--line);
  }
  .nav.open { transform: translateY(0); }
  .nav a { padding: .85rem 1rem; font-size: 1.05rem; }
  .nav a.active::after { display: none; }
  .nav a.active { background: var(--bg-soft); }
  .nav .btn { margin: .6rem 0 0; justify-content: center; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .service-block { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .counters .grid-4 { grid-template-columns: 1fr 1fr; gap: 1.8rem; }
}

@media (max-width: 460px) {
  .badges, .steps, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-trust { gap: 1rem 1.5rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .bubbles, .hero-float { display: none; }
}
