/* ==========================================================================
   AutoMedyk Trójmiasto — Mobilny mechanik i ślusarz samochodowy
   Palette: navy / emerald / cream / coral
   Fonts: Fraunces (serif) + Inter (sans)
   ========================================================================== */

:root {
  /* AutoMedyk palette — kolory wyciagniete z naklejki samochodowej.
     --cream / --cream-dark / --cream-deep zachowuja oryginalne nazwy
     (refactor by ich pozbyc sie wymagalby przepisania kazdego selektora),
     ale wartosci sa teraz CIEMNYMI tonami granatowo-czarnymi
     dopasowanymi do brandu. */
  --cream: #0a0c0f;        /* main page BG — najgłębszy granat z naklejki */
  --cream-dark: #06080a;   /* footer/deep accents */
  --cream-deep: #191d21;   /* sticker midtone — dla kart/sekcji */
  --navy: #0a0c0f;
  --navy-deep: #06080a;
  --navy-soft: #1a2128;
  --ink: #f7f9fb;          /* main TEXT color → biały z naklejki */
  --ink-soft: #c8c5c0;     /* secondary text — lekko stłumiona biel */
  --ink-mute: #7a7773;     /* muted gray z naklejki */
  --emerald: #e07113;      /* pomarańczowy brand (faktyczny z naklejki) */
  --emerald-dark: #b85b0e; /* hover/dark accent */
  --emerald-light: #f08e34;/* hover light/lift */
  --coral: #e07113;
  --coral-dark: #b85b0e;
  --coral-light: #f08e34;
  --line: #2a2f35;         /* subtle borders na ciemnym BG */
  --surface: #131820;      /* tło kart (czytelność na dark) */
  --surface-elev: #1a2028; /* podniesione karty (hover) */

  /* Gradients */
  --grad-emerald: linear-gradient(135deg, #f08e34 0%, #e07113 50%, #b85b0e 100%);
  --grad-coral: linear-gradient(135deg, #f08e34 0%, #e07113 50%, #b85b0e 100%);
  --grad-navy: linear-gradient(135deg, #1a2128 0%, #0a0c0f 100%);
  --grad-hero-veil: linear-gradient(180deg, rgba(10,12,15,0) 0%, rgba(10,12,15,0.4) 50%, rgba(10,12,15,0.85) 100%);

  /* Shadow tokens */
  --shadow-xs: 0 1px 2px rgba(10, 12, 15, 0.06);
  --shadow-sm: 0 4px 12px rgba(10, 12, 15, 0.08);
  --shadow: 0 8px 32px rgba(10, 12, 15, 0.12);
  --shadow-lg: 0 20px 60px rgba(10, 12, 15, 0.18);
  --shadow-glow-emerald: 0 0 0 1px rgba(224, 113, 19, 0.22), 0 18px 50px rgba(224, 113, 19, 0.28);
  --shadow-glow-coral: 0 0 0 1px rgba(224, 113, 19, 0.22), 0 18px 50px rgba(224, 113, 19, 0.32);

  /* Layout */
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --max-w: 1180px;
  --read-w: 740px;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast: 200ms;
  --t-base: 400ms;
  --t-slow: 800ms;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: var(--emerald-light); color: #0a0c0f; }
::-moz-selection { background: var(--emerald-light); color: #0a0c0f; }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--cream-dark); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--emerald-dark), var(--emerald));
  border-radius: 10px;
  border: 2px solid var(--cream-dark);
}
::-webkit-scrollbar-thumb:hover { background: var(--emerald); }

h1, h2, h3, h4, .serif {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); margin: 2.4rem 0 1rem; }
h3 { font-size: 1.35rem; margin: 1.8rem 0 0.6rem; color: var(--ink); }
h4 { font-size: 1.1rem; margin: 1.2rem 0 0.4rem; }

p { margin: 0 0 1.1rem; }

a {
  color: var(--emerald-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color var(--t-fast);
}
a:hover { color: var(--emerald); }

ul, ol { margin: 0 0 1.2rem 1.4rem; }
li { margin-bottom: 0.4rem; }

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

/* ==========================================================================
   MARQUEE
   ========================================================================== */
.marquee {
  background: var(--navy-deep);
  color: var(--cream);
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-family: 'Fraunces', serif;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.55rem 0;
  position: relative;
  z-index: 60;
}
.marquee-track {
  display: inline-flex;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  will-change: transform;
}
.marquee-track span {
  padding: 0 2.2rem;
  color: var(--cream);
  opacity: 0.86;
}
.marquee-track span.accent { color: var(--emerald-light); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ==========================================================================
   NAV
   ========================================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 12, 15, 0.72);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(42, 47, 53, 0.6);
  transition: background var(--t-base), box-shadow var(--t-base);
}
.nav.scrolled {
  background: rgba(10, 12, 15, 0.94);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}
.brand {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  filter: drop-shadow(0 4px 10px rgba(224, 113, 19, 0.35));
}
.brand-mark svg { width: 100%; height: 100%; display: block; }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  white-space: nowrap;
  flex: none;
}
.nav-links a, .nav-cta { white-space: nowrap; }
.nav-cta { line-height: 1.1; }
.brand > span { /* "Medyk" w kolorze brand orange */
  color: var(--emerald);
  -webkit-text-fill-color: var(--emerald);
  background: none;
}
.brand { position: relative; }
.brand .brand-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  color: var(--emerald);
  -webkit-text-fill-color: var(--emerald);
  margin-left: 0.5rem;
  align-self: flex-end;
  padding-bottom: 4px;
  text-transform: uppercase;
}
.nav-links { display: flex; gap: 0.8rem; list-style: none; margin: 0; align-items: center; flex-wrap: nowrap; font-size: 0.9rem; }
@media (max-width: 1366px) {
  .nav-links { gap: 0.55rem; font-size: 0.83rem; }
}
@media (max-width: 1280px) {
  .brand .brand-tag { display: inline-block; font-size: 0.55rem; letter-spacing: 0.28em; }
  .nav-links { gap: 0.5rem; font-size: 0.8rem; }
}
@media (max-width: 1023px) {
  /* W mobile/tablet brand-tag absolute pod brandem żeby nie pchać hamburgera poza viewport */
  .brand .brand-tag {
    position: absolute;
    left: 52px; /* za logo-mark (42px + gap 10px) */
    bottom: -10px;
    margin: 0;
    padding: 0;
    font-size: 0.52rem;
    letter-spacing: 0.26em;
    white-space: nowrap;
  }
  .nav-inner { padding: 0.7rem 1rem; gap: 0.5rem; }
}
.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.94rem;
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.5px;
  background: var(--emerald);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--t-base) var(--ease-out);
}
.nav-links a:hover { color: var(--emerald-dark); }
.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-cta {
  background: var(--grad-coral);
  color: white !important;
  padding: 0.55rem 1.1rem !important;
  border-radius: 100px;
  text-decoration: none !important;
  font-weight: 700 !important;
  font-size: 0.88rem !important;
  box-shadow: 0 8px 18px rgba(224, 113, 19, 0.35);
  transition: transform var(--t-base) var(--ease-spring), box-shadow var(--t-base);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.nav-cta:hover { transform: translateY(-2px) scale(1.04); box-shadow: 0 14px 30px rgba(224, 113, 19, 0.5); }
.nav-cta::after { display: none !important; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.5rem 5rem;
  color: white;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: -8% -2%;
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  z-index: -3;
  will-change: transform;
  transform: scale(var(--hero-scale, 1.05)) translateY(var(--hero-y, 0));
  transition: transform 60ms linear;
  filter: saturate(1.05) contrast(1.04);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 50% 30%, rgba(10,12,15,0.15) 0%, rgba(10,12,15,0.6) 60%, rgba(10,12,15,0.85) 100%),
    linear-gradient(180deg, rgba(10,12,15,0.10) 0%, rgba(10,12,15,0.55) 80%);
  z-index: -2;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(420px 240px at 20% 75%, rgba(224, 113, 19, 0.35), transparent 70%),
    radial-gradient(460px 280px at 80% 30%, rgba(224, 113, 19, 0.22), transparent 70%);
  z-index: -1;
  pointer-events: none;
  animation: floatGlow 14s ease-in-out infinite alternate;
}
@keyframes floatGlow {
  from { transform: translate3d(0, 0, 0); opacity: 0.85; }
  to   { transform: translate3d(0, -22px, 0); opacity: 1; }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 920px;
}

.hero h1 {
  color: white;
  text-shadow: 0 2px 30px rgba(0,0,0,0.4);
  letter-spacing: -0.02em;
}

.reveal-words { display: inline-block; }
.reveal-words .w {
  display: inline-block;
  opacity: 0;
  transform: translateY(28px);
  filter: blur(8px);
  animation: wordIn 900ms var(--ease-out) forwards;
  animation-delay: calc(var(--i, 0) * 80ms + 250ms);
  padding-right: 0.18em;
}
@keyframes wordIn {
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.hero .tagline {
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  margin: 1.6rem auto 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.94);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 800ms var(--ease-out) forwards;
  animation-delay: 900ms;
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.hero .eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--emerald-light);
  margin-bottom: 1.4rem;
  font-weight: 600;
  position: relative;
  padding: 0 0 0 28px;
  opacity: 0;
  animation: fadeUp 700ms var(--ease-out) forwards;
}
.hero .eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 1px;
  background: var(--emerald-light);
}
.hero .eyebrow .pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald-light);
  margin-right: 0.45rem;
  animation: pulseDot 1.4s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(240, 142, 52, 0.6);
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(240, 142, 52, 0.6); }
  50% { box-shadow: 0 0 0 8px rgba(240, 142, 52, 0); }
}

.hero-cta-row {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 2.4rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 800ms var(--ease-out) forwards;
  animation-delay: 1100ms;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.05rem 2.1rem;
  background: var(--grad-coral);
  color: white;
  text-decoration: none;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
  box-shadow: 0 12px 36px rgba(224, 113, 19, 0.5);
  transition: transform var(--t-base) var(--ease-spring), box-shadow var(--t-base);
  position: relative;
  overflow: hidden;
  will-change: transform;
}
.hero-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: translateX(-100%);
  transition: transform 600ms var(--ease-out);
}
.hero-cta:hover::before { transform: translateX(100%); }
.hero-cta:hover {
  color: white;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 18px 56px rgba(224, 113, 19, 0.65);
}
.hero-cta .phone-ico {
  display: inline-block;
  width: 22px;
  height: 22px;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  text-align: center;
  line-height: 22px;
  font-size: 0.85rem;
}

.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 1.05rem 1.7rem;
  background: rgba(255,255,255,0.12);
  color: white;
  text-decoration: none;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  border: 1.5px solid rgba(255,255,255,0.38);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background var(--t-fast), transform var(--t-base) var(--ease-spring), border-color var(--t-fast);
}
.hero-cta-secondary:hover {
  background: rgba(255,255,255,0.22);
  color: white;
  border-color: var(--emerald-light);
  transform: translateY(-2px);
}

.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  transition: opacity 0.4s ease;
}
body.scrolled .scroll-cue { opacity: 0; pointer-events: none; }
@media (max-width: 768px) { .scroll-cue { display: none; } }
.scroll-cue .bar {
  display: block;
  width: 1px;
  height: 38px;
  background: linear-gradient(180deg, rgba(255,255,255,0.5), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-cue .bar::after {
  content: '';
  position: absolute;
  left: 0;
  top: -50%;
  width: 100%;
  height: 50%;
  background: var(--emerald-light);
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0%   { top: -50%; }
  100% { top: 110%; }
}
@media (max-width: 768px) {
  .scroll-cue { display: none; }
}

/* ==========================================================================
   CONTAINER & SECTIONS
   ========================================================================== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 4.5rem 1.5rem; }
.read-container { max-width: var(--read-w); margin: 0 auto; padding: 2rem 1.5rem; }

.section-head {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}
.section-head .eyebrow {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--emerald-dark);
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.section-head p {
  max-width: 640px;
  margin: 0.8rem auto 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}
.section-head h2 {
  position: relative;
  display: inline-block;
}
.section-head h2::after {
  content: '';
  display: block;
  width: 72px;
  height: 8px;
  margin: 0.9rem auto 0;
  background: var(--grad-emerald);
  border-radius: 8px;
  transform-origin: center;
  transform: scaleX(0);
  transition: transform 700ms var(--ease-spring) 200ms;
}
.section-head.is-visible h2::after { transform: scaleX(1); }

/* ==========================================================================
   SERVICE GRID
   ========================================================================== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.8rem;
  perspective: 1400px;
}

.service-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem 1.8rem;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  position: relative;
  transition:
    transform 500ms var(--ease-out),
    box-shadow 500ms var(--ease-out);
  transform-style: preserve-3d;
  will-change: transform;
  border: 1px solid rgba(42, 47, 53, 0.5);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-emerald);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 600ms var(--ease-out);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  color: inherit;
  transform: translateY(-6px) rotateX(2deg) rotateY(-2deg) scale(1.01);
  box-shadow: var(--shadow-lg);
}
.service-card .ico-wrap {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(224,113,19,0.12), rgba(224,113,19,0.04));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(224,113,19,0.18);
  transition: transform 400ms var(--ease-spring), background 400ms;
}
.service-card:hover .ico-wrap {
  transform: rotate(-6deg) scale(1.08);
  background: linear-gradient(135deg, rgba(224,113,19,0.2), rgba(224,113,19,0.1));
}
.service-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  color: var(--ink);
  transition: color var(--t-fast);
}
.service-card:hover h3 { color: var(--emerald-dark); }
.service-card .price {
  display: inline-block;
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--coral-dark);
  margin-top: auto;
  padding-top: 1rem;
  letter-spacing: -0.01em;
}
.service-card .price strong { font-size: 1.45rem; }
.service-card p {
  color: var(--ink-soft);
  font-size: 0.96rem;
  margin: 0 0 1rem;
}
.service-card .more {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--emerald-dark);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.service-card .more::after {
  content: '→';
  transition: transform var(--t-base) var(--ease-spring);
}
.service-card:hover .more::after { transform: translateX(5px); }

/* ==========================================================================
   STATS
   ========================================================================== */
.stats {
  background: var(--navy);
  color: white;
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 300px at 20% 30%, rgba(224, 113, 19, 0.18), transparent 70%),
    radial-gradient(700px 400px at 80% 70%, rgba(224, 113, 19, 0.12), transparent 70%);
  pointer-events: none;
}
.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  text-align: center;
  position: relative;
}
.stat .num {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 600;
  background: var(--grad-emerald);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  letter-spacing: -0.02em;
  display: inline-block;
}
.stat .label {
  display: block;
  margin-top: 0.6rem;
  color: rgba(255,255,255,0.82);
  font-size: 0.96rem;
  letter-spacing: 0.04em;
}

/* ==========================================================================
   COVERAGE MAP
   ========================================================================== */
.coverage {
  padding: 5rem 1.5rem;
  background: var(--cream);
}
.coverage-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
}
.coverage-text h2 { margin-top: 0; }
.coverage-text p { color: var(--ink-soft); font-size: 1.05rem; }
.coverage-cities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
  margin: 1.5rem 0 2rem;
}
.coverage-cities li {
  list-style: none;
  margin: 0;
  padding: 0.55rem 0.9rem;
  background: var(--surface);
  border-radius: 100px;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.92rem;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform var(--t-fast), border-color var(--t-fast);
}
.coverage-cities li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 0 4px rgba(224,113,19,0.15);
  flex: none;
}
.coverage-cities li:hover {
  transform: translateX(4px);
  border-color: var(--emerald);
}
.coverage-map {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--cream-dark);
}
.coverage-map svg { width: 100%; height: 100%; display: block; }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials {
  padding: 5rem 1.5rem;
  background: var(--cream-dark);
}
.testimonials-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.6rem;
}
.testimonial {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform var(--t-base), box-shadow var(--t-base);
  border: 1px solid rgba(42, 47, 53, 0.5);
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.testimonial::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 16px;
  font-family: 'Fraunces', serif;
  font-size: 5.5rem;
  line-height: 1;
  color: var(--emerald);
  opacity: 0.18;
}
.testimonial .stars {
  color: #F0B100;
  margin-bottom: 0.7rem;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
}
.testimonial p {
  font-style: italic;
  color: var(--ink-soft);
  margin: 0 0 1.2rem;
  font-size: 0.98rem;
  line-height: 1.65;
}
.testimonial .author {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--line);
}
.testimonial .avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--grad-emerald);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1rem;
  flex: none;
}
.testimonial .author-info {
  display: flex;
  flex-direction: column;
}
.testimonial .author-info strong { color: var(--ink); font-size: 0.95rem; }
.testimonial .author-info span { color: var(--ink-mute); font-size: 0.82rem; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-section {
  padding: 5rem 1.5rem;
  background: var(--cream);
}
.faq-inner {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 0;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.3rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: 'Fraunces', serif;
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--ink);
  transition: color var(--t-fast);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1;
  color: var(--emerald);
  flex: none;
  transition: transform var(--t-base) var(--ease-spring);
}
.faq-item[open] summary { color: var(--emerald-dark); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--emerald-dark); }
.faq-content {
  overflow: hidden;
  padding: 0 0 1.4rem;
  color: var(--ink-soft);
  animation: accordionOpen 400ms var(--ease-out);
}
@keyframes accordionOpen {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.faq-content p { margin: 0 0 0.8rem; }
.faq-content p:last-child { margin: 0; }

/* ==========================================================================
   BIG CTA FOOTER
   ========================================================================== */
.big-cta {
  padding: 5.5rem 1.5rem;
  background: var(--grad-navy);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.big-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(500px 300px at 20% 30%, rgba(224, 113, 19, 0.25), transparent 70%),
    radial-gradient(500px 300px at 80% 70%, rgba(224, 113, 19, 0.18), transparent 70%);
  pointer-events: none;
  animation: floatGlow 14s ease-in-out infinite alternate;
}
.big-cta-inner {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}
.big-cta .eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--emerald-light);
  margin-bottom: 1rem;
  font-weight: 700;
}
.big-cta h2 {
  color: white;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin: 0 0 1rem;
}
.big-cta p {
  color: rgba(255,255,255,0.88);
  font-size: 1.1rem;
  max-width: 620px;
  margin: 0 auto 2rem;
}
.big-cta-row {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.big-cta .hero-cta { font-size: 1.2rem; padding: 1.15rem 2.4rem; }
.big-cta .channels {
  margin-top: 2.4rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.75);
  font-size: 0.94rem;
}
.big-cta .channels a {
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: color var(--t-fast);
}
.big-cta .channels a:hover { color: var(--emerald-light); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.78);
  padding: 4rem 1.5rem 1.8rem;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(500px 240px at 12% 80%, rgba(224,113,19,0.10), transparent 70%),
    radial-gradient(500px 240px at 90% 20%, rgba(224,113,19,0.08), transparent 70%);
  pointer-events: none;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.4rem;
  margin-bottom: 2rem;
  position: relative;
}
footer h5 {
  font-family: 'Fraunces', serif;
  color: white;
  font-size: 1.08rem;
  margin-bottom: 0.8rem;
}
footer ul { list-style: none; margin: 0; padding: 0; }
footer li { margin-bottom: 0.45rem; }
footer a { color: rgba(255, 255, 255, 0.72); text-decoration: none; font-size: 0.93rem; transition: color var(--t-fast); }
footer a:hover { color: var(--emerald-light); }
.footer-brand p {
  color: rgba(255,255,255,0.66);
  font-size: 0.92rem;
  max-width: 320px;
  margin-top: 0.6rem;
}
.footer-brand .brand { color: white; }
.footer-brand .brand span {
  -webkit-text-fill-color: var(--emerald-light);
  background: none;
}
.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding-top: 1.6rem;
  font-size: 0.82rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
}

/* ==========================================================================
   FADE-UP
   ========================================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 900ms var(--ease-out), transform 900ms var(--ease-out);
  will-change: opacity, transform;
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up[data-delay="1"] { transition-delay: 100ms; }
.fade-up[data-delay="2"] { transition-delay: 200ms; }
.fade-up[data-delay="3"] { transition-delay: 300ms; }
.fade-up[data-delay="4"] { transition-delay: 400ms; }
.fade-up[data-delay="5"] { transition-delay: 500ms; }

/* ==========================================================================
   SERVICE PAGE — Hero
   ========================================================================== */
.service-hero {
  position: relative;
  min-height: 70vh;
  padding: 7rem 1.5rem 4rem;
  color: white;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
}
.service-hero-bg {
  position: absolute;
  inset: -6%;
  background-size: cover;
  background-position: center;
  z-index: -3;
  will-change: transform;
  transform: scale(var(--hero-scale, 1.06)) translateY(var(--hero-y, 0));
  filter: saturate(1.05);
}
.service-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,12,15,0.45) 0%, rgba(10,12,15,0.78) 100%);
  z-index: -2;
}
.service-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(500px 320px at 25% 70%, rgba(224, 113, 19, 0.28), transparent 70%);
  z-index: -1;
  pointer-events: none;
}
.service-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
.service-hero .crumbs {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 1.2rem;
  letter-spacing: 0.04em;
}
.service-hero .crumbs a { color: rgba(255,255,255,0.78); text-decoration: none; }
.service-hero .crumbs a:hover { color: var(--emerald-light); }
.service-hero h1 {
  color: white;
  max-width: 760px;
  margin: 0;
  text-shadow: 0 2px 30px rgba(0,0,0,0.4);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
}
.service-hero .lead {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  margin: 1.4rem 0 2.2rem;
  max-width: 660px;
  color: rgba(255,255,255,0.92);
}
.service-hero .price-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 100px;
  padding: 0.45rem 1rem;
  font-size: 0.88rem;
  color: white;
  margin-bottom: 1.2rem;
  backdrop-filter: blur(8px);
}
.service-hero .price-pill strong { color: var(--emerald-light); }
.service-hero-ctas { display: flex; gap: 0.9rem; flex-wrap: wrap; }

/* Reading progress bar */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--grad-emerald);
  z-index: 100;
  transition: width 50ms linear;
  pointer-events: none;
}

/* Article body — service & static pages */
.article-body {
  max-width: var(--read-w);
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}
.article-body h2 {
  padding-top: 1rem;
  margin-top: 2.6rem;
  position: relative;
  scroll-margin-top: 100px;
  color: var(--ink);
}
.article-body h2::before {
  content: '';
  display: block;
  width: 52px;
  height: 4px;
  background: var(--grad-emerald);
  border-radius: 4px;
  margin-bottom: 1rem;
}
.article-body h3 { scroll-margin-top: 100px; color: var(--ink); }
.article-body p { color: var(--ink-soft); }
.article-body strong { color: var(--ink); }
.article-body blockquote {
  border-left: 4px solid var(--emerald);
  padding: 1rem 1.4rem;
  margin: 1.8rem 0;
  font-style: italic;
  color: var(--ink-soft);
  background: var(--cream-dark);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.article-body ul li, .article-body ol li { color: var(--ink-soft); }
.article-body ul li strong, .article-body ol li strong { color: var(--ink); }

/* Process steps grid */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
  margin: 2.5rem 0;
}
.process-step {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 1.7rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  position: relative;
  transition: transform var(--t-base) var(--ease-out), box-shadow var(--t-base);
}
.process-step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.process-step .step-num {
  position: absolute;
  top: -14px;
  left: 1.5rem;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--grad-emerald);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 6px 14px rgba(224,113,19,0.35);
}
.process-step h4 { margin: 0.4rem 0 0.4rem; color: var(--ink); font-size: 1.05rem; }
.process-step p { color: var(--ink-soft); font-size: 0.92rem; margin: 0; }

/* Pricing box */
.pricing-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 1.8rem 2rem;
  margin: 2rem 0;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 5px; height: 100%;
  background: var(--grad-emerald);
}
.pricing-card h4 { margin-top: 0; color: var(--ink); }
.pricing-card .price-row,
.pricing-section .price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.2rem 1.2rem;
  justify-content: space-between;
  padding: 0.7rem 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.96rem;
  color: var(--ink-soft);
}
.pricing-card .price-row:last-child,
.pricing-section .price-row:last-child { border-bottom: none; }
.pricing-card .price-row strong,
.pricing-section .price-row strong { color: var(--coral-dark); font-family: 'Fraunces', serif; font-size: 1.1rem; }

/* Trust badges row */
.trust-badges {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin: 1.5rem 0 2rem;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(224,113,19,0.08);
  border: 1px solid rgba(224,113,19,0.22);
  border-radius: 100px;
  padding: 0.4rem 0.9rem;
  font-size: 0.85rem;
  color: var(--emerald-dark);
  font-weight: 600;
}

/* Inline CTA block */
.inline-cta {
  background: var(--grad-navy);
  color: white;
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  margin: 2.4rem 0;
  position: relative;
  overflow: hidden;
}
.inline-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(400px 200px at 20% 30%, rgba(224,113,19,0.28), transparent 70%);
  pointer-events: none;
}
.inline-cta .eyebrow {
  display: inline-block;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--emerald-light);
  font-weight: 700;
  margin-bottom: 0.5rem;
  position: relative;
}
.inline-cta h3 {
  color: white;
  margin: 0 0 0.5rem;
  font-size: 1.45rem;
  position: relative;
}
.inline-cta p { color: rgba(255,255,255,0.86); margin: 0 0 1.2rem; position: relative; font-size: 0.96rem; }
.inline-cta-row { display: flex; gap: 0.7rem; flex-wrap: wrap; position: relative; }
.inline-cta-tel {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  background: var(--grad-coral);
  color: white;
  text-decoration: none;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 10px 26px rgba(224,113,19,0.45);
  transition: transform var(--t-base) var(--ease-spring);
}
.inline-cta-tel:hover { color: white; transform: translateY(-2px) scale(1.03); }
.inline-cta-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.3rem;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.38);
  color: white;
  text-decoration: none;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background var(--t-fast), transform var(--t-base) var(--ease-spring);
}
.inline-cta-wa:hover { background: rgba(255,255,255,0.22); color: white; transform: translateY(-2px); }

/* Use case grid */
.use-cases {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin: 1.6rem 0 2rem;
}
.use-case {
  background: var(--cream-dark);
  padding: 1.1rem 1.3rem;
  border-radius: var(--radius);
  border-left: 3px solid var(--emerald);
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.use-case strong { color: var(--ink); display: block; margin-bottom: 0.2rem; }

/* Related services strip */
.related-services {
  background: var(--cream-dark);
  padding: 4rem 1.5rem;
}
.related-services .container { padding: 0; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}
.related-card {
  background: var(--surface);
  padding: 1.4rem 1.3rem;
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--ink);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.related-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  color: var(--ink);
}
.related-card .ico { font-size: 1.5rem; }
.related-card strong { font-family: 'Fraunces', serif; font-size: 1.05rem; color: var(--ink); }
.related-card span { font-size: 0.85rem; color: var(--ink-mute); }

/* Map embed (kontakt) */
.map-embed {
  margin: 2rem 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  aspect-ratio: 16/9;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* Contact card grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
  margin: 2rem 0;
}
.contact-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.6rem;
  text-align: center;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-base), box-shadow var(--t-base);
  text-decoration: none;
  color: inherit;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); color: inherit; }
.contact-card .ico-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--grad-emerald);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
  box-shadow: 0 8px 18px rgba(224,113,19,0.32);
}
.contact-card h4 { margin: 0 0 0.4rem; color: var(--ink); }
.contact-card .big-text {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  color: var(--coral-dark);
  margin: 0.3rem 0;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.contact-card p { color: var(--ink-soft); font-size: 0.9rem; margin: 0; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 980px) {
  .coverage-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 720px) {
  .nav-links li:not(.nav-cta-wrap) { display: none; }
  .hero { min-height: 78vh; padding: 5rem 1.2rem 4rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.6rem; }
  .marquee { font-size: 0.7rem; }
  .marquee-track span { padding: 0 1.3rem; }
  .service-card:hover { transform: translateY(-3px); }
  .container { padding: 3.2rem 1.2rem; }
  .article-body { padding: 2rem 1.2rem 3rem; }
  .service-hero { min-height: 60vh; padding: 5rem 1.2rem 3rem; }
  .coverage-cities { grid-template-columns: 1fr; }
  .big-cta { padding: 4rem 1.2rem; }
  .hero-cta-row { width: 100%; flex-direction: column; }
  .hero-cta, .hero-cta-secondary { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .service-grid { gap: 1.2rem; }
  .service-card { padding: 1.6rem 1.4rem 1.5rem; }
  .pricing-card .price-row,
  .pricing-section .price-row {
    flex-wrap: wrap;
    gap: 0.3rem 0.6rem;
    align-items: baseline;
  }
  .pricing-card .price-row span,
  .pricing-section .price-row span { flex: 1 1 auto; min-width: 0; }
  .pricing-card .price-row strong,
  .pricing-section .price-row strong { flex: 0 0 auto; white-space: nowrap; margin-left: auto; }
}

/* ==========================================================================
   A11Y
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-bg, .service-hero-bg { transform: none !important; }
  .marquee-track { animation: none; }
  .scroll-cue { display: none; }
  .fade-up { opacity: 1; transform: none; }
}

/* Utilities */
.text-center { text-align: center; }
.lead {
  font-size: 1.18rem;
  color: var(--ink-soft);
  font-family: 'Fraunces', serif;
  font-weight: 400;
  line-height: 1.6;
}

/* Generic CTA buttons (used outside hero) */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  background: var(--grad-coral);
  color: white;
  text-decoration: none;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 8px 20px rgba(224,113,19,0.35);
  transition: transform var(--t-base) var(--ease-spring), box-shadow var(--t-base);
}
.btn:hover { color: white; transform: translateY(-2px); box-shadow: 0 14px 30px rgba(224,113,19,0.5); }
.btn-emerald {
  background: var(--grad-emerald);
  box-shadow: 0 8px 20px rgba(224,113,19,0.35);
}
.btn-emerald:hover { box-shadow: 0 14px 30px rgba(224,113,19,0.5); }
.btn-ghost {
  background: var(--surface);
  color: var(--ink);
  border: 1.5px solid var(--line);
  box-shadow: none;
}
.btn-ghost:hover { background: var(--cream-dark); border-color: var(--emerald); color: var(--ink); }

/* ============================================
   HAMBURGER MENU + MOBILE DRAWER (added 2026-05-19)
   ============================================ */
.nav-hamburger {
  display: none;
  width: 44px; height: 44px;
  background: transparent; border: 0;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  cursor: pointer;
  position: relative;
  margin-left: auto;
  flex: none;
  z-index: 50;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: #f7f9fb;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1023px) {
  .nav .nav-links { display: none !important; }
  .nav-hamburger { display: flex; }
}

.mobile-menu {
  position: fixed; inset: 0; z-index: 1000;
  visibility: hidden; opacity: 0;
  transition: opacity 0.3s, visibility 0.3s;
}
.mobile-menu.open { visibility: visible; opacity: 1; }
.mobile-menu-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.6);
  cursor: pointer;
}
.mobile-menu-panel {
  position: absolute; top: 0; right: 0;
  width: min(360px, 90vw); height: 100vh;
  background: #0a0c0f;
  padding: 80px 32px 32px;
  transform: translateX(100%);
  transition: transform 0.3s ease-out;
  display: flex; flex-direction: column;
  box-shadow: -10px 0 40px rgba(0,0,0,0.5);
  overflow-y: auto;
}
.mobile-menu.open .mobile-menu-panel { transform: translateX(0); }
.mobile-menu-close {
  position: absolute; top: 18px; right: 24px;
  width: 40px; height: 40px;
  background: transparent; border: 0;
  color: #f7f9fb; font-size: 32px; line-height: 1;
  cursor: pointer;
}
.mobile-menu-close:hover { color: #e07113; }
.mobile-menu-links { list-style: none; padding: 0; margin: 0; }
.mobile-menu-links li { margin: 0; padding: 0; }
.mobile-menu-links a {
  display: block;
  padding: 16px 8px;
  color: #f7f9fb;
  text-decoration: none;
  font-size: 18px; font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s;
}
.mobile-menu-links a:hover,
.mobile-menu-links a:focus { color: #e07113; outline: none; }

/* ============================================
   STICKY BOTTOM CALL BAR (added 2026-05-19)
   ============================================ */
.sticky-call-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: linear-gradient(135deg, #0a0c0f 0%, #13181c 100%);
  border-top: 2px solid #e07113;
  padding: 12px 16px;
  display: flex; gap: 12px;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.4);
  transform: translateY(0);
  transition: transform 0.3s;
}
.sticky-call-bar.hide { transform: translateY(100%); }

.sticky-call-bar__phone, .sticky-call-bar__whatsapp {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.sticky-call-bar__phone {
  background: #e07113;
  color: #fff;
  box-shadow: 0 4px 12px rgba(224,113,19,0.4);
}
.sticky-call-bar__phone:hover { background: #f08e34; transform: translateY(-2px); }
.sticky-call-bar__whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 12px rgba(37,211,102,0.3);
}
.sticky-call-bar__whatsapp:hover { background: #128c7e; transform: translateY(-2px); }

body { padding-bottom: 104px; }

@media print { .sticky-call-bar, .nav-hamburger, .mobile-menu { display: none !important; } body { padding-bottom: 0; } }

@media (max-width: 480px) {
  .sticky-call-bar { padding: 8px 12px; gap: 8px; }
  .sticky-call-bar__phone, .sticky-call-bar__whatsapp { padding: 12px; font-size: 14px; }
  .sticky-call-bar__whatsapp span { display: none; }
  body { padding-bottom: 96px; }
}

/* Benefit list (benefit-driven section, e.g. "Co dostajesz") */
.benefit-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 2.4rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
}
.benefit-list li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.3rem 1.4rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  transition: transform var(--t-base) var(--ease-out), box-shadow var(--t-base);
  position: relative;
}
.benefit-list li::before {
  content: "✓";
  position: absolute;
  top: 1.3rem;
  right: 1.3rem;
  color: var(--emerald);
  font-weight: 700;
  font-size: 1.1rem;
}
.benefit-list li:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.benefit-list li strong {
  color: var(--ink);
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-weight: 600;
  padding-right: 1.6rem;
}
.benefit-list li span {
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.5;
}

/* Quote card variant of blockquote */
.article-body blockquote.quote-card {
  background: linear-gradient(135deg, var(--cream-dark), var(--surface));
  border-left: 4px solid var(--accent, #e07113);
  padding: 1.4rem 1.7rem;
  border-radius: var(--radius);
  font-style: italic;
  color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
  margin: 2rem 0;
  display: block;
}
.article-body blockquote.quote-card cite {
  display: block;
  margin-top: 0.7rem;
  font-style: normal;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
}

/* === Nav dropdown Usługi (desktop) === */
.nav-dd { position: relative; }
.nav-dd > a .nav-dd-caret { font-size: .7em; opacity: .65; margin-left: 3px; display: inline-block; transition: transform .2s ease; }
.nav-dd:hover > a .nav-dd-caret, .nav-dd:focus-within > a .nav-dd-caret { transform: rotate(180deg); }
.nav-dd::after { content: ""; position: absolute; left: 0; right: 0; top: 100%; height: 14px; } /* most hover */
.nav-dd-menu {
  position: absolute; top: calc(100% + 12px); right: 0; left: auto; min-width: 234px;
  list-style: none; margin: 0; padding: 8px;
  background: rgba(14,17,22,0.97);
  -webkit-backdrop-filter: saturate(180%) blur(14px); backdrop-filter: saturate(180%) blur(14px);
  border: 1px solid rgba(255,255,255,0.09); border-radius: 14px;
  box-shadow: 0 22px 55px rgba(0,0,0,0.55);
  display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 60;
}
.nav-dd:hover .nav-dd-menu, .nav-dd:focus-within .nav-dd-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dd-menu li { display: block; }
.nav-dd-menu a { display: block; padding: 10px 14px; border-radius: 9px; white-space: nowrap; font-size: .88rem; color: #f7f9fb; }
.nav-dd-menu a::after { display: none !important; }
.nav-dd-menu a:hover { background: rgba(224,113,19,0.14); color: var(--accent, #e07113); }
@media (max-width: 1023px) { .nav-dd, .nav-dd-menu { } } /* desktop nav i tak ukryty <=1023 */
