/* ============================================================
   DK GARAGE CHIPTUNING — styles.css
   ============================================================ */

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

:root {
  --red:        #e8000f;
  --red-dark:   #b0000b;
  --bg:         #0e0e0e;
  --bg2:        #131313;
  --bg3:        #0a0a0a;
  --surface:    #1c1c1c;
  --border:     #2e2e2e;
  --text:       #f0f0f0;
  --text-muted: #b8b8b8;
  --white:      #f0f0f0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9999; opacity: 0.3;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ── UTILITIES ── */
.divider--red { width: 100%; height: 3px; background: linear-gradient(90deg, var(--red) 0%, transparent 100%); }

.eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 0.8rem; letter-spacing: 0.4em;
  text-transform: uppercase; color: var(--red);
  display: flex; align-items: center; gap: 1rem;
}
.eyebrow::before { content: ''; display: block; width: 40px; height: 2px; background: var(--red); }

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 0.75rem; letter-spacing: 0.45em;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 1rem; display: flex; align-items: center; gap: 0.8rem;
}
.section-label::before { content: ''; display: block; width: 30px; height: 2px; background: var(--red); }

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-style: italic;
  font-size: clamp(2.5rem, 6vw, 5rem);
  text-transform: uppercase; color: var(--white);
  line-height: 0.95; margin-bottom: 1.5rem;
}

section { padding: 8rem 0; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

p {
  font-size: 1rem;
  line-height: 1.6;
}

/* ── BUTTONS ── */
.btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 0.9rem; letter-spacing: 0.2em;
  text-transform: uppercase; text-decoration: none;
  display: inline-block; cursor: pointer; border: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}
.btn--primary {
  background: var(--red); color: var(--white); padding: 14px 36px;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.btn--primary:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn--outline {
  background: transparent; color: var(--text); padding: 14px 36px;
  border: 1px solid var(--border);
}
.btn--outline:hover { border-color: var(--red); color: var(--red); }
.btn--nav {
  background: var(--red); color: var(--white);
  font-size: 0.8rem; padding: 8px 20px;
}
.btn--nav:hover { background: var(--red-dark); }
.btn--submit {
  background: var(--red); color: var(--white); padding: 1rem 2.5rem;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
}
.btn--submit:hover { background: var(--red-dark); }

/* ── NAV ── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw; height: 64px;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: border-color 0.3s;
}
.nav-logo { display: flex; flex-direction: column; line-height: 1; }
.nav-logo__dk {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-style: italic; font-size: 1.1rem;
  color: var(--red); letter-spacing: 0.12em;
}
.nav-logo__chip {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 0.75rem;
  letter-spacing: 0.25em; color: var(--text-muted);
}
.nav-links { display: flex; gap: 1.5rem; list-style: none; }
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 0.8rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-muted);
  text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: var(--red); }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding-top: 64px;
  position: relative; overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(232,0,15,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(232,0,15,0.03) 0%, transparent 50%),
    linear-gradient(160deg, var(--bg3) 0%, var(--bg3) 100%);
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(232,0,15,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,0,15,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.hero__slash {
  position: absolute; top: 0; right: 0; width: 45%; height: 100%;
  background: linear-gradient(135deg, transparent 40%, rgba(232,0,15,0.07) 100%);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero__layout {
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  position: relative; z-index: 2;
  padding-top: 4rem; padding-bottom: 4rem;
  gap: 0;
}

.hero__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-style: italic;
  font-size: clamp(5rem, 14vw, 10rem);
  line-height: 0.88; text-transform: uppercase; color: var(--white);
  margin: 1.5rem 0 1rem;
}
.hero__title span { color: var(--red); }
.hero__sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 300; font-size: clamp(0.85rem, 1.6vw, 1.15rem);
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 2.8rem;
}
.hero__actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  justify-content: center;
}

.hero__stats {
  display: flex; flex-direction: row; gap: 4rem;
  margin-top: 3.5rem; padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  width: 100%; justify-content: center;
}
.stat { text-align: center; }
.stat__num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 2.6rem; color: var(--white); line-height: 1;
}
.stat__label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.68rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text-muted);
  margin-top: 0.3rem;
}
.scroll-hint {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 6px; opacity: 0.4;
}
.scroll-hint span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase;
}
.scroll-hint__arrow {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(0.7); }
}

/* ── USŁUGI ── */
#uslugi { background: var(--bg2); }

.services-manifest {
  margin-top: 4rem;
  border: 1px solid var(--border);
}

.service-row {
  display: grid;
  grid-template-columns: 80px 1fr 40px;
  grid-template-rows: auto auto auto;
  align-items: start;
  gap: 0 2.5rem;
  padding: 2.2rem 2.5rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
  cursor: pointer;
  user-select: none;
}
.service-row:last-child { border-bottom: none; }
.service-row::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 3px; height: 0; background: var(--red);
  transition: height 0.35s ease;
}
.service-row:hover { background: var(--bg2); }
.service-row:hover::before { height: 100%; }

.service-row__num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-style: italic;
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  color: var(--border);
  line-height: 1;
  transition: color 0.25s;
  user-select: none;
  grid-column: 1; grid-row: 1 / 4;
  align-self: center; padding-top: 0.1rem;
}
.service-row:hover .service-row__num { color: var(--red); }

.service-row__name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--white);
  transition: color 0.25s;
  grid-column: 2; grid-row: 1;
}

.service-row__desc {
  font-size: clamp(0.85rem, 1.1vw, 0.95rem);
  line-height: 1.7;
  color: var(--text-muted); font-weight: 300;
  grid-column: 2; grid-row: 2;
  margin-top: 0.35rem;
}

.service-row__tags {
  display: flex; flex-direction: row; flex-wrap: wrap;
  gap: 0.4rem 0.5rem; align-items: flex-start;
  grid-column: 2; grid-row: 3;
  margin-top: 0.7rem;
}
.service-row__tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--red); border: 1px solid rgba(232,0,15,0.35); padding: 3px 8px;
  white-space: nowrap;
}
.service-row__toggle {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 300; font-size: 1.6rem; line-height: 1;
  color: var(--border);
  display: flex; align-items: center; justify-content: center;
  grid-column: 3; grid-row: 1;
  align-self: start; padding-top: 0.1rem;
  transition: color 0.25s, transform 0.35s ease;
}
.service-row:hover .service-row__toggle { color: var(--text-muted); }
.service-row.is-active .service-row__toggle {
  color: var(--red);
  transform: rotate(45deg);
}

/* ── ACCORDION PANEL ── */
.service-panel {
  height: 0;
  overflow: hidden;
  transition: height 0.4s ease;
  border-bottom: 1px solid var(--border);
}
.service-panel__inner {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3rem;
  padding: 2.5rem 2.5rem 2.5rem 80px;
  background: var(--bg3);
}
.service-panel__body p {
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 1rem;
}
.service-panel__body p:last-child { margin-bottom: 0; }
.service-panel__meta {
  display: flex;
  flex-direction: column;
  gap: 1px;
  align-self: start;
}
.service-panel__stat {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.service-panel__stat-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.service-panel__stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.4;
}

/* ── VEHICLES TICKER ── */
.vehicles-ticker {
  margin-top: 4rem;
  background: var(--bg3);
  border-top: 1px solid var(--surface);
  border-bottom: 1px solid var(--surface);
  overflow: hidden;
  position: relative;
  padding: 1.4rem 0;
}
.vehicles-ticker::before,
.vehicles-ticker::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2;
  pointer-events: none;
}
.vehicles-ticker::before {
  left: 0;
  background: linear-gradient(to right, var(--bg3), transparent);
}
.vehicles-ticker::after {
  right: 0;
  background: linear-gradient(to left, var(--bg3), transparent);
}
.vehicles-ticker__track {
  display: flex; align-items: center; gap: 0;
  width: max-content;
  animation: ticker 30s linear infinite;
}
.vehicles-ticker:hover .vehicles-ticker__track { animation-play-state: paused; }

.vehicles-ticker__track span {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 0.8rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text-muted);
  padding: 0 1.2rem;
  white-space: nowrap;
  transition: color 0.2s;
}
.vehicles-ticker__track span:not(.vehicles-ticker__dot):hover { color: var(--white); }
.vehicles-ticker__dot { color: var(--border) !important; padding: 0 !important; }

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── HAMOWNIA ── */
#hamownia { background: var(--bg); padding: 0; }

.dyno-header {
  padding: 8rem 0 5rem;
  max-width: 760px;
}
.dyno-header__sub {
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted);
  font-weight: 300;
  margin-top: 1.5rem;
  max-width: 580px;
}

.dyno-timeline {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.dyno-step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
  padding: 3rem 0;
  position: relative;
  transition: background 0.2s;
}
.dyno-step:hover { background: rgba(255,255,255,0.01); }

.dyno-step__marker {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 0.2rem;
  position: relative;
}

.dyno-step__num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--border);
  transition: color 0.3s;
  display: block;
}
.dyno-step:hover .dyno-step__num { color: var(--red); }

.dyno-step__line {
  width: 1px;
  flex: 1;
  min-height: 40px;
  background: var(--border);
  margin-top: 1rem;
  margin-left: 2px;
}
.dyno-step--last .dyno-step__line { display: none; }

.dyno-step__content {
  padding-left: 2rem;
  border-left: 1px solid var(--border);
  transition: border-color 0.3s;
}
.dyno-step:hover .dyno-step__content { border-left-color: var(--red); }

.dyno-step__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.dyno-step__desc {
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 640px;
  margin-bottom: 1rem;
}

.dyno-step__detail {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  opacity: 0.7;
}

.dyno-cta-bar {
  margin-top: 1px;
  padding: 2.5rem 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.dyno-cta-bar__text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

/* ── REALIZACJE ── */
#realizacje { background: var(--bg2); padding: 6rem 0; }

.realizacje-header {
  padding: 0 0 3rem;
}
.realizacje-intro {
  max-width: 520px; font-size: 0.95rem; line-height: 1.7;
  color: var(--text-muted); font-weight: 300; margin-top: 0.5rem;
}

.realizacje-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  padding: 0;
}

.realizacja-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s;
}
.realizacja-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 0; height: 3px;
  background: var(--red);
  transition: width 0.35s ease;
  z-index: 1;
}
.realizacja-card:hover { border-color: rgba(232,0,15,0.3); }
.realizacja-card:hover::before { width: 100%; }

.realizacja-card__img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}
.realizacja-card__img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.realizacja-card:hover .realizacja-card__img img { transform: scale(1.04); }

.realizacja-card__body {
  padding: 24px;
  display: flex; flex-direction: column;
  flex: 1;
  border-top: 1px solid var(--border);
}

.realizacja-card__meta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.62rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 0.45rem;
}
.realizacja-card__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-style: italic;
  font-size: clamp(1.25rem, 1.8vw, 1.75rem);
  color: var(--white); text-transform: uppercase; line-height: 1.1;
  margin-bottom: 0.9rem;
}
.realizacja-card__desc {
  font-family: 'Barlow', sans-serif;
  font-size: 0.82rem; line-height: 1.65;
  color: var(--text-muted); font-weight: 300;
  margin-bottom: 1.1rem;
}
.realizacja-card__list {
  list-style: none; padding: 0; margin: 0 0 1.4rem;
  display: flex; flex-direction: column; gap: 0.38rem;
}
.realizacja-card__list li {
  font-family: 'Barlow', sans-serif;
  font-size: 0.79rem; color: var(--text-muted);
  padding-left: 1.3rem; position: relative; line-height: 1.4;
}
.realizacja-card__list li::before {
  content: '→';
  position: absolute; left: 0;
  color: var(--red); font-size: 0.72rem; top: 1px;
}
.realizacja-card__cta {
  display: inline-block; width: fit-content;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 0.68rem; letter-spacing: 0.22em;
  text-transform: uppercase; text-decoration: none;
  color: var(--red); border: 1px solid rgba(232,0,15,0.4);
  padding: 7px 14px; margin-bottom: 1.4rem;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.realizacja-card__cta:hover { background: var(--red); color: var(--white); border-color: var(--red); }
.realizacja-card__tags { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-top: auto; }
.realizacja-card__tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-muted); border: 1px solid var(--border); padding: 2px 7px;
}

.realizacje-note {
  padding: 2.5rem 0 0;
  font-size: 0.75rem; color: var(--border); font-style: italic;
}

/* ── O NAS ── */
#o-nas { background: var(--bg); }
.about-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: start;
}
.about-text .section-label { margin-bottom: 0.5rem; }
.about-text .section-title { margin-bottom: 1.5rem; }
.about-text p {
  font-size: 1rem; line-height: 1.8;
  color: var(--text-muted); font-weight: 300; margin-bottom: 1.2rem;
}
.about-text p strong { color: var(--text); font-weight: 500; }

.about-person {
  margin-top: 2.5rem; padding: 2rem;
  border: 1px solid var(--border); background: var(--surface);
  display: flex; gap: 1.5rem; align-items: flex-start;
  position: relative;
}
.about-person::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 4px; height: 100%; background: var(--red);
}
.about-person__avatar {
  width: 56px; height: 56px; flex-shrink: 0;
  background: var(--red); display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 1.1rem; color: var(--white);
  letter-spacing: 0.05em;
}
.about-person__name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1.2rem; color: var(--white);
}
.about-person__title {
  font-size: 0.8rem; color: var(--red); margin-top: 0.2rem;
}
.about-person__bio {
  font-size: 0.85rem; color: var(--text-muted);
  line-height: 1.6; margin-top: 0.6rem;
}
.about-person__tel {
  display: inline-block; margin-top: 0.8rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1rem; color: var(--white);
  text-decoration: none; transition: color 0.2s;
}
.about-person__tel:hover { color: var(--red); }

.about-numbers {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  align-self: center;
}
.about-num-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 4px; padding: 2.2rem 1.5rem;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  transition: border-color 0.25s;
}
.about-num-item:hover { border-color: rgba(232,0,15,0.3); }
.about-num-item__num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: clamp(2.8rem, 4vw, 3.8rem);
  color: var(--red); line-height: 1;
}
.about-num-item__label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text-muted); margin-top: 0.5rem;
}

/* ── OPINIE ── */
#opinie { background: var(--bg3); }
.opinions-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1px; margin-top: 3rem; border: 1px solid var(--border);
}
.opinion-card {
  background: var(--surface); padding: 2.5rem;
  position: relative; transition: background 0.3s;
}
.opinion-card:hover { background: var(--surface); }
.opinion-card__stars {
  color: var(--red); font-size: 1.1rem; letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.opinion-card__text {
  font-size: 0.9rem; line-height: 1.7;
  color: var(--text-muted); font-weight: 300; margin-bottom: 1.5rem;
  font-style: italic;
}
.opinion-card__author { display: flex; align-items: center; gap: 1rem; }
.opinion-card__initials {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--border); display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 0.85rem; color: var(--text-muted);
}
.opinion-card__name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 0.9rem; color: var(--white);
}
.opinion-card__car {
  font-size: 0.75rem; color: var(--text-muted); margin-top: 0.1rem;
}
.opinions-cta { margin-top: 2.5rem; }

/* ── KONTAKT ── */
#kontakt { background: var(--bg2); }
.contact-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; margin-top: 4rem;
}
.contact-left { display: flex; flex-direction: column; gap: 1px; }
.contact-info { display: flex; flex-direction: column; gap: 1px; }
.contact-row {
  background: var(--surface); border: 1px solid var(--border);
  padding: 1.5rem 2rem; display: flex; align-items: flex-start;
  gap: 1.5rem; transition: background 0.3s;
}
.contact-row:hover { background: var(--surface); }
.contact-row__icon { font-size: 1.2rem; padding-top: 0.1rem; flex-shrink: 0; }
.contact-row__label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.3rem;
}
.contact-row__value {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 1.05rem; color: var(--white);
  text-decoration: none; transition: color 0.2s; line-height: 1.4;
}
a.contact-row__value:hover { color: var(--red); }
.contact-row__hint { color: var(--text-muted); font-size: 0.82rem; }

.map-container {
  margin-top: 1px; border: 1px solid var(--border);
  overflow: hidden; filter: grayscale(100%) contrast(1.1);
  transition: filter 0.3s;
}
.map-container:hover { filter: grayscale(60%) contrast(1.05); }

.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text-muted);
}
.form-input, .form-textarea {
  background: #2a2a2a; border: 2px solid #555;
  color: var(--text); font-family: 'Barlow', sans-serif;
  font-size: 1rem; padding: 0.85rem 1rem;
  outline: none; transition: border-color 0.2s; width: 100%; resize: none;
  border-radius: 2px;
}
.form-input:focus, .form-textarea:focus { border-color: var(--red); }
.form-input::placeholder, .form-textarea::placeholder { color: #666; }
.form-textarea { min-height: 130px; }

/* reset — submit nie dziedziczy stylu pól */
button.btn--submit,
input[type="submit"].btn--submit {
  appearance: none; border: none; border-radius: 0;
}

select.form-input {
  cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23b8b8b8' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
  padding-right: 2.5rem; background-color: #2a2a2a;
}
.form-note {
  font-size: 0.82rem; color: var(--text-muted); min-height: 1.2em; line-height: 1.5;
}
.form-note--success { color: #4caf50; }
.form-note--error   { color: var(--red); }

/* ── FOOTER ── */
#footer {
  background: var(--bg3); border-top: 1px solid var(--border);
  padding: 2.5rem 0;
}
#footer .container {
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 2rem;
}
.footer-brand__logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-style: italic; font-size: 1.1rem;
  color: var(--red); letter-spacing: 0.1em;
}
.footer-brand__sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text-muted);
}
.footer-links {
  display: flex; gap: 1.5rem; justify-content: center;
}
.footer-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-muted); text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--red); }
.footer-right { text-align: right; }
.footer-tel {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1rem; color: var(--text-muted);
  text-decoration: none; transition: color 0.2s; display: block;
}
.footer-tel:hover { color: var(--red); }
.footer-copy { font-size: 0.72rem; color: var(--border); margin-top: 0.3rem; }

/* ── FLOATING CTA ── */
.floating-cta {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 50;
  background: var(--red); color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 0.85rem; letter-spacing: 0.15em;
  text-decoration: none; padding: 12px 20px;
  display: flex; align-items: center; gap: 0.6rem;
  box-shadow: 0 4px 30px rgba(232,0,15,0.4);
  transition: background 0.2s, transform 0.2s;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
}
.floating-cta:hover { background: var(--red-dark); transform: translateY(-2px); }

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── HAMBURGER ── */
.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px;
  background: none; border: none; cursor: pointer; padding: 4px;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block; width: 100%; height: 2px;
  background: var(--text); border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}
.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; transform: scaleX(0); }
.nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .nav-links { gap: 1rem; }
  .dyno-layout { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 900px) {
  .about-layout, .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .hero__stats { gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .realizacje-grid { grid-template-columns: 1fr; }
  #footer .container { grid-template-columns: 1fr; text-align: center; }
  .footer-right { text-align: center; }
  .footer-links { flex-wrap: wrap; }

  .service-row { grid-template-columns: 56px 1fr 40px; gap: 0.3rem 1.5rem; padding: 1.6rem 2rem; }
  .service-panel__inner { grid-template-columns: 1fr; padding: 2rem 2rem 2rem 56px; gap: 2rem; }
}
@media (max-width: 600px) {
  .nav-cta-desktop { display: none; }
  .nav-hamburger { display: flex; }

  .nav-links {
    display: flex; flex-direction: column; gap: 0;
    position: fixed; top: 64px; left: 0; right: 0;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 0;
    max-height: 0; overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
  }
  .nav-links.is-open {
    max-height: 400px;
    padding: 1rem 0;
  }
  .nav-links li { list-style: none; }
  .nav-links a {
    display: block; padding: 1rem 5vw;
    font-size: 1rem; letter-spacing: 0.15em;
    border-bottom: 1px solid var(--border);
  }
  .nav-links li:last-child a { border-bottom: none; }

  section { padding: 5rem 0; }
  .opinions-grid { grid-template-columns: 1fr; }

  .service-row {
    grid-template-columns: 48px 1fr 36px;
    padding: 1.4rem 1.2rem;
    gap: 0.3rem 1rem;
  }
  .service-row__tags { margin-top: 0.5rem; }
  .service-panel__inner { padding: 1.5rem 1.2rem; gap: 1.5rem; }

  .realizacja-card__img { height: 180px; }

  .dyno-header { padding: 5rem 0 3rem; }
  .dyno-step { grid-template-columns: 60px 1fr; }
  .dyno-step__num { font-size: 2.5rem; }
  .dyno-cta-bar { flex-direction: column; align-items: flex-start; }
  .vehicles-ticker::before,
  .vehicles-ticker::after { width: 60px; }
}
