/* ==========================================================================
   DentiKids — demo strony stomatologii dziecięcej (dentsmart)
   Styl: Claymorphism — miękkie 3D, grube zaokrąglenia, podwójne cienie
   ========================================================================== */

:root {
  /* kolory */
  --c-primary: #F97316;
  --c-primary-dark: #EA580C;
  --c-secondary: #FB923C;
  --c-accent: #2563EB;
  --c-accent-dark: #1D4ED8;
  --c-mint: #10B981;
  --c-bg: #FFF7ED;
  --c-bg-tint: #FEF3E2;
  --c-surface: #FFFFFF;
  --c-ink: #1E293B;
  --c-ink-soft: #475569;
  --c-border: #FED7AA;
  --c-blue-soft: #DBEAFE;
  --c-mint-soft: #D1FAE5;
  --c-orange-soft: #FFEDD5;

  /* clay cienie: zewnętrzny miękki + wewnętrzny rozświetlający */
  --clay-shadow: 0 8px 24px rgba(234, 88, 12, .12), 0 2px 6px rgba(30, 41, 59, .06), inset 0 -4px 8px rgba(234, 88, 12, .06), inset 0 3px 6px rgba(255, 255, 255, .9);
  --clay-shadow-blue: 0 10px 30px rgba(37, 99, 235, .14), inset 0 -4px 10px rgba(37, 99, 235, .07), inset 0 3px 6px rgba(255, 255, 255, .9);

  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;

  --font-head: "Baloo 2", system-ui, sans-serif;
  --font-body: "Nunito", system-ui, sans-serif;

  --space-1: 8px; --space-2: 16px; --space-3: 24px;
  --space-4: 32px; --space-5: 48px; --space-6: 64px; --space-7: 96px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--c-ink);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; }

h1, h2, h3 {
  font-family: var(--font-head);
  line-height: 1.15;
  color: var(--c-ink);
  margin: 0 0 var(--space-2);
}

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

p { margin: 0 0 var(--space-2); }

a { color: var(--c-accent); }

.container {
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 32px);
}

.hl {
  color: var(--c-primary);
  position: relative;
  white-space: nowrap;
}
.hl--light { color: #FDBA74; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--c-accent);
  background: var(--c-blue-soft);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: var(--space-2);
}
.eyebrow--light { background: rgba(255,255,255,.15); color: #BFDBFE; }

/* ===== Przyciski (clay) ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 12px 26px;
  min-height: 48px;
  transition: transform .2s ease-out, box-shadow .2s ease-out, background .2s ease-out;
}
.btn:focus-visible { outline: 3px solid var(--c-accent); outline-offset: 3px; }

.btn--primary {
  background: linear-gradient(180deg, var(--c-secondary), var(--c-primary));
  color: #fff;
  box-shadow: 0 8px 20px rgba(249, 115, 22, .35), inset 0 2px 4px rgba(255,255,255,.4), inset 0 -3px 6px rgba(154, 52, 18, .3);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(249, 115, 22, .42), inset 0 2px 4px rgba(255,255,255,.4), inset 0 -3px 6px rgba(154, 52, 18, .3); }
.btn--primary:active { transform: translateY(1px) scale(.98); }

.btn--ghost {
  background: var(--c-surface);
  color: var(--c-accent);
  box-shadow: var(--clay-shadow-blue);
}
.btn--ghost:hover { transform: translateY(-2px); }
.btn--ghost:active { transform: translateY(1px) scale(.98); }

.btn--lg { padding: 15px 32px; font-size: 1.08rem; min-height: 54px; }
.btn--block { width: 100%; }

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 247, 237, .88);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid rgba(254, 215, 170, .5);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  min-height: 72px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.45rem;
  color: var(--c-ink);
  text-decoration: none;
}
.nav__logo em { font-style: normal; color: var(--c-primary); }
.nav__logo-icon { width: 40px; height: 40px; }

.nav__links {
  display: flex;
  gap: clamp(12px, 2vw, 26px);
  margin-left: auto;
}
.nav__links a {
  font-weight: 700;
  color: var(--c-ink-soft);
  text-decoration: none;
  padding: 8px 4px;
  border-radius: 8px;
  transition: color .2s ease-out;
}
.nav__links a:hover { color: var(--c-primary); }
.nav__links a:focus-visible { outline: 3px solid var(--c-accent); outline-offset: 2px; }

.nav__cta { flex-shrink: 0; }

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 12px;
  background: var(--c-surface);
  border: none;
  border-radius: var(--radius-sm);
  box-shadow: var(--clay-shadow);
  cursor: pointer;
}
.nav__burger span {
  display: block;
  height: 3px;
  border-radius: 3px;
  background: var(--c-ink);
  transition: transform .25s ease-out, opacity .2s ease-out;
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(48px, 8vw, 96px) clamp(56px, 8vw, 104px);
}
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .5;
  pointer-events: none;
}
.hero__blob--1 { width: 480px; height: 480px; background: #BFDBFE; top: -140px; right: -120px; }
.hero__blob--2 { width: 420px; height: 420px; background: #FED7AA; bottom: -160px; left: -140px; }

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-surface);
  color: var(--c-accent);
  font-weight: 800;
  font-size: .92rem;
  padding: 8px 18px;
  border-radius: 999px;
  box-shadow: var(--clay-shadow-blue);
  margin-bottom: var(--space-3);
}
.badge svg { width: 16px; height: 16px; color: var(--c-primary); }

.hero__lead {
  font-size: 1.18rem;
  color: var(--c-ink-soft);
  max-width: 52ch;
  margin-bottom: var(--space-4);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-3);
  list-style: none;
  padding: 0;
  margin: 0;
}
.hero__trust li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--c-ink-soft);
  font-size: .98rem;
}
.hero__trust svg {
  width: 22px; height: 22px;
  color: var(--c-mint);
  background: var(--c-mint-soft);
  border-radius: 50%;
  padding: 4px;
  flex-shrink: 0;
}

/* Robot card */
.hero__stage { display: flex; justify-content: center; }

.robot-card {
  background: linear-gradient(160deg, #EEF4FF 0%, #E5EDFB 55%, #EDE9FE 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--clay-shadow-blue);
  padding: clamp(20px, 3vw, 30px);
  width: min(440px, 100%);
}
.robot-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-1);
}
.robot-card__hello {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--c-accent-dark);
  background: rgba(255,255,255,.75);
  padding: 6px 14px;
  border-radius: 999px;
}
.robot-card__stars { display: inline-flex; gap: 3px; }
.star { width: 20px; height: 20px; fill: #CBD5E1; }
.star--on { fill: #FBBF24; }

.robot { display: block; width: 100%; height: auto; }

.robot-card__bottom {
  display: flex;
  align-items: flex-end;
  gap: var(--space-2);
  margin-top: var(--space-1);
}
.robot-card__meter { flex: 1; }
.robot-card__meter-label {
  display: block;
  font-weight: 800;
  font-size: .85rem;
  color: var(--c-accent-dark);
  margin-bottom: 6px;
}
.meter {
  height: 16px;
  background: rgba(255,255,255,.8);
  border-radius: 999px;
  overflow: hidden;
  box-shadow: inset 0 2px 4px rgba(30,41,59,.12);
}
.meter__fill {
  width: var(--val, 0%);
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #A3E635, #84CC16);
  transition: width 1.2s ease-out .3s;
}
.robot-card__chip {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .9rem;
  color: var(--c-ink);
  background: #fff;
  padding: 7px 14px;
  border-radius: 999px;
  box-shadow: 0 3px 8px rgba(30,41,59,.08);
  white-space: nowrap;
}

/* animacje robota */
@keyframes robotFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes armWave { 0%,100% { transform: rotate(0deg); } 30% { transform: rotate(-14deg); } 60% { transform: rotate(6deg); } }
@keyframes antennaBlink { 0%,70%,100% { fill: #F97316; } 80%,90% { fill: #FBBF24; } }
@keyframes shadowPulse { 0%,100% { transform: scaleX(1); opacity: .45; } 50% { transform: scaleX(.9); opacity: .3; } }
@keyframes blink { 0%, 92%, 100% { transform: scaleY(1); } 95% { transform: scaleY(.08); } }

.robot__float { animation: robotFloat 4s ease-in-out infinite; }
.robot__arm-wave { transform-origin: 96px 186px; animation: armWave 4s ease-in-out infinite; }
.robot__antenna { animation: antennaBlink 4s linear infinite; }
.robot__shadow { transform-origin: 160px 340px; animation: shadowPulse 4s ease-in-out infinite; }
.robot__eyes { transform-origin: 160px 102px; animation: blink 5s linear infinite; }

/* ===== PAGE HERO (podstrony) ===== */
.page-hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding-block: clamp(48px, 7vw, 80px);
}
.page-hero .hero__blob--1 { width: 380px; height: 380px; top: -160px; right: -100px; }
.page-hero .hero__blob--2 { width: 340px; height: 340px; bottom: -180px; left: -120px; }
.page-hero__inner { position: relative; max-width: 720px; margin-inline: auto; }
.page-hero h1 { font-size: clamp(2rem, 4.5vw, 3rem); }
.page-hero__lead { color: var(--c-ink-soft); font-size: 1.15rem; margin: 0 auto; max-width: 56ch; }

.nav__links a[aria-current="page"] { color: var(--c-primary); }

/* ===== CTA BAND (podstrony) ===== */
.cta-band {
  background: linear-gradient(160deg, #1E3A8A 0%, #1D4ED8 60%, #2563EB 100%);
  color: #E0EAFF;
  text-align: center;
  padding-block: clamp(48px, 7vw, 80px);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #C7D7FE; max-width: 52ch; margin-inline: auto; }
.cta-band .btn { margin-top: var(--space-2); }

/* ===== USŁUGI — bloki szczegółowe ===== */
.service-detail {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-3);
  align-items: start;
  background: var(--c-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--clay-shadow);
  padding: var(--space-4);
}
.service-detail + .service-detail { margin-top: var(--space-3); }
.service-detail p:last-child { margin: 0; color: var(--c-ink-soft); }
.service-detail__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 var(--space-2);
  padding: 0;
  list-style: none;
}
.service-detail__meta li {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .82rem;
  color: var(--c-accent-dark);
  background: var(--c-blue-soft);
  padding: 4px 12px;
  border-radius: 999px;
}

/* ===== INFO BOX ===== */
.info-box {
  background: var(--c-mint-soft);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: inset 0 2px 4px rgba(255,255,255,.8), inset 0 -3px 6px rgba(16,185,129,.12);
  max-width: 820px;
  margin: var(--space-5) auto 0;
}
.info-box h3 { color: #065F46; }
.info-box p:last-child { margin: 0; color: #065F46; }

/* ===== CENNIK — grupy ===== */
.price-group { max-width: 720px; margin-inline: auto; }
.price-group + .price-group { margin-top: var(--space-4); }
.price-group__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
  margin-bottom: var(--space-2);
}
.price-group__title svg {
  width: 40px; height: 40px;
  padding: 9px;
  color: var(--c-primary-dark);
  background: var(--c-orange-soft);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.price-note {
  max-width: 720px;
  margin: var(--space-4) auto 0;
  text-align: center;
  color: var(--c-ink-soft);
  font-size: .95rem;
}

/* ===== WARTOŚCI (zespół) ===== */
.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
}
.value {
  background: var(--c-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--clay-shadow);
  padding: var(--space-3);
  text-align: center;
}
.value h3 { font-size: 1.05rem; }
.value p { margin: 0; color: var(--c-ink-soft); font-size: .92rem; }
.value__icon {
  width: 56px; height: 56px;
  display: grid;
  place-items: center;
  margin: 0 auto var(--space-2);
  background: var(--c-blue-soft);
  color: var(--c-accent);
  border-radius: 50%;
  box-shadow: inset 0 2px 4px rgba(255,255,255,.8), inset 0 -3px 6px rgba(37,99,235,.12);
}
.value__icon svg { width: 26px; height: 26px; }

/* ===== KONTAKT — dojazd ===== */
.visit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  max-width: 980px;
  margin-inline: auto;
}
.visit-card {
  background: var(--c-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--clay-shadow);
  padding: var(--space-3);
  text-align: center;
}
.visit-card h3 { font-size: 1.05rem; }
.visit-card p { margin: 0; color: var(--c-ink-soft); font-size: .95rem; }

.section__more { text-align: center; margin-top: var(--space-4); }

/* ===== STRIP ===== */
.strip {
  background: var(--c-surface);
  border-block: 2px solid rgba(254, 215, 170, .55);
  padding-block: var(--space-4);
}
.strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
  text-align: center;
}
.strip__num {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: var(--c-primary);
  font-variant-numeric: tabular-nums;
}
.strip__label { color: var(--c-ink-soft); font-weight: 600; font-size: .95rem; }

/* ===== SEKCJE ===== */
.section { padding-block: clamp(56px, 9vw, 104px); }
.section--tint { background: var(--c-bg-tint); }

.section__head {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: clamp(36px, 5vw, 56px);
}
.section__lead { color: var(--c-ink-soft); font-size: 1.1rem; }

/* ===== KROKI ===== */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
  counter-reset: steps;
}
.step {
  position: relative;
  background: var(--c-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--clay-shadow);
  padding: var(--space-4) var(--space-3) var(--space-3);
  transition: transform .25s ease-out, box-shadow .25s ease-out;
}
.step:hover { transform: translateY(-6px); }
.step__num {
  position: absolute;
  top: -16px;
  left: 24px;
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.15rem;
  color: #fff;
  background: linear-gradient(180deg, var(--c-secondary), var(--c-primary));
  border-radius: 50%;
  box-shadow: 0 5px 12px rgba(249,115,22,.35), inset 0 2px 3px rgba(255,255,255,.4);
}
.step__icon {
  width: 56px; height: 56px;
  display: grid;
  place-items: center;
  background: var(--c-blue-soft);
  color: var(--c-accent);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-2);
  box-shadow: inset 0 2px 4px rgba(255,255,255,.8), inset 0 -3px 6px rgba(37,99,235,.12);
}
.step__icon svg { width: 28px; height: 28px; }
.step p { color: var(--c-ink-soft); font-size: .98rem; margin: 0; }

/* ===== KARTY USŁUG ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}
.card {
  background: var(--c-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--clay-shadow);
  padding: var(--space-4) var(--space-3);
  transition: transform .25s ease-out;
}
.card:hover { transform: translateY(-6px) rotate(-.4deg); }
.card__icon {
  width: 64px; height: 64px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  margin-bottom: var(--space-2);
}
.card__icon svg { width: 30px; height: 30px; }
.card__icon--blue { background: var(--c-blue-soft); color: var(--c-accent); box-shadow: inset 0 2px 4px rgba(255,255,255,.8), inset 0 -3px 6px rgba(37,99,235,.12); }
.card__icon--orange { background: var(--c-orange-soft); color: var(--c-primary-dark); box-shadow: inset 0 2px 4px rgba(255,255,255,.8), inset 0 -3px 6px rgba(234,88,12,.12); }
.card__icon--mint { background: var(--c-mint-soft); color: #047857; box-shadow: inset 0 2px 4px rgba(255,255,255,.8), inset 0 -3px 6px rgba(16,185,129,.15); }
.card p { color: var(--c-ink-soft); font-size: .98rem; margin: 0; }

/* ===== ZESPÓŁ ===== */
.team {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}
.team__card {
  background: var(--c-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--clay-shadow);
  padding: var(--space-4) var(--space-3);
  text-align: center;
  transition: transform .25s ease-out;
}
.team__card:hover { transform: translateY(-6px); }
.team__avatar {
  width: 96px; height: 96px;
  margin-inline: auto;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.8rem;
  color: #fff;
  border-radius: 50%;
  margin-bottom: var(--space-2);
  box-shadow: inset 0 3px 6px rgba(255,255,255,.35), inset 0 -5px 10px rgba(0,0,0,.15), 0 8px 18px rgba(30,41,59,.12);
}
.team__avatar--a { background: linear-gradient(160deg, #60A5FA, #2563EB); }
.team__avatar--b { background: linear-gradient(160deg, #FB923C, #EA580C); }
.team__avatar--c { background: linear-gradient(160deg, #34D399, #059669); }
.team__role { color: var(--c-primary-dark); font-weight: 800; font-size: .95rem; margin-bottom: var(--space-1); }
.team__card > p:last-child { color: var(--c-ink-soft); font-size: .96rem; margin: 0; }

/* ===== OPINIE ===== */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}
.quote {
  margin: 0;
  background: var(--c-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--clay-shadow);
  padding: var(--space-4) var(--space-3);
  display: flex;
  flex-direction: column;
}
.quote__stars {
  color: #FBBF24;
  font-size: 1.15rem;
  letter-spacing: 3px;
  margin-bottom: var(--space-2);
}
.quote blockquote {
  margin: 0 0 var(--space-2);
  color: var(--c-ink-soft);
  font-size: .99rem;
  flex: 1;
}
.quote figcaption { font-weight: 800; color: var(--c-ink); font-size: .95rem; }

/* ===== CENNIK ===== */
.price-table {
  max-width: 720px;
  margin-inline: auto;
  background: var(--c-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--clay-shadow);
  padding: var(--space-3) var(--space-4);
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
  padding-block: 15px;
}
.price-row + .price-row { border-top: 2px dashed var(--c-border); }
.price-row__name { font-weight: 700; }
.price-row__dots { flex: 1; border-bottom: 2px dotted #E2E8F0; transform: translateY(-4px); }
.price-row__price {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--c-primary-dark);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

/* ===== KONTAKT / CTA ===== */
.section--cta {
  background: linear-gradient(160deg, #1E3A8A 0%, #1D4ED8 60%, #2563EB 100%);
  color: #E0EAFF;
}
.section--cta h2 { color: #fff; }

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.contact__lead { color: #C7D7FE; font-size: 1.1rem; }
.contact__list {
  list-style: none;
  padding: 0;
  margin: var(--space-4) 0 0;
  display: grid;
  gap: var(--space-2);
}
.contact__list li { display: flex; align-items: center; gap: 14px; font-weight: 700; }
.contact__list svg {
  width: 44px; height: 44px;
  padding: 11px;
  flex-shrink: 0;
  color: #BFDBFE;
  background: rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
}
.contact__list a { color: #fff; text-decoration: none; }
.contact__list a:hover { text-decoration: underline; }

.contact__form {
  background: var(--c-surface);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(15, 23, 42, .3);
  padding: clamp(24px, 3.5vw, 40px);
  color: var(--c-ink);
}
.contact__form h3 { margin-bottom: var(--space-3); }

.field { margin-bottom: var(--space-2); }
.field label {
  display: block;
  font-weight: 800;
  font-size: .92rem;
  margin-bottom: 6px;
}
.field label span { color: var(--c-primary); }
.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  color: var(--c-ink);
  background: #F8FAFC;
  border: 2px solid #E2E8F0;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  min-height: 48px;
  transition: border-color .2s ease-out, box-shadow .2s ease-out;
}
.field textarea { resize: vertical; min-height: 84px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--c-accent);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, .15);
}
.field input.is-error { border-color: #DC2626; }
.field-error {
  display: block;
  color: #DC2626;
  font-weight: 700;
  font-size: .85rem;
  margin-top: 5px;
}

.contact__form-note {
  font-size: .82rem;
  color: #94A3B8;
  margin: var(--space-2) 0 0;
}
.contact__form-success {
  margin-top: var(--space-2);
  font-weight: 800;
  color: #047857;
  background: var(--c-mint-soft);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
}

/* ===== FOOTER ===== */
.footer {
  background: #431407;
  color: #FED7AA;
  padding-block: var(--space-5);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: var(--space-4);
  align-items: start;
}
.footer__logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
}
.footer__logo em { font-style: normal; color: var(--c-secondary); }
.footer__brand p { margin: var(--space-1) 0 0; font-size: .95rem; opacity: .85; }
.footer__nav { display: grid; gap: 10px; }
.footer__nav a { color: #FED7AA; text-decoration: none; font-weight: 700; }
.footer__nav a:hover { color: #fff; }
.footer__demo { font-size: .88rem; opacity: .8; margin: 0; }
.footer__demo a { color: #FDBA74; font-weight: 800; }

/* ===== Scroll reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease-out, transform .5s ease-out;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ===== Responsywność ===== */
@media (max-width: 1023px) {
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: var(--space-4); }
  .cards, .team, .quotes { grid-template-columns: repeat(2, 1fr); }
  .values { grid-template-columns: repeat(2, 1fr); }
  .visit-grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    gap: 4px;
    background: var(--c-surface);
    padding: var(--space-2) var(--space-3) var(--space-3);
    box-shadow: 0 20px 40px rgba(30,41,59,.15);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: 12px 8px; min-height: 44px; display: flex; align-items: center; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; margin-left: auto; }

  .hero__inner { grid-template-columns: 1fr; }
  .hero__copy { text-align: center; }
  .hero__actions, .hero__trust { justify-content: center; }

  .strip__inner { grid-template-columns: repeat(2, 1fr); }
  .steps, .cards, .team, .quotes, .values { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; padding: var(--space-3); }
  .steps { row-gap: var(--space-4); }
  .contact { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .price-table { padding-inline: var(--space-3); }
  .price-row { flex-wrap: wrap; }
  .price-row__dots { display: none; }
  .price-row__price { margin-left: auto; }
}

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