/* ═══════════════════════════════════════════════════════
   TWIN DETAIL — V3
   Luxury Automotive Detailing Brand
   Black · White · Red — Editorial Premium
   ═══════════════════════════════════════════════════════ */

:root {
  --black: #000;
  --rich: #080808;
  --dark: #0e0e0e;
  --dark2: #151515;
  --dark3: #1a1a1a;
  --gray-dark: #333;
  --gray: #666;
  --gray-mid: #888;
  --gray-light: #aaa;
  --silver: #ccc;
  --offwhite: #e8e6e3;
  --white: #fff;
  --red: #c8102e;
  --red-dark: #a00d24;
  --red-glow: rgba(200, 16, 46, 0.35);

  --font-display: 'Bebas Neue', Impact, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1280px;
  --nav-h: 80px;
  --section-pad: clamp(5rem, 10vw, 9rem);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--white);
  background: var(--black);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; color: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

/* ─── LOGO ─── */
.logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.08em;
  color: var(--white);
  line-height: 1;
}

.logo span {
  color: var(--red);
}

/* ─── SECTION HEAD ─── */
.section-head {
  margin-bottom: 3.5rem;
}

.section-head--center {
  text-align: center;
}

.section-head__tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.section-head__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--white);
}

.section-head__title em {
  font-style: normal;
  color: var(--red);
}

.section-head__title--white { color: var(--white); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1rem 2.25rem;
  transition: all 0.35s var(--ease);
  cursor: pointer;
}

.btn--red {
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
}

.btn--red:hover {
  background: transparent;
  color: var(--red);
  box-shadow: 0 0 40px var(--red-glow);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.25);
}

.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.05);
}

.btn--full { width: 100%; justify-content: center; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--red);
  transition: gap 0.3s var(--ease), color 0.3s;
}

.link-arrow:hover {
  gap: 0.75rem;
  color: var(--white);
}

/* ─── RED LINE DIVIDER ─── */
.redline {
  height: 3px;
  background: var(--red);
  box-shadow: 0 0 30px var(--red-glow), 0 0 60px rgba(200, 16, 46, 0.15);
}

/* ─── NAVIGATION ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: all 0.4s var(--ease);
}

.nav.scrolled {
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  height: 64px;
}

.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__menu {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav__menu a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-light);
  transition: color 0.3s;
  position: relative;
}

.nav__menu a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--red);
  transition: width 0.3s var(--ease);
}

.nav__menu a:hover { color: var(--white); }
.nav__menu a:hover::after { width: 100%; }

.nav__cta {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.65rem 1.5rem;
  border: 1.5px solid var(--red);
  color: var(--red);
  transition: all 0.3s var(--ease);
}

.nav__cta:hover {
  background: var(--red);
  color: var(--white);
}

/* Burger */
.burger {
  display: none;
  width: 28px;
  height: 20px;
  position: relative;
  z-index: 1001;
}

.burger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--white);
  transition: all 0.3s var(--ease);
}

.burger span:first-child { top: 4px; }
.burger span:last-child { bottom: 4px; }

.burger.active span:first-child {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.burger.active span:last-child {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

/* ═══════════════════════════════════
   HERO — Cinematic full-bleed
   ═══════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  background-color: var(--dark);
  transform: scale(1.05);
  transition: transform 12s ease-out;
}

body.loaded .hero__image {
  transform: scale(1);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.15) 55%, rgba(0,0,0,0.4) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0.6) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  padding-top: var(--nav-h);
}

.hero__eyebrow {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.25rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 11vw, 9rem);
  line-height: 0.92;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero__title span {
  -webkit-text-stroke: 1.5px var(--white);
  -webkit-text-fill-color: transparent;
}

.hero__title em {
  font-style: normal;
  color: var(--red);
}

.hero__desc {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--gray-light);
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero bottom stats */
.hero__bottom {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 2rem;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.hero__stat {
  text-align: center;
}

.hero__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.04em;
  color: var(--white);
}

.hero__stat span {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-mid);
}

.hero__divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.12);
}

/* ═══════════════════════════════════
   TRUST
   ═══════════════════════════════════ */
.trust {
  padding: var(--section-pad) 0;
  background: var(--rich);
}

.trust__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.04);
}

.trust__item {
  background: var(--rich);
  padding: 3rem 2rem;
  transition: background 0.4s;
}

.trust__item:hover {
  background: var(--dark);
}

.trust__num {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--red);
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.trust__item h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.trust__item p {
  font-size: 0.8125rem;
  color: var(--gray-mid);
  line-height: 1.7;
  font-weight: 300;
}

/* ═══════════════════════════════════
   SERVICES — alternating rows
   ═══════════════════════════════════ */
.services {
  padding: var(--section-pad) 0;
  background: var(--black);
}

.service {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 1px;
  min-height: 420px;
}

.service--reverse {
  direction: rtl;
}

.service--reverse > * {
  direction: ltr;
}

.service__img {
  position: relative;
  overflow: hidden;
}

.service__img img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  display: block;
  transition: all 0.6s var(--ease);
  filter: brightness(0.9) saturate(1);
}

.service:hover .service__img img {
  transform: scale(1.04);
  filter: brightness(1.05) saturate(1.1);
}

.service__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.5rem 4rem;
  background: var(--rich);
  border: 1px solid rgba(255,255,255,0.03);
  transition: background 0.4s;
}

.service:hover .service__text {
  background: var(--dark);
}

.service__index {
  font-family: var(--font-display);
  font-size: 0.875rem;
  color: var(--red);
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.service__text h3 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

.service__text p {
  font-size: 0.875rem;
  color: var(--gray-mid);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 1.75rem;
  max-width: 400px;
}

/* ═══════════════════════════════════
   BEFORE / AFTER
   ═══════════════════════════════════ */
.ba {
  padding: var(--section-pad) 0;
  background: var(--dark);
}

.ba__main {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: center;
}

.ba__slider {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  cursor: col-resize;
  border: 1px solid rgba(255,255,255,0.06);
}

.ba__before, .ba__after {
  position: absolute;
  inset: 0;
}

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

/* "Before" — dull, faded */
.ba__img--before {
  filter: brightness(0.7) saturate(0.4) contrast(0.9) sepia(0.15);
}

/* "After" — vibrant, glossy, high contrast, sharp */
.ba__img--after {
  filter: brightness(1.05) saturate(1.3) contrast(1.15);
}

.ba__after {
  clip-path: inset(0 0 0 50%);
}

.ba__tag {
  position: absolute;
  bottom: 14px;
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  background: rgba(0,0,0,0.7);
}

.ba__tag--before { left: 14px; }
.ba__tag--after { right: 14px; }

.ba__handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 5;
  pointer-events: none;
}

.ba__handle-bar {
  width: 2px;
  flex: 1;
  background: var(--red);
}

.ba__handle-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 30px var(--red-glow);
}

.ba__details .ba__label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}

.ba__details h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

.ba__details > p {
  font-size: 0.875rem;
  color: var(--gray-mid);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 2rem;
}

.ba__stats {
  display: flex;
  gap: 2.5rem;
}

.ba__stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.04em;
  color: var(--white);
}

.ba__stats span {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-mid);
}

/* ═══════════════════════════════════
   WHY — full-bleed image background
   ═══════════════════════════════════ */
.why {
  position: relative;
  min-height: 700px;
}

.why__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--dark);
}

.why__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0.85) 100%);
}

.why__content {
  position: relative;
  z-index: 1;
  padding: var(--section-pad) 0;
}

.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.why__lead {
  font-size: 1rem;
  color: var(--gray-light);
  line-height: 1.8;
  font-weight: 300;
  margin: 1.5rem 0 2.5rem;
  max-width: 440px;
}

.why__point {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s var(--ease);
}

.why__point:hover {
  padding-left: 1rem;
  border-color: var(--red);
}

.why__point > span {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--red);
  letter-spacing: 0.1em;
  flex-shrink: 0;
  padding-top: 0.15rem;
}

.why__point h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.375rem;
}

.why__point p {
  font-size: 0.8125rem;
  color: var(--gray-mid);
  line-height: 1.7;
  font-weight: 300;
}

/* ═══════════════════════════════════
   GALLERY
   ═══════════════════════════════════ */
.gallery {
  padding: var(--section-pad) 0;
  background: var(--rich);
}

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

.gallery__item {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  cursor: pointer;
}

.gallery__item--big {
  grid-column: span 2;
  aspect-ratio: 2 / 1;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.6s var(--ease);
  filter: brightness(0.9);
}

.gallery__item:hover img {
  transform: scale(1.06);
  filter: brightness(1.05);
}

.gallery__hover {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.4s var(--ease);
}

.gallery__item:hover .gallery__hover {
  opacity: 1;
  transform: translateY(0);
}

.gallery__hover small {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.25rem;
}

.gallery__hover strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
}

.gallery__footer {
  text-align: center;
  margin-top: 3rem;
}

/* ═══════════════════════════════════
   PROCESS
   ═══════════════════════════════════ */
.process {
  padding: var(--section-pad) 0;
  background: var(--black);
}

.process__row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.process__step {
  flex: 1;
  max-width: 220px;
  text-align: center;
  padding: 0 1rem;
}

.process__num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--red);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.process__step h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.process__step p {
  font-size: 0.75rem;
  color: var(--gray-mid);
  line-height: 1.7;
  font-weight: 300;
}

.process__line {
  width: 60px;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin-top: 1.5rem;
  flex-shrink: 0;
  position: relative;
}

.process__line::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-top: 1px solid rgba(255,255,255,0.2);
  border-right: 1px solid rgba(255,255,255,0.2);
  transform: rotate(45deg);
}

/* ═══════════════════════════════════
   REVIEWS
   ═══════════════════════════════════ */
.reviews {
  padding: var(--section-pad) 0;
  background: var(--dark);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.04);
}

.review {
  background: var(--dark);
  padding: 3rem 2.5rem;
  transition: background 0.4s;
  border: none;
}

.review:hover {
  background: var(--dark2);
}

.review__stars {
  color: var(--red);
  font-size: 0.75rem;
  letter-spacing: 3px;
  margin-bottom: 1.25rem;
}

.review p {
  font-size: 0.9375rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.8;
  color: var(--silver);
  margin-bottom: 1.5rem;
}

.review footer {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.review footer strong {
  font-size: 0.8125rem;
  font-weight: 600;
}

.review footer span {
  font-size: 0.6875rem;
  color: var(--gray-mid);
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════
   PRICING / CENNIK
   ═══════════════════════════════════ */
.pricing {
  padding: var(--section-pad) 0;
  background: var(--rich);
}

.pricing__subtitle {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-top: -1.5rem;
}

.pricing__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.04);
}

.pricing__card {
  background: var(--rich);
  padding: 0;
}

.pricing__card-head {
  padding: 2rem 2.5rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.pricing__card-head h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  color: var(--white);
}

.pricing__list {
  list-style: none;
  padding: 0;
}

.pricing__list li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.3s var(--ease);
}

.pricing__list li:last-child {
  border-bottom: none;
}

.pricing__list li:hover {
  background: rgba(255,255,255,0.02);
}

.pricing__list li div {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.pricing__list li strong {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
}

.pricing__list li span {
  font-size: 0.6875rem;
  color: var(--gray-mid);
  font-weight: 300;
  line-height: 1.5;
  margin-top: 0.15rem;
}

.pricing__list li em {
  font-style: normal;
  font-family: var(--font-display);
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  color: var(--white);
  white-space: nowrap;
  flex-shrink: 0;
  padding-top: 0.1rem;
}

/* Highlighted row */
.pricing__highlight {
  background: rgba(200, 16, 46, 0.06) !important;
  border-left: 3px solid var(--red) !important;
}

.pricing__highlight em {
  color: var(--red) !important;
}

.pricing__footnote {
  padding: 1rem 2.5rem 1.5rem;
  font-size: 0.6875rem;
  color: var(--gray);
  font-style: italic;
  font-weight: 300;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.pricing__bottom {
  text-align: center;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.pricing__bottom p {
  font-size: 0.8125rem;
  color: var(--gray-mid);
  font-weight: 300;
}

@media (max-width: 768px) {
  .pricing__grid {
    grid-template-columns: 1fr;
  }

  .pricing__list li {
    padding: 1rem 1.25rem;
  }

  .pricing__card-head {
    padding: 1.5rem 1.25rem 1rem;
  }

  .pricing__footnote {
    padding: 1rem 1.25rem;
  }
}

/* ═══════════════════════════════════
   CTA / CONTACT
   ═══════════════════════════════════ */
.cta {
  position: relative;
  padding: var(--section-pad) 0;
  overflow: hidden;
}

.cta__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--dark);
  filter: brightness(0.5);
}

.cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.9) 30%, rgba(0,0,0,0.7) 100%);
}

.cta__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.cta__info > p {
  font-size: 0.9375rem;
  color: var(--gray-light);
  line-height: 1.8;
  font-weight: 300;
  margin: 1.5rem 0 2.5rem;
}

.cta__contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cta__contact-list a,
.cta__contact-list span {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--gray-light);
  transition: color 0.3s;
}

.cta__contact-list a:hover { color: var(--white); }

.cta__contact-list svg {
  color: var(--red);
  flex-shrink: 0;
}

/* Form */
.cta__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 2.5rem;
}

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

.cta__form input,
.cta__form textarea,
.cta__form select {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
}

.cta__form input::placeholder,
.cta__form textarea::placeholder {
  color: var(--gray);
}

.cta__form input:focus,
.cta__form textarea:focus,
.cta__form select:focus {
  border-color: var(--red);
}

.cta__form select {
  cursor: pointer;
  color: var(--gray);
}

.cta__form select option {
  background: var(--dark);
  color: var(--white);
}

.cta__form textarea {
  resize: vertical;
  min-height: 80px;
}

/* ═══════════════════════════════════
   FOOTER
   ═══════════════════════════════════ */
.footer {
  padding: 3rem 0 1.5rem;
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer__main {
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 1.5rem;
}

.footer__brand p {
  font-size: 0.6875rem;
  color: var(--gray);
  margin-top: 0.5rem;
  line-height: 1.6;
}

.logo--footer { font-size: 1.5rem; }

.footer__links {
  display: flex;
  gap: 5rem;
}

.footer__links div {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer__links h5 {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 0.5rem;
}

.footer__links a {
  font-size: 0.8125rem;
  color: var(--gray);
  font-weight: 300;
  transition: color 0.3s;
}

.footer__links a:hover { color: var(--white); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__bottom small {
  font-size: 0.625rem;
  color: var(--gray);
}

.footer__ig {
  color: var(--gray);
  transition: color 0.3s;
}

.footer__ig:hover { color: var(--red); }

/* ═══════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

/* ═══════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════ */
@media (max-width: 1024px) {
  .service { grid-template-columns: 1fr; }
  .service--reverse { direction: ltr; }
  .service__placeholder { min-height: 280px; }
  .service__text { padding: 2.5rem 2rem; }

  .ba__main { grid-template-columns: 1fr; gap: 2.5rem; }
  .why__grid { grid-template-columns: 1fr; gap: 3rem; }
  .cta__layout { grid-template-columns: 1fr; gap: 3rem; }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav__menu, .nav__cta { display: none; }
  .burger { display: block; }

  .nav__menu {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    background: rgba(0,0,0,0.97);
    backdrop-filter: blur(20px);
    z-index: 1000;
  }

  .nav__menu.open { display: flex; }

  .nav__menu a {
    font-size: 1.25rem;
    color: var(--white);
  }

  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.1) 30%, rgba(0,0,0,0.5) 100%) !important;
  }

  .hero__image {
    background-position: 65% center !important;
  }

  .service__img img {
    filter: brightness(1) saturate(1) !important;
    min-height: 260px;
  }

  .gallery__item img {
    filter: brightness(1) !important;
  }

  .cta__bg {
    filter: brightness(0.6) !important;
  }

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

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

  .gallery__item--big { grid-column: span 2; }

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

  .process__row {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .process__line {
    width: 1px;
    height: 40px;
    margin-top: 0;
  }

  .process__line::after {
    display: none;
  }

  .hero__bottom {
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .hero__divider { display: none; }

  .footer__main { flex-direction: column; gap: 2rem; }
  .footer__bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .form-row { grid-template-columns: 1fr; }

  .ba__stats { flex-wrap: wrap; gap: 1.5rem; }
}

@media (max-width: 480px) {
  .trust__row { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__item--big { grid-column: span 1; aspect-ratio: 4/3; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { text-align: center; justify-content: center; }
  .hero__bottom { flex-direction: column; gap: 1.5rem; }
  .footer__links { flex-direction: column; gap: 2rem; }
  .cta__form { padding: 1.5rem; }
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--dark3); }
::-webkit-scrollbar-thumb:hover { background: var(--red); }

::selection {
  background: rgba(200, 16, 46, 0.3);
  color: var(--white);
}
