/* ==========================================================================
   Laper DDD — style.css
   Svetlý „clean glass" dizajn — čisté HTML + CSS + jQuery
   ========================================================================== */

:root {
  /* Surfaces — light, hygienic */
  --bg: #ffffff;
  --bg-soft: #f5f7fb;
  --bg-tint: #eef3fa;

  /* Text */
  --ink: #23272f;
  --ink-strong: #16181d;
  --muted: #6b7280;

  --line: rgba(23, 43, 77, 0.08);

  /* Brand */
  --accent: #ff8a1e;
  --accent-2: #ff6a00;
  --accent-grad: linear-gradient(135deg, #ffa227 0%, #ff6a00 100%);
  --accent-soft: rgba(255, 138, 30, 0.1);

  /* Hygienic secondary — sky */
  --sky: #38bdf8;
  --sky-soft: rgba(56, 189, 248, 0.1);

  --success: #22c55e;

  /* Glass */
  --glass: rgba(255, 255, 255, 0.62);
  --glass-strong: rgba(255, 255, 255, 0.78);
  --glass-border: rgba(255, 255, 255, 0.95);
  --glass-outline: rgba(23, 43, 77, 0.07);

  --radius-sm: 16px;
  --radius: 24px;
  --radius-lg: 32px;

  --shadow-sm: 0 2px 14px rgba(31, 59, 113, 0.06);
  --shadow: 0 16px 44px rgba(31, 59, 113, 0.09);
  --shadow-lg: 0 32px 90px rgba(31, 59, 113, 0.14);

  --font: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, sans-serif;
  --container: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: -0.011em;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--accent-2); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  color: var(--ink-strong);
  line-height: 1.12;
  margin: 0 0 0.5em;
  font-weight: 700;
  letter-spacing: -0.028em;
}

h1 { font-size: clamp(2.5rem, 5.6vw, 4.2rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: 1.25rem; letter-spacing: -0.02em; }

p { margin: 0 0 1em; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 110px 0; }
.section--alt { background: var(--bg-soft); }

/* Bývalé tmavé sekcie — teraz jemný svetlý gradient s pastelovou aurou */
.section--tint {
  background: linear-gradient(180deg, var(--bg-tint) 0%, #f8fafd 100%);
  position: relative;
  overflow: hidden;
}
.section--tint::before {
  content: "";
  position: absolute;
  inset: -20% -10%;
  background:
    radial-gradient(42% 46% at 16% 6%, rgba(255, 162, 39, 0.12), transparent 65%),
    radial-gradient(40% 46% at 86% 92%, rgba(56, 189, 248, 0.12), transparent 65%);
  pointer-events: none;
}
.section--tint .container { position: relative; z-index: 1; }

.section-head { max-width: 760px; margin-bottom: 64px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 16px;
}

.lead { font-size: 1.19rem; color: var(--muted); font-weight: 450; }

/* --------------------------------------------------------------------------
   Buttons — pill, glassy
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  line-height: 1;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.22s cubic-bezier(0.32, 0.72, 0, 1), box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
  text-decoration: none !important;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn svg { flex: none; }
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0) 55%);
  opacity: 0;
  transition: opacity 0.22s ease;
  pointer-events: none;
}
.btn:hover::after { opacity: 1; }

.btn--primary {
  background: var(--accent-grad);
  color: #fff;
  box-shadow: 0 10px 28px rgba(255, 106, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.btn--primary:hover { transform: translateY(-2px) scale(1.015); box-shadow: 0 16px 38px rgba(255, 106, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.4); }

.btn--glass {
  background: var(--glass-strong);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  color: var(--ink-strong);
  border-color: var(--glass-border);
  outline: 1px solid var(--glass-outline);
  box-shadow: var(--shadow-sm), inset 0 1px 0 #fff;
}
.btn--glass:hover { background: #fff; transform: translateY(-2px); box-shadow: var(--shadow); }

.btn--ghost {
  background: rgba(255, 255, 255, 0.65);
  color: var(--ink-strong);
  border-color: rgba(23, 43, 77, 0.12);
}
.btn--ghost:hover { background: #fff; transform: translateY(-2px); box-shadow: var(--shadow-sm); }

.btn--light {
  background: rgba(255, 255, 255, 0.95);
  color: var(--accent-2);
  box-shadow: 0 10px 30px rgba(31, 59, 113, 0.14), inset 0 1px 0 #fff;
}
.btn--light:hover { transform: translateY(-2px) scale(1.015); }

/* --------------------------------------------------------------------------
   Floating glass header — light
   -------------------------------------------------------------------------- */

.header {
  position: fixed;
  top: 14px;
  left: 0;
  right: 0;
  z-index: 100;
  pointer-events: none;
  transition: top 0.3s cubic-bezier(0.32, 0.72, 0, 1);
}
.header.is-scrolled { top: 8px; }

.header__bar {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 64px;
  padding: 8px 10px 8px 20px;
  border-radius: 999px;
  background: var(--glass);
  -webkit-backdrop-filter: blur(26px) saturate(190%);
  backdrop-filter: blur(26px) saturate(190%);
  border: 1px solid var(--glass-border);
  outline: 1px solid var(--glass-outline);
  box-shadow: 0 14px 44px rgba(31, 59, 113, 0.1), inset 0 1px 0 #fff;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.header.is-scrolled .header__bar {
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 18px 54px rgba(31, 59, 113, 0.14), inset 0 1px 0 #fff;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none !important;
  flex: none;
}
.brand__mark {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: var(--accent-grad);
  color: #fff;
  display: grid;
  place-items: center;
  flex: none;
  box-shadow: 0 6px 16px rgba(255, 106, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
.brand__name {
  font-weight: 800;
  font-size: 1.22rem;
  color: var(--ink-strong);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.brand__name span {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brand__tag {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-weight: 550;
  font-size: 0.93rem;
  color: var(--ink);
  text-decoration: none !important;
  padding: 9px 15px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav a:hover { background: rgba(23, 43, 77, 0.06); color: var(--ink-strong); }
.nav a.is-active { background: rgba(23, 43, 77, 0.08); color: var(--ink-strong); }

.header__cta { display: flex; align-items: center; gap: 10px; flex: none; }
.header__phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 650;
  font-size: 0.95rem;
  color: #fff;
  text-decoration: none !important;
  background: var(--accent-grad);
  padding: 12px 22px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(255, 106, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transition: transform 0.2s cubic-bezier(0.32, 0.72, 0, 1), box-shadow 0.2s ease;
  white-space: nowrap;
}
.header__phone:hover { transform: scale(1.04); box-shadow: 0 12px 28px rgba(255, 106, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.4); }

.nav-toggle {
  display: none;
  background: rgba(23, 43, 77, 0.05);
  border: 1px solid rgba(23, 43, 77, 0.1);
  border-radius: 999px;
  width: 46px;
  height: 46px;
  cursor: pointer;
  padding: 13px 12px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink-strong);
  margin: 4px 0;
  border-radius: 2px;
  transition: transform 0.28s cubic-bezier(0.32, 0.72, 0, 1), opacity 0.2s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   Hero — light aurora, centered, showcase panel
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  background: linear-gradient(180deg, #fdfdfe 0%, var(--bg-soft) 100%);
  overflow: hidden;
  padding: 170px 0 96px;
}

.hero__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(48% 42% at 50% -4%, rgba(255, 162, 39, 0.16), transparent 68%),
    radial-gradient(34% 38% at 10% 34%, rgba(56, 189, 248, 0.13), transparent 65%),
    radial-gradient(38% 40% at 90% 26%, rgba(255, 138, 30, 0.1), transparent 65%);
}
.hero__glow::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(31, 59, 113, 0.06) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(60% 50% at 50% 0%, #000 0%, transparent 100%);
  mask-image: radial-gradient(60% 50% at 50% 0%, #000 0%, transparent 100%);
}

.hero .container { position: relative; z-index: 1; }

.hero__content {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--glass-strong);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid var(--glass-border);
  outline: 1px solid var(--glass-outline);
  box-shadow: var(--shadow-sm), inset 0 1px 0 #fff;
  border-radius: 999px;
  padding: 9px 20px;
  font-size: 0.87rem;
  font-weight: 570;
  color: var(--ink);
  margin-bottom: 30px;
}
.hero__badge svg { color: var(--accent); }

.hero h1 { margin-bottom: 22px; }
.hero h1 em {
  font-style: normal;
  background: linear-gradient(100deg, #ffa227 0%, #ff7a1a 55%, #ff5c00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lead {
  font-size: 1.24rem;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 38px;
  font-weight: 450;
}

.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-bottom: 26px; }

.hero__note {
  font-size: 0.92rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 0;
}
.hero__note svg { color: var(--success); flex: none; }

/* Showcase panel */
.hero__showcase {
  position: relative;
  margin-top: 64px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  outline: 1px solid var(--glass-outline);
  box-shadow: var(--shadow-lg);
}
.hero__showcase > img {
  width: 100%;
  height: clamp(340px, 44vw, 560px);
  object-fit: cover;
  object-position: center 30%;
}
.hero__showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 40%, rgba(245, 247, 251, 0.25) 100%);
  pointer-events: none;
}

.hero__stats {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.stat {
  background: rgba(255, 255, 255, 0.66);
  -webkit-backdrop-filter: blur(22px) saturate(190%);
  backdrop-filter: blur(22px) saturate(190%);
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 26px rgba(31, 59, 113, 0.1), inset 0 1px 0 #fff;
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  text-align: center;
}
.stat__num {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(100deg, #ff9327, #ff5c00);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.15;
}
.stat__label { font-size: 0.8rem; color: var(--muted); margin-top: 3px; }

/* --------------------------------------------------------------------------
   Trust strip
   -------------------------------------------------------------------------- */

.trust {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  padding: 30px 0;
}
.trust .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.trust__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 570;
  color: var(--ink);
  opacity: 0.85;
}
.trust__item svg { color: var(--accent-2); flex: none; }
.trust__item img { height: 44px; width: auto; }

/* --------------------------------------------------------------------------
   Cards / Services — white glass
   -------------------------------------------------------------------------- */

.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  --mx: 50%;
  --my: 0%;
  background: var(--glass-strong);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--glass-border);
  outline: 1px solid var(--glass-outline);
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  box-shadow: var(--shadow);
  transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1), box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(420px circle at var(--mx) var(--my), rgba(255, 150, 40, 0.08), transparent 65%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.card:hover { transform: translateY(-8px) scale(1.008); box-shadow: var(--shadow-lg); }
.card:hover::before { opacity: 1; }

.card__icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: var(--accent-grad);
  color: #fff;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  box-shadow: 0 10px 22px rgba(255, 106, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.card h3 { margin-bottom: 10px; font-size: 1.35rem; }
.card p { color: var(--muted); font-size: 0.98rem; flex: 1; }

.card__link {
  font-weight: 620;
  font-size: 0.97rem;
  color: var(--accent-2);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 16px;
  transition: gap 0.2s ease;
}
.card__link:hover { gap: 12px; text-decoration: none; }

.card ul {
  margin: 0 0 4px;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.94rem;
}
.card ul li {
  padding: 5px 0 5px 26px;
  position: relative;
}
.card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 15px;
  height: 15px;
  background: var(--success);
  -webkit-mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>') center / contain no-repeat;
  mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>') center / contain no-repeat;
}

/* Pest chips */
.pests {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 52px;
  justify-content: center;
}
.pest-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--glass-strong);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  outline: 1px solid var(--glass-outline);
  box-shadow: var(--shadow-sm);
  border-radius: 999px;
  padding: 11px 22px;
  font-size: 0.93rem;
  font-weight: 570;
  color: var(--ink);
  transition: transform 0.2s cubic-bezier(0.32, 0.72, 0, 1), box-shadow 0.2s ease;
}
.pest-chip:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

/* --------------------------------------------------------------------------
   B2B segments — white glass tiles on tinted section
   -------------------------------------------------------------------------- */

.segment {
  --mx: 50%;
  --my: 0%;
  background: var(--glass-strong);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  backdrop-filter: blur(18px) saturate(180%);
  border: 1px solid var(--glass-border);
  outline: 1px solid var(--glass-outline);
  box-shadow: var(--shadow-sm), inset 0 1px 0 #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1), box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.segment::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(380px circle at var(--mx) var(--my), rgba(255, 150, 40, 0.1), transparent 62%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.segment:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.segment:hover::before { opacity: 1; }

.segment__icon {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  background: var(--accent-soft);
  border: 1px solid rgba(255, 138, 30, 0.22);
  color: var(--accent-2);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.segment h3 { font-size: 1.1rem; margin-bottom: 8px; }
.segment p { font-size: 0.91rem; color: var(--muted); margin: 0; }

.b2b-banner {
  margin-top: 56px;
  background: linear-gradient(120deg, rgba(255, 162, 39, 0.14), rgba(56, 189, 248, 0.08));
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 138, 30, 0.26);
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-lg);
  padding: 38px 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  flex-wrap: wrap;
}
.b2b-banner h3 { margin: 0 0 6px; font-size: 1.3rem; }
.b2b-banner p { margin: 0; color: var(--muted); }

/* --------------------------------------------------------------------------
   Process steps
   -------------------------------------------------------------------------- */

.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.step {
  background: var(--glass-strong);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  outline: 1px solid var(--glass-outline);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.25s cubic-bezier(0.32, 0.72, 0, 1), box-shadow 0.25s ease;
}
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.step__num {
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  color: #fff;
  background: var(--accent-grad);
  border-radius: 999px;
  padding: 5px 14px;
  display: inline-block;
  margin-bottom: 16px;
  box-shadow: 0 5px 12px rgba(255, 106, 0, 0.24);
}
.step h3 { font-size: 1.05rem; margin-bottom: 7px; }
.step p { font-size: 0.89rem; color: var(--muted); margin: 0; }

/* --------------------------------------------------------------------------
   Why us / split
   -------------------------------------------------------------------------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.split__media { position: relative; }
.split__media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.split__media--stack img:last-child {
  position: absolute;
  width: 46%;
  right: -26px;
  bottom: -38px;
  border: 5px solid #fff;
  border-radius: var(--radius);
}

.feature-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 14px; }
.feature-list li {
  display: flex;
  gap: 18px;
  background: var(--glass);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  outline: 1px solid var(--glass-outline);
  border-radius: var(--radius);
  padding: 20px 22px;
  transition: transform 0.25s cubic-bezier(0.32, 0.72, 0, 1), box-shadow 0.25s ease;
}
.feature-list li:hover { transform: translateX(6px); box-shadow: var(--shadow-sm); }
.feature-list__icon {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent-2);
  display: grid;
  place-items: center;
}
.feature-list h3 { font-size: 1.06rem; margin-bottom: 3px; }
.feature-list p { font-size: 0.93rem; color: var(--muted); margin: 0; }

/* --------------------------------------------------------------------------
   References
   -------------------------------------------------------------------------- */

.ref-card {
  background: var(--glass-strong);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  backdrop-filter: blur(18px) saturate(180%);
  border: 1px solid var(--glass-border);
  outline: 1px solid var(--glass-outline);
  border-radius: var(--radius-lg);
  padding: 34px 32px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1), box-shadow 0.3s ease;
}
.ref-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.ref-card__quote { color: var(--ink); font-size: 0.99rem; flex: 1; }
.ref-card__quote::before {
  content: "\201E";
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 2.8rem;
  line-height: 0;
  display: block;
  margin: 20px 0 8px;
}
.ref-card__author { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); }
.ref-card__name { font-weight: 700; color: var(--ink-strong); font-size: 0.99rem; letter-spacing: -0.015em; }
.ref-card__role { font-size: 0.85rem; color: var(--muted); }
.ref-card__tag {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-2);
  background: var(--accent-soft);
  border: 1px solid rgba(255, 106, 0, 0.16);
  padding: 5px 13px;
  border-radius: 999px;
}

.clients-note {
  margin-top: 48px;
  text-align: center;
  color: var(--muted);
  font-size: 0.96rem;
}

/* --------------------------------------------------------------------------
   Coverage / GEO
   -------------------------------------------------------------------------- */

.cities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 10px;
}
.cities span {
  background: var(--glass-strong);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  outline: 1px solid var(--glass-outline);
  color: var(--ink);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 0.88rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cities span:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

/* --------------------------------------------------------------------------
   FAQ — glass accordion
   -------------------------------------------------------------------------- */

.faq { max-width: 860px; margin: 0 auto; }
.faq__item {
  background: var(--glass-strong);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  outline: 1px solid var(--glass-outline);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
  transition: box-shadow 0.25s ease, outline-color 0.25s ease;
}
.faq__item.is-open { box-shadow: var(--shadow); outline-color: rgba(255, 106, 0, 0.3); }
.faq__q {
  width: 100%;
  background: none;
  border: 0;
  text-align: left;
  font-family: var(--font);
  font-size: 1.06rem;
  font-weight: 620;
  letter-spacing: -0.015em;
  color: var(--ink-strong);
  padding: 23px 60px 23px 28px;
  cursor: pointer;
  position: relative;
  line-height: 1.4;
}
.faq__q::after {
  content: "";
  position: absolute;
  right: 26px;
  top: 50%;
  width: 11px;
  height: 11px;
  border-right: 2px solid var(--accent-2);
  border-bottom: 2px solid var(--accent-2);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1);
}
.faq__item.is-open .faq__q::after { transform: translateY(-30%) rotate(225deg); }
.faq__a { display: none; padding: 0 28px 24px; color: var(--muted); font-size: 0.98rem; }

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}

.contact-info__item {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.contact-info__item:last-of-type { border-bottom: 0; }
.contact-info__icon {
  flex: none;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--accent-soft);
  border: 1px solid rgba(255, 106, 0, 0.14);
  color: var(--accent-2);
  display: grid;
  place-items: center;
}
.contact-info__label { font-size: 0.76rem; font-weight: 720; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.contact-info__value { font-weight: 720; font-size: 1.17rem; color: var(--ink-strong); letter-spacing: -0.02em; }
.contact-info__value a { color: var(--ink-strong); }
.contact-info__value a:hover { color: var(--accent-2); text-decoration: none; }
.contact-info__hint { font-size: 0.87rem; color: var(--muted); }

/* Form — glass card */
.form-card {
  background: var(--glass-strong);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--glass-border);
  outline: 1px solid var(--glass-outline);
  border-radius: var(--radius-lg);
  padding: 46px;
  box-shadow: var(--shadow-lg);
}
.form-card h3 { font-size: 1.5rem; }
.form-card > p { color: var(--muted); margin-bottom: 30px; }

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

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.86rem;
  font-weight: 620;
  color: var(--ink-strong);
  margin-bottom: 7px;
}
.form-group label span { color: var(--accent-2); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(23, 43, 77, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.85);
  padding: 14px 17px;
  font-family: var(--font);
  font-size: 0.99rem;
  color: var(--ink-strong);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 138, 30, 0.14);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group .is-invalid { border-color: #ef4444; background: #fff7f7; box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1); }

.form-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--muted);
  margin: 4px 0 26px;
}
.form-consent input { margin-top: 3px; accent-color: var(--accent-2); }

.form-turnstile { margin: 0 0 22px; min-height: 65px; }

.form-status { margin-top: 18px; font-weight: 570; display: none; border-radius: 14px; padding: 15px 19px; font-size: 0.94rem; }
.form-status--ok { background: rgba(34, 197, 94, 0.1); color: #15803d; border: 1px solid rgba(34, 197, 94, 0.22); }
.form-status--err { background: rgba(239, 68, 68, 0.08); color: #b91c1c; border: 1px solid rgba(239, 68, 68, 0.2); }

/* --------------------------------------------------------------------------
   CTA band — gradient card on light background
   -------------------------------------------------------------------------- */

.cta-band {
  background: var(--bg);
  padding: 40px 0 110px;
}
.cta-band .container > * { position: relative; z-index: 1; }
.cta-band .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  max-width: calc(var(--container) - 0px);
  background: linear-gradient(120deg, #ffb254 0%, #ff7a1a 55%, #ff5c00 100%);
  box-shadow: 0 30px 80px rgba(255, 106, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  overflow: hidden;
}
.cta-band .container::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(46% 70% at 84% 20%, rgba(255, 255, 255, 0.28), transparent 65%),
    radial-gradient(30% 55% at 10% 90%, rgba(255, 255, 255, 0.14), transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.cta-band h2 { color: #fff; margin: 0 0 8px; }
.cta-band p { margin: 0; color: rgba(255, 255, 255, 0.9); font-size: 1.08rem; }

/* --------------------------------------------------------------------------
   Footer — light
   -------------------------------------------------------------------------- */

.footer {
  background: var(--bg-soft);
  color: var(--muted);
  padding: 80px 0 0;
  font-size: 0.93rem;
  border-top: 1px solid var(--line);
}
.footer h4 { color: var(--ink-strong); font-size: 0.98rem; margin-bottom: 18px; letter-spacing: -0.01em; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 44px;
  padding-bottom: 54px;
}
.footer a { color: var(--ink); transition: color 0.15s ease; }
.footer a:hover { color: var(--accent-2); text-decoration: none; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer ul li { padding: 5px 0; }
.footer__brand .brand__name { color: var(--ink-strong); }
.footer__bottom {
  border-top: 1px solid var(--line);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.84rem;
}
.footer__cech img {
  height: 54px;
  width: auto;
  margin-top: 14px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 7px;
}

/* --------------------------------------------------------------------------
   Subpage hero — light aurora
   -------------------------------------------------------------------------- */

.page-hero {
  background: linear-gradient(180deg, #fdfdfe 0%, var(--bg-soft) 100%);
  padding: 168px 0 84px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50% 60% at 74% -10%, rgba(255, 162, 39, 0.16), transparent 68%),
    radial-gradient(36% 44% at 6% 74%, rgba(56, 189, 248, 0.12), transparent 65%);
  pointer-events: none;
}
.page-hero .container { position: relative; }
.page-hero h1 { font-size: clamp(2.1rem, 4.2vw, 3.3rem); max-width: 880px; }
.page-hero .lead { color: var(--muted); max-width: 720px; }
.breadcrumbs { font-size: 0.86rem; color: var(--muted); margin-bottom: 20px; }
.breadcrumbs a { color: var(--ink); }

/* GEO summary box */
.section--compact { padding: 48px 0; }
.summary-box {
  background: var(--bg-tint);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 36px 40px;
}
.summary-box__title {
  font-size: 1.35rem;
  margin-bottom: 24px;
  color: var(--ink);
}
.summary-box__facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 40px;
  margin: 0;
}
.summary-box__facts > div { margin: 0; }
.summary-box__facts dt {
  font-weight: 650;
  color: var(--ink);
  margin-bottom: 6px;
}
.summary-box__facts dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}
.summary-box__facts a { color: var(--accent-dark); }

/* 404 page */
.error-page__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 32px;
}
.error-page__links a {
  color: var(--accent-dark);
  font-weight: 550;
  text-decoration: none;
}
.error-page__links a:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .summary-box { padding: 28px 24px; }
  .summary-box__facts { grid-template-columns: 1fr; }
}

.article { max-width: 820px; }
.article h2 { margin-top: 48px; font-size: clamp(1.5rem, 2.6vw, 2rem); }
.article ul { color: var(--ink); padding-left: 22px; }
.article ul li { margin: 8px 0; }
.article p { color: #444a54; }

/* --------------------------------------------------------------------------
   Reveal animations
   -------------------------------------------------------------------------- */

.reveal { opacity: 0; transform: translateY(28px) scale(0.985); transition: opacity 0.7s cubic-bezier(0.32, 0.72, 0, 1), transform 0.7s cubic-bezier(0.32, 0.72, 0, 1); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .btn, .card, .segment, .step, .ref-card, .feature-list li { transition: none; }
}

/* --------------------------------------------------------------------------
   Mobile call bar — light glass
   -------------------------------------------------------------------------- */

.callbar {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 120;
  background: var(--glass);
  -webkit-backdrop-filter: blur(26px) saturate(190%);
  backdrop-filter: blur(26px) saturate(190%);
  border: 1px solid var(--glass-border);
  outline: 1px solid var(--glass-outline);
  box-shadow: 0 18px 54px rgba(31, 59, 113, 0.18), inset 0 1px 0 #fff;
  border-radius: 24px;
  padding: 10px;
  gap: 10px;
}
.callbar .btn { flex: 1; justify-content: center; padding: 14px 10px; font-size: 0.95rem; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .split { grid-template-columns: 1fr; gap: 48px; }
  .split__media--stack img:last-child { right: 10px; bottom: -24px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .nav a { padding: 9px 11px; font-size: 0.9rem; }
}

@media (max-width: 880px) {
  .section { padding: 72px 0; }
  .grid--3 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-card { padding: 32px 26px; }
  .hero { padding: 130px 0 72px; }
  .hero__stats { position: static; margin-top: 0; grid-template-columns: repeat(2, 1fr); padding: 12px; background: var(--bg-tint); }
  .hero__showcase { border-radius: var(--radius); }
  .hero__showcase > img { height: 300px; }
  .page-hero { padding: 140px 0 64px; }
  .cta-band .container { padding: 44px 32px; }

  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid var(--glass-border);
    outline: 1px solid var(--glass-outline);
    box-shadow: 0 26px 70px rgba(31, 59, 113, 0.2);
    border-radius: 24px;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    gap: 2px;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 14px 18px; border-radius: 16px; font-size: 1rem; }
  .nav-toggle { display: block; }
  .header__phone { padding: 12px 16px; }
  .header__phone span { display: none; }
  .header__phone svg { margin: 0; }

  .callbar { display: flex; }
  body { padding-bottom: 84px; }
}

@media (max-width: 560px) {
  .grid--4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .hero { padding-top: 118px; }
  .hero__lead { font-size: 1.1rem; }
  .form-row { grid-template-columns: 1fr; }
  .b2b-banner { padding: 28px 24px; }
  .cta-band .container { flex-direction: column; align-items: flex-start; }
  .header { top: 10px; }
  .header__bar { padding: 6px 8px 6px 14px; }
  .brand__tag { display: none; }
  .brand__mark { width: 38px; height: 38px; }
}
