/* ==========================================================================
   OSTRELYA V4 — Warm cream · DM Sans + Space Grotesk · Copper accent · Green primary
   Rebuilt stylesheet matching all pages (index, usluge, blog, kontakt, 404, privacy)
   ========================================================================== */

/* ── DESIGN TOKENS ── */
:root {
  /* Base palette */
  --c-ink: hsl(128 8% 14%);
  --c-ink-soft: hsl(128 8% 22%);
  --c-ink-muted: hsl(128 8% 25%);
  --c-cream: hsl(27 45% 93%);
  --c-cream-light: hsl(36 50% 98%);
  --c-cream-mid: hsl(36 30% 96%);
  --c-bg: hsl(30 40% 93%);
  --c-cream-step: hsl(27 45% 96%);
  --c-cream-opt: hsl(27 30% 94%);

  /* Borders */
  --c-border: hsl(36 40% 88%);
  --c-border-light: hsl(36 40% 92%);
  --c-border-hover: hsl(125 6% 72%);
  --c-border-soft: hsl(125 6% 75%);
  --c-border-dark: hsl(128 8% 22%);

  /* Accent — copper / brand */
  --c-accent: hsl(18 42% 42%);
  --c-accent-hover: hsl(18 42% 52%);
  --c-accent-bright: hsl(18 62% 52%);
  --c-accent-light: hsl(18 42% 62%);
  --c-accent-bg: hsla(18, 42%, 42%, 0.06);
  --c-accent-glow: hsla(18, 42%, 42%, 0.1);
  --c-accent-subtle: hsla(18, 42%, 42%, 0.12);

  /* Primary — dark green */
  --c-primary: hsl(137 11% 26%);
  --c-primary-hover: hsl(137 11% 20%);

  /* Text */
  --c-text: hsl(128 8% 14%);
  --c-text-muted: hsl(125 4% 38%);
  --c-text-light: hsl(125 4% 45%);
  --c-text-lighter: hsl(125 4% 48%);
  --c-text-faint: hsl(27 15% 55%);
  --c-text-result: hsl(27 15% 60%);

  /* Footer dark */
  --c-footer-bg: hsl(128 8% 14%);
  --c-footer-text: hsl(27 10% 85%);
  --c-footer-brand: hsl(27 8% 60%);
  --c-footer-heading: hsl(27 15% 55%);

  /* Loader */
  --c-loader-bg: hsl(128 8% 10%);
  --c-loader-bar: hsl(128 8% 20%);
  --c-loader-tagline: hsl(27 20% 55%);

  /* Roundness */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-section: 40px;
  --radius-pill: 100px;
  --radius-full: 999px;

  /* Effects */
  --shadow-card: 0 4px 24px hsla(128, 8%, 14%, 0.06);
  --shadow-card-hover: 0 12px 32px hsla(128, 8%, 14%, 0.12);
  --shadow-pop: 0 20px 50px hsla(128, 8%, 14%, 0.16);

  /* Header height (used for scroll offsets) */
  --header-h: 82px;
}

/* ── TYPOGRAPHY ── */
:where(h1, h2, h3, h4, h5, h6) {
  font-family: "Space Grotesk", "DM Sans", sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--c-text);
}

/* ── RESET ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--c-text);
  background-color: var(--c-bg);
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "DM Sans", sans-serif;
  color: var(--c-text);
  background-color: var(--c-bg);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: var(--c-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--c-primary-hover);
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

input, textarea {
  font-family: inherit;
}

::selection {
  background: var(--c-accent-subtle);
  color: var(--c-accent);
}

:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── LAYOUT ── */
.wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── PILL SECTIONS — each section is a rounded floating card ── */
.hero,
.page-hero,
.calculator,
.stats,
.services,
.process,
.work,
.blog-list,
.article,
.contact,
.cta-band,
section.article-cta,
.error-page {
  width: min(calc(100% - 48px), 1240px);
  margin: 32px auto;
  border-radius: var(--radius-section);
  background: var(--c-cream-light);
  border: 1px solid var(--c-border-light);
  box-shadow: var(--shadow-card);
}

.hero,
.page-hero,
.cta-band,
.error-page,
.work {
  overflow: hidden;
}

/* ── UTILITIES ── */
.u-w-full { width: 100%; }
.u-mt-lg { margin-top: 48px !important; }

/* ── REVEAL (default visible; GSAP animates when available) ── */
[data-reveal] {
  opacity: 1;
  transform: none;
}

/* ── SKIP LINK ── */
.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  z-index: 10000;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  background: var(--c-primary);
  color: var(--c-cream);
  font-weight: 600;
  font-size: 14px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
  color: var(--c-cream);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-lg {
  padding: 17px 34px;
  font-size: 16px;
}

.btn-primary {
  background: var(--c-primary);
  color: var(--c-cream);
}

.btn-primary:hover {
  background: var(--c-primary-hover);
  color: var(--c-cream);
}

.btn-secondary {
  background: transparent;
  color: var(--c-text);
  border: 2px solid var(--c-border-hover);
}

.btn-secondary:hover {
  border-color: var(--c-accent);
  color: var(--c-accent);
  background: var(--c-accent-bg);
}

.btn-ghost {
  background: transparent;
  color: var(--c-text);
  border: 2px solid transparent;
}

.btn-ghost:hover {
  color: var(--c-accent);
  background: var(--c-accent-bg);
}

/* ── LOADER ── */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--c-loader-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-inner {
  text-align: center;
}

.loader-logo {
  display: block;
  margin: 0 auto 16px;
  max-width: 280px;
  height: auto;
  opacity: 0;
  border-radius: 12px;
}

.loader-tagline {
  display: block;
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-loader-tagline);
  margin-top: 8px;
  opacity: 0;
}

.loader-bar {
  display: block;
  width: 160px;
  height: 2px;
  background: var(--c-loader-bar);
  margin: 24px auto 0;
  opacity: 0;
  transform-origin: left;
  overflow: hidden;
  border-radius: 2px;
}

.loader-bar i {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--c-accent);
  transform: scaleX(0);
  transform-origin: left;
}

/* ── HEADER — floating pill bar ── */
.header {
  position: sticky;
  top: 12px;
  z-index: 1000;
  width: min(calc(100% - 40px), 1220px);
  margin: 12px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 16px 0 24px;
  height: var(--header-h);
  border-radius: var(--radius-pill);
  background: hsla(36, 50%, 98%, 0.86);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--c-border-light);
  box-shadow: 0 10px 32px hsla(128, 8%, 14%, 0.1);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.header.is-scrolled {
  background: hsla(36, 50%, 98%, 0.97);
  border-color: var(--c-border);
  box-shadow: 0 14px 40px hsla(128, 8%, 14%, 0.14);
}

.header .wrap {
  display: contents;
}

.head-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.head-logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
}

/* Nav — clean pill links on the pill bar */
.head-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: var(--radius-pill);
}

.head-nav a {
  position: relative;
  display: inline-block;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  color: var(--c-text-muted);
  transition: all 0.2s ease;
}

.head-nav a:hover {
  color: var(--c-accent);
  background: var(--c-accent-bg);
}

.head-nav a.is-active {
  color: var(--c-cream);
  background: var(--c-primary);
}

.head-nav a.is-active:hover {
  color: var(--c-cream);
  background: var(--c-primary);
}

/* Header CTA */
.head-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.head-phone,
.head-mail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.head-phone {
  color: var(--c-text-muted);
  border: 1px solid var(--c-border);
}

.head-phone:hover {
  color: var(--c-accent);
  border-color: var(--c-accent);
  background: var(--c-accent-bg);
}

.head-phone svg,
.head-mail svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.head-mail {
  background: var(--c-primary);
  color: var(--c-cream);
}

.head-mail:hover {
  background: var(--c-primary-hover);
  color: var(--c-cream);
}

/* Burger */
.head-burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-pill);
  background: var(--c-cream);
  color: var(--c-text);
  transition: all 0.2s ease;
}

.head-burger:hover {
  border-color: var(--c-accent);
  color: var(--c-accent);
}

/* ── MOBILE MENU ── */
.mmenu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1500;
  width: min(360px, 100vw);
  padding: 96px 32px 32px;
  background: var(--c-cream-light);
  border-left: 1px solid var(--c-border-light);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
  box-shadow: var(--shadow-pop);
}

.mmenu.is-open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mmenu a {
  display: block;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  font-size: 18px;
  font-weight: 600;
  color: var(--c-text);
  transition: all 0.2s ease;
}

.mmenu a:hover,
.mmenu a.is-active {
  color: var(--c-accent);
  background: var(--c-accent-bg);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: calc(100svh - 56px);
  display: flex;
  align-items: center;
  padding: 56px 0 96px;
  overflow: hidden;
  background:
    radial-gradient(60% 80% at 85% 20%, hsla(18, 42%, 42%, 0.07), transparent 60%),
    radial-gradient(50% 70% at 10% 85%, hsla(137, 11%, 26%, 0.06), transparent 60%),
    var(--c-cream-light);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  margin-bottom: 28px;
  background: hsla(27, 45%, 93%, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 8px hsla(128, 8%, 14%, 0.08), 0 1px 3px hsla(128, 8%, 14%, 0.06);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  display: inline-block;
  flex-shrink: 0;
}

.dot--green {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  display: inline-block;
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-size: clamp(44px, 8.5vw, 104px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.hero-line {
  display: block;
}

.hero-title em {
  font-family: "DM Sans", sans-serif;
  font-style: italic;
  color: var(--c-accent);
}

.gradient-text {
  background: linear-gradient(120deg, var(--c-accent) 0%, var(--c-accent-bright) 55%, hsl(45 60% 45%) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--c-text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

.hero-sub strong {
  color: var(--c-text);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero-urgency {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  font-size: 13px;
  color: var(--c-text-faint);
  margin-top: 24px;
}

.hero-urgency .dot--green {
  animation-delay: 0.4s;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll-line {
  display: block;
  width: 2px;
  height: 48px;
  background: linear-gradient(to bottom, var(--c-accent), transparent);
  border-radius: 2px;
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0% { transform: scaleY(0.4); transform-origin: top; opacity: 0.4; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(0.4); transform-origin: top; opacity: 0.4; }
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 56px 0 64px;
  background:
    radial-gradient(55% 80% at 80% 15%, hsla(18, 42%, 42%, 0.08), transparent 60%),
    var(--c-cream-light);
  text-align: center;
}

.page-hero-eyebrow {
  display: inline-block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 20px;
  background: var(--c-accent-bg);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
}

.page-hero-title {
  font-size: clamp(34px, 5.5vw, 60px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--c-text);
}

.page-hero-sub {
  font-size: 18px;
  color: var(--c-text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

.blog-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--c-border);
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text-muted);
  transition: all 0.2s ease;
}

.blog-back:hover {
  color: var(--c-accent);
  border-color: var(--c-accent);
  background: var(--c-accent-bg);
}

.blog-article-meta {
  margin-top: 20px;
  font-size: 13px;
  color: var(--c-text-faint);
  letter-spacing: 0.04em;
}

/* ── CALCULATOR ── */
.calculator {
  padding: 96px 0;
}

.calc-head {
  text-align: center;
  margin-bottom: 56px;
}

.calc-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 16px;
  background: var(--c-accent-bg);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
}

.calc-title {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 320px;
  gap: 24px;
  align-items: start;
}

.calc-step {
  background: var(--c-cream-light);
  border: 1px solid var(--c-border-light);
  border-radius: var(--radius-xl);
  padding: 28px;
  transition: box-shadow 0.3s ease;
}

.calc-step:hover {
  box-shadow: var(--shadow-card);
}

.calc-step-num {
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--c-accent);
  margin-bottom: 8px;
}

.calc-step-title {
  font-size: 22px;
  margin-bottom: 20px;
}

.calc-options {
  display: grid;
  gap: 10px;
}

.calc-opt {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  width: 100%;
  padding: 16px 18px;
  text-align: left;
  background: var(--c-cream);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  color: var(--c-text);
  transition: all 0.2s ease;
}

.calc-opt:hover {
  border-color: var(--c-border-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-card);
}

.calc-opt.is-active {
  border-color: var(--c-accent);
  background: var(--c-accent-bg);
  box-shadow: 0 0 0 3px hsla(18, 42%, 42%, 0.12);
}

.calc-opt.is-active .calc-opt-price {
  color: var(--c-accent);
}

.calc-popular {
  position: absolute;
  top: -10px;
  right: 14px;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  background: var(--c-accent);
  color: var(--c-cream);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.calc-opt-label {
  font-weight: 700;
  font-size: 16px;
}

.calc-opt-desc {
  font-size: 13px;
  color: var(--c-text-muted);
}

.calc-opt-price {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--c-text);
  margin-top: 6px;
}

/* Add-ons */
.calc-addons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.calc-addon {
  display: block;
  cursor: pointer;
}

.calc-addon-check {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.calc-addon-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  background: var(--c-cream);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
  height: 100%;
}

.calc-addon:hover .calc-addon-box {
  border-color: var(--c-border-hover);
  transform: translateY(-1px);
}

.calc-addon input:checked + .calc-addon-box {
  border-color: var(--c-accent);
  background: var(--c-accent-bg);
  box-shadow: 0 0 0 3px hsla(18, 42%, 42%, 0.12);
}

.calc-addon-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--c-cream-mid);
  border: 1px solid var(--c-border-light);
  font-size: 16px;
}

.calc-addon-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.calc-addon-name {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.3;
}

.calc-addon-desc {
  font-size: 12px;
  color: var(--c-text-muted);
  line-height: 1.4;
}

.calc-addon-price {
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--c-accent);
  margin-top: 2px;
  white-space: nowrap;
}

/* Result card — sticky */
.calc-result {
  position: sticky;
  top: calc(var(--header-h) + 20px);
  background: var(--c-primary);
  color: var(--c-cream);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  box-shadow: var(--shadow-pop);
}

.calc-result-inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.calc-result-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
}

.calc-result-label {
  font-size: 13px;
  color: hsla(27, 45%, 93%, 0.65);
}

.calc-result-value {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--c-cream);
}

.calc-divider {
  height: 1px;
  background: hsla(27, 45%, 93%, 0.15);
  margin: 8px 0;
}

.calc-total-row .calc-result-value {
  font-size: 28px;
  font-weight: 700;
  color: #fdf6ee;
}

.calc-highlight {
  color: hsl(30 90% 70%) !important;
  font-weight: 700;
}

.calc-result .btn {
  margin-top: 24px;
  background: var(--c-cream);
  color: var(--c-primary);
}

.calc-result .btn:hover {
  background: #fff8f0;
  color: var(--c-primary);
}

.calc-urgency {
  text-align: center;
  font-size: 12px;
  color: var(--c-text-faint);
  margin-top: 16px;
  line-height: 1.5;
}

.calc-result .calc-urgency {
  color: hsla(27, 45%, 93%, 0.5);
}

/* ── SECTION HEAD ── */
.sec-head {
  text-align: center;
  margin-bottom: 56px;
}

.sec-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 14px;
  background: var(--c-accent-bg);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
}

.sec-head h2 {
  font-size: clamp(30px, 4.5vw, 46px);
  letter-spacing: -0.02em;
}

/* ── STATS ── */
.stats {
  padding: 80px 0;
  background: var(--c-cream-light);
}

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

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  padding: 24px 16px;
  background: var(--c-cream-light);
  border: 1px solid var(--c-border-light);
  border-radius: var(--radius-lg);
  transition: all 0.25s ease;
}

.stat:hover {
  border-color: var(--c-border-hover);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.stat-num {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--c-accent);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  text-align: center;
}

/* ── CTA BAND ── */
.cta-band {
  padding: 88px 0;
  background:
    radial-gradient(60% 120% at 20% 50%, hsla(18, 42%, 42%, 0.2), transparent 60%),
    var(--c-primary);
}

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

.cta-band-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: hsl(27 45% 75%);
  margin-bottom: 8px;
}

.cta-band-text {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--c-cream);
  letter-spacing: -0.01em;
}

.cta-band .btn {
  background: var(--c-accent);
  color: var(--c-cream);
}

.cta-band .btn:hover {
  background: var(--c-accent-hover);
  color: var(--c-cream);
}

/* ── SERVICES (tabs) ── */
.services {
  padding: 96px 0;
}

.svc-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
}

.svc-tab {
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  background: var(--c-cream);
  border: 1px solid var(--c-border);
  font-size: 15px;
  font-weight: 600;
  color: var(--c-text-muted);
  transition: all 0.2s ease;
}

.svc-tab:hover {
  border-color: var(--c-accent);
  color: var(--c-accent);
}

.svc-tab.is-active {
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: var(--c-cream);
}

.svc-panel {
  display: none;
}

.svc-panel.is-active {
  display: block;
}

.svc-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  background: var(--c-cream-light);
  border: 1px solid var(--c-border-light);
  border-radius: var(--radius-xl);
  padding: 48px;
}

.svc-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.svc-headline {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.svc-desc {
  font-size: 16px;
  color: var(--c-text-muted);
  line-height: 1.65;
}

.svc-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.svc-from,
.svc-or {
  font-size: 14px;
  color: var(--c-text-muted);
}

.svc-amount {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--c-accent);
  line-height: 1;
}

.svc-right {
  display: flex;
  justify-content: flex-end;
}

.svc-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  width: 100%;
  max-width: 440px;
  padding: 28px;
  background: var(--c-cream);
  border: 1px solid var(--c-border-light);
  border-radius: var(--radius-lg);
}

.svc-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
}

.svc-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--c-accent);
  color: var(--c-cream);
  font-size: 12px;
  font-weight: 700;
}

/* ── PROCESS ── */
.process {
  padding: 96px 0;
  background: var(--c-cream-light);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: none;
}

.pro-step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  background: var(--c-cream-light);
  border: 1px solid var(--c-border-light);
  border-radius: var(--radius-xl);
  transition: all 0.25s ease;
}

.pro-step:hover {
  border-color: var(--c-border-hover);
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}

.pro-num {
  font-family: "Space Grotesk", sans-serif;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--c-accent);
  line-height: 1;
}

.pro-content h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.pro-content p {
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.6;
}

.pro-line {
  position: absolute;
  top: 40px;
  right: -14px;
  width: 12px;
  height: 2px;
  background: var(--c-accent);
  border-radius: 2px;
  opacity: 0.6;
}

/* ── WORK ── */
.work {
  padding: 96px 0;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 20px;
}

.work-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-xl);
  text-decoration: none;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.work-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-pop);
}

.work-card-tall {
  grid-row: span 2;
}

.work-card-wide {
  grid-column: span 2;
}

.work-card-img {
  position: absolute;
  inset: 0;
  transition: transform 0.5s ease;
}

.work-card:hover .work-card-img {
  transform: scale(1.05);
}

.work-card-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(20, 22, 20, 0.85), rgba(20, 22, 20, 0) 100%);
}

.work-card-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: hsla(27, 45%, 93%, 0.15);
  backdrop-filter: blur(6px);
  color: var(--c-cream);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.work-card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--c-cream);
  letter-spacing: -0.01em;
}

/* ── CONTACT ── */
.contact {
  padding: 96px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  margin-bottom: 16px;
}

.contact-sub {
  font-size: 16px;
  color: var(--c-text-muted);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 420px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 420px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--c-cream-light);
  border: 1px solid var(--c-border-light);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--c-text);
  transition: all 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-2px);
  border-color: var(--c-accent);
  box-shadow: var(--shadow-card);
  color: var(--c-text);
}

.contact-method svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--c-accent);
}

.contact-method-text {
  font-size: 15px;
  font-weight: 600;
}

.contact-method-label {
  font-size: 12px;
  color: var(--c-text-muted);
  margin-top: 2px;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 36px;
  background: var(--c-cream-light);
  border: 1px solid var(--c-border-light);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-text-muted);
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  background: var(--c-cream-light);
  font-size: 15px;
  color: var(--c-text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px hsla(18, 42%, 42%, 0.12);
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-field.is-error input,
.form-field.is-error textarea {
  border-color: hsl(0 60% 55%);
  box-shadow: 0 0 0 3px hsla(0, 60%, 55%, 0.12);
}

.form-field-error {
  font-size: 12px;
  color: hsl(0 60% 45%);
  font-weight: 600;
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  min-height: 18px;
}

.form-status.is-ok {
  color: hsl(140 55% 35%);
}

.form-status.is-error {
  color: hsl(0 60% 45%);
}

/* ── 404 ── */
.error-page {
  min-height: calc(100svh - var(--header-h));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
  background:
    radial-gradient(50% 70% at 50% 30%, hsla(18, 42%, 42%, 0.08), transparent 60%),
    var(--c-cream-light);
}

.error-code {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(80px, 14vw, 160px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--c-accent);
  text-shadow: 0 8px 32px hsla(18, 42%, 42%, 0.2);
}

.error-title {
  font-size: clamp(22px, 3vw, 32px);
  margin: 16px 0 12px;
}

.error-desc {
  color: var(--c-text-muted);
  max-width: 460px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.error-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── BLOG LIST ── */
.blog-list {
  padding: 88px 0;
}

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

.blog-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--c-cream-light);
  border: 1px solid var(--c-border-light);
  border-radius: var(--radius-xl);
  text-decoration: none;
  color: var(--c-text);
  transition: all 0.25s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-pop);
  color: var(--c-text);
}

.blog-card-img {
  position: relative;
  height: 170px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card-tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  background: hsla(27, 45%, 93%, 0.92);
  color: var(--c-primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.blog-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
  flex: 1;
}

.blog-card-meta {
  font-size: 12px;
  color: var(--c-text-faint);
  letter-spacing: 0.03em;
}

.blog-card-title {
  font-size: 19px;
  line-height: 1.25;
}

.blog-card-excerpt {
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.6;
}

/* ── ARTICLE ── */
.article {
  padding: 72px 0;
}

.article-wrap {
  max-width: 720px;
  margin: 0 auto;
}

.article > .wrap {
  max-width: 720px;
}

.article-lead {
  font-size: 19px;
  line-height: 1.7;
  color: var(--c-text-light);
  margin-bottom: 40px;
  font-weight: 500;
}

.article-wrap h2 {
  font-size: 26px;
  margin: 40px 0 16px;
  scroll-margin-top: calc(var(--header-h) + 20px);
}

.article-wrap h3 {
  font-size: 20px;
  margin: 32px 0 12px;
}

.article-wrap p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--c-text);
  margin-bottom: 16px;
}

.article-wrap ul,
.article-wrap ol {
  margin: 0 0 20px;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.article-wrap ul {
  list-style: disc;
}

.article-wrap ul li::marker,
.article-wrap ol li::marker {
  color: var(--c-accent);
}

.article-wrap ol {
  list-style: decimal;
}

.article-wrap li {
  font-size: 15px;
  line-height: 1.65;
  color: var(--c-text);
}

.article-wrap strong {
  font-weight: 700;
}

.article-wrap a {
  color: var(--c-accent);
  font-weight: 600;
}

.article-wrap a:hover {
  text-decoration: underline;
}

.article-cta {
  margin-top: 48px;
  padding: 40px;
  text-align: center;
  background:
    radial-gradient(80% 120% at 50% 0%, hsla(18, 42%, 42%, 0.1), transparent 70%),
    var(--c-primary);
  border-radius: var(--radius-xl);
}

.article-cta h3 {
  color: var(--c-cream);
  font-size: 24px;
  margin-bottom: 10px;
}

.article-cta p {
  color: hsla(27, 45%, 93%, 0.75);
  margin-bottom: 24px;
  font-size: 15px;
}

.article-cta .btn {
  background: var(--c-accent);
  color: var(--c-cream);
}

.article-cta .btn:hover {
  background: var(--c-accent-hover);
  color: var(--c-cream);
}

/* ── LEAD MAGNET ── */
.lead-magnet {
  padding: 0 0 96px;
  margin-top: 12px;
}

.lead-magnet-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 56px 48px;
  background:
    radial-gradient(60% 100% at 15% 20%, hsla(18, 42%, 42%, 0.35), transparent 60%),
    linear-gradient(135deg, var(--c-primary) 0%, hsl(128 8% 20%) 100%);
  border-radius: var(--radius-section);
  color: var(--c-cream);
}

.lead-magnet-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 12px;
  border-radius: 18px;
  background: var(--c-accent);
  color: var(--c-cream);
  font-size: 24px;
  box-shadow: 0 8px 24px hsla(18, 42%, 42%, 0.4);
}

.lead-magnet-inner h3 {
  color: var(--c-cream);
  font-size: clamp(20px, 3vw, 28px);
  max-width: 620px;
  line-height: 1.2;
}

.lead-magnet-inner p {
  color: hsla(27, 45%, 93%, 0.8);
  max-width: 520px;
  line-height: 1.6;
}

.lead-form {
  display: flex;
  gap: 12px;
  width: 100%;
  max-width: 460px;
  margin-top: 20px;
}

.lead-form input[type="email"] {
  flex: 1;
  min-width: 0;
  padding: 14px 18px;
  border: 1px solid hsla(27, 45%, 93%, 0.25);
  border-radius: var(--radius-full);
  background: hsla(27, 45%, 93%, 0.1);
  color: var(--c-cream);
  font-size: 15px;
}

.lead-form input[type="email"]::placeholder {
  color: hsla(27, 45%, 93%, 0.5);
}

.lead-form input[type="email"]:focus {
  outline: none;
  border-color: var(--c-accent);
  background: hsla(27, 45%, 93%, 0.18);
}

.lead-form .btn {
  background: var(--c-accent);
  color: var(--c-cream);
}

.lead-form .btn:hover {
  background: var(--c-accent-hover);
  color: var(--c-cream);
}

.lead-magnet-note {
  color: hsla(27, 45%, 93%, 0.4) !important;
  font-size: 12px;
  margin-top: 12px;
}

/* ── FOOTER ── */
.footer {
  background: var(--c-footer-bg);
  color: var(--c-footer-text);
  padding: 80px 0 40px;
}

.footer--dark {
  background: var(--c-footer-bg);
}

.footer a {
  color: var(--c-footer-text);
  transition: color 0.2s ease;
}

.footer a:hover {
  color: hsl(18 62% 60%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid hsla(27, 45%, 93%, 0.1);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.footer-logo {
  display: inline-block;
}

.footer-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.footer-brand p {
  color: var(--c-footer-brand);
  font-size: 14px;
  line-height: 1.65;
  max-width: 320px;
}

.footer-cta {
  margin-top: 8px;
  background: var(--c-accent);
  color: var(--c-cream);
}

.footer-cta:hover {
  background: var(--c-accent-hover);
  color: var(--c-cream);
}

.footer-col h4 {
  color: var(--c-footer-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col li {
  font-size: 14px;
}

.footer-col a:hover {
  color: hsl(18 62% 60%);
}

.footer-loc {
  color: var(--c-footer-brand);
}

.footer-social {
  display: flex;
  gap: 12px;
  padding: 28px 0;
  border-bottom: 1px solid hsla(27, 45%, 93%, 0.1);
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-pill);
  border: 1px solid hsla(27, 45%, 93%, 0.15);
  color: var(--c-footer-text);
  transition: all 0.2s ease;
}

.footer-social-link:hover {
  color: var(--c-cream);
  border-color: var(--c-accent);
  background: var(--c-accent);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 28px;
  font-size: 13px;
  color: var(--c-footer-brand);
  flex-wrap: wrap;
}

.footer-bottom-mid {
  color: hsl(27 15% 45%);
}

.footer-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-pill);
  border: 1px solid hsla(27, 45%, 93%, 0.2);
  color: var(--c-footer-text);
  transition: all 0.2s ease;
}

.footer-top:hover {
  background: var(--c-accent);
  border-color: var(--c-accent);
  color: var(--c-cream);
}

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1200;
  transform: translateY(140%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease, visibility 0.3s ease;
}

.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.cookie-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 22px 26px;
  background: var(--c-cream-light);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-pop);
}

.cookie-text {
  font-size: 13px;
  line-height: 1.55;
  color: var(--c-text-muted);
  flex: 1;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-accent);
  white-space: nowrap;
}

.cookie-link:hover {
  text-decoration: underline;
}

/* ── RESPONSIVE ── */

/* Tablet / small laptop */
@media (max-width: 1080px) {
  .head-phone {
    display: none;
  }

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

  .calc-result {
    grid-column: 1 / -1;
    position: static;
    display: grid;
    grid-template-columns: 1.2fr auto;
    align-items: center;
    gap: 24px;
  }

  .calc-result .calc-urgency {
    grid-column: 1 / -1;
  }

  .calc-result .btn {
    margin: 0;
  }

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

  .work-grid {
    grid-auto-rows: 200px;
  }
}

/* Mobile nav breakpoint */
@media (max-width: 940px) {
  .head-nav {
    display: none;
  }

  .head-phone,
  .head-mail {
    display: none;
  }

  .head-burger {
    display: inline-flex;
  }

  .header {
    height: 68px;
  }

  .hero {
    padding: 48px 0 88px;
  }

  .hero-title {
    font-size: clamp(38px, 10vw, 64px);
  }

  .hero-sub {
    font-size: 16px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

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

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

  .calc-result {
    grid-column: auto;
    display: block;
  }

  .calc-result .btn {
    margin-top: 24px;
  }

  .calc-addons {
    grid-template-columns: 1fr;
  }

  .quote {
    display: none;
  }
}

/* Mobile */
@media (max-width: 720px) {
  .wrap {
    padding: 0 18px;
  }

  .hero,
  .page-hero,
  .calculator,
  .stats,
  .services,
  .process,
  .work,
  .blog-list,
  .article,
  .contact,
  .cta-band,
  section.article-cta,
  .error-page {
    width: calc(100% - 28px);
    margin: 20px auto;
    border-radius: 28px;
  }

  .header {
    width: calc(100% - 20px);
    top: 8px;
    margin-top: 8px;
    height: 62px;
    padding: 0 12px 0 18px;
  }

  .svc-tabs {
    flex-wrap: wrap;
  }

  .svc-layout {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 28px;
  }

  .svc-right {
    justify-content: stretch;
  }

  .svc-features {
    grid-template-columns: 1fr;
    max-width: none;
  }

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

  .pro-line {
    display: none;
  }

  .work-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .work-card-tall,
  .work-card-wide {
    grid-row: auto;
    grid-column: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

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

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

  .contact-form {
    padding: 24px 20px;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .cookie-actions {
    justify-content: space-between;
  }

  .lead-form {
    flex-direction: column;
  }

  .lead-magnet-inner {
    padding: 40px 24px;
  }

  .cta-band-inner {
    justify-content: center;
    text-align: center;
  }

  .article-cta {
    padding: 32px 24px;
  }

  .error-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

/* Small mobile */
@media (max-width: 440px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

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

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}