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

:root {
  --bg: #f5f5f5;
  --bg-white: #ffffff;
  --bg-dark: #2e2e2e;
  --hero-dark: #1a1a1a;
  --accent: #e86b2b;
  --text: #2e2e2e;
  --text-muted: #666666;
  --nav-height: 64px;
  --diag: 60px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  padding-top: var(--nav-height);
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: var(--text);
}

a { text-decoration: none; color: inherit; }

/* ── SCROLL ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-up.in-view {
  opacity: 1;
  transform: none;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(26, 26, 26, 0.85);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding: 0 40px;
  justify-content: space-between;
}

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

.nav-logo img {
  height: 38px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.8);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.25s ease;
}

.nav-links a:hover { color: #ffffff; }
.nav-links a:hover::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.25s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu — max-height animation instead of display toggle */
.mobile-menu {
  background: var(--bg-dark);

  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  z-index: 199;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
}

.mobile-menu.open {
  max-height: 320px;
  padding: 16px 24px 24px;
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-menu a {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}

.mobile-menu a:hover { color: var(--accent); }

/* ── HERO ── */
#hero {
  margin-top: calc(-1 * var(--nav-height));
  background-color: var(--hero-dark);
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  overflow: hidden;
  position: relative;
  z-index: 10;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-video.active {
  opacity: 1;
}

/* Dark overlay — mobile only */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
  z-index: 1;
  display: none;
}

/* Desktop: solid dark left panel */
.hero-left {
  flex: 0 0 52%;
  background: var(--hero-dark);
  display: flex;
  align-items: center;
  padding: 120px 12% 100px 8%;
  position: relative;
  z-index: 2;
  animation: heroSlideIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* Desktop: right column clips its top-left corner diagonally.
   The clipped triangle reveals #hero's dark background, creating a seamless
   diagonal boundary between the dark left panel and the video. */
.hero-right {
  flex: 1;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0% 100%);
  animation: heroFadeIn 1.1s ease both 0.3s;
  /* van.jpg shows while videos load */
  background: var(--hero-dark) url('../images/van.jpg') center / cover no-repeat;
}

@keyframes heroSlideIn {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: none; }
}

@keyframes heroFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.hero-strapline {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 18px;
  animation: heroContentIn 0.7s ease both 0.5s;
}

#hero h1 {
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  animation: heroContentIn 0.7s ease both 0.65s;
}

.hero-ajc { color: #ffffff; font-size: clamp(8rem, 10vw, 8rem);}
.hero-rmc { color: var(--accent); }

.hero-tagline {
  font-size: 1.1rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 36px;
  max-width: 380px;
  line-height: 1.6;
  animation: heroContentIn 0.7s ease both 0.8s;
}

.hero-left .btn {
  animation: heroContentIn 0.7s ease both 0.95s;
}

@keyframes heroContentIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 4px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s, transform 0.15s, border-color 0.2s;
  background: var(--accent);
  color: #ffffff;
  border: 2px solid var(--accent);
}

.btn:hover {
  background: #c85a1f;
  border-color: #c85a1f;
  transform: translateY(-2px);
}

.btn-white {
  background: #ffffff;
  color: var(--accent);
  border-color: #ffffff;
}

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

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--accent);
  padding: 22px 24px;
  position: relative;
  z-index: 9;
}

.trust-bar-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 16px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #ffffff;
}

.trust-item svg {
  color: #ffffff;
  flex-shrink: 0;
}

/* ── SHARED ── */
.section-heading {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  text-align: center;
  color: var(--text);
  margin-bottom: 14px;
}

.heading-rule {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--accent);
  margin: 0 auto 52px;
  border-radius: 2px;
}

.heading-rule.left {
  margin: 10px 0 28px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

#services, #how-it-works, #gallery, #reviews, #area, #contact {
  scroll-margin-top: var(--nav-height);
}

/* ── SERVICES ── */
#services {
  background: var(--bg-white);
  padding: calc(var(--diag) + 80px) 24px 100px;
  clip-path: polygon(0 var(--diag), 100% 0, 100% 100%, 0 100%);
  margin-top: calc(-1 * var(--diag));
  position: relative;
  z-index: 8;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.card {
  background: var(--bg-white);
  padding: 36px 32px 32px;
  border-radius: 6px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
  border-bottom: 3px solid transparent;
  transition: all 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(232, 104, 42, 0.25);
  border-bottom-color: var(--accent);
}



.card-icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-icon {
  width: 32px;
  height: 32px;
  color: #ffffff;
}

.card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  font-weight: 400;
}

/* ── HOW IT WORKS ── */
#how-it-works {
  background: var(--bg);
  padding: calc(var(--diag) + 80px) 24px 100px;
  clip-path: polygon(0 0, 100% var(--diag), 100% 100%, 0 100%);
  margin-top: calc(-1 * var(--diag));
  position: relative;
  z-index: 7;
}

.steps-track {
  display: flex;
  align-items: flex-start;
  max-width: 960px;
  margin: 0 auto;
  overflow: visible;
}

.step {
  flex: 1;
  text-align: center;
  padding: 0 8px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  min-width: 0;
}

.step.step-visible {
  opacity: 1;
  transform: none;
}

.step-connector {
  flex: 0 0 48px;
  height: 2px;
  background: var(--accent);
  margin-top: 36px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  position: relative;
  overflow: visible;
  z-index: 1;
}

.step-connector::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 7px solid var(--accent);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  opacity: 0;
  transition: opacity 0.2s ease 0.35s;
}

.step-connector.connector-visible {
  transform: scaleX(1);
}

.step-connector.connector-visible::after {
  opacity: 1;
}

.step-number {
  width: 72px;
  height: 72px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-number svg {
  width: 34px;
  height: 34px;
  stroke: #ffffff;
  fill: none;
}

.step.step-visible .step-number {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(232,107,43,0.35);
}

.step.step-visible:hover .step-number {
  transform: scale(1.14);
}

.step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.step p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  font-weight: 400;
}

/* ── GALLERY ── */
#gallery {
  background: var(--bg-white);
  padding: calc(var(--diag) + 80px) 24px 100px;
  clip-path: polygon(0 var(--diag), 100% 0, 100% 100%, 0 100%);
  margin-top: calc(-1 * var(--diag));
  position: relative;
  z-index: 6;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  aspect-ratio: 4 / 3;
  background: #dddddd;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

/* Default overlay: subtle dark */
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
  transition: background 0.35s ease;
}

/* Hover: orange tint overlay */
.gallery-item:hover::after {
  background: rgba(232, 107, 43, 0.45);
}

.gallery-item:hover img { transform: scale(1.05); }

/* ── TESTIMONIALS ── */
#reviews {
  background: var(--bg);
  padding: calc(var(--diag) + 80px) 24px 100px;
  clip-path: polygon(0 0, 100% var(--diag), 100% 100%, 0 100%);
  margin-top: calc(-1 * var(--diag));
  position: relative;
  z-index: 5;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}

.review-card {
  background: var(--bg-white);
  padding: 32px 28px 28px;
  border-radius: 6px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  border-top: 3px solid var(--accent);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-align: center;
  position: relative;
}

.review-card::before {
  content: '\201C';
  position: absolute;
  top: -8px;
  left: 24px;
  font-size: 5rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.18;
  font-family: Georgia, serif;
  pointer-events: none;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}

.stars {
  display: flex;
  justify-content: center;
  gap: 3px;
  margin-bottom: 16px;
}

/* Stars visible by default; JS adds .stars-waiting to hide them until in-view */
.star {
  display: inline-block;
  font-size: 2rem;
  color: var(--accent);
}

.stars-waiting .star {
  transform: scale(0) rotate(-180deg);
  opacity: 0;
}

@keyframes starIn {
  from { transform: scale(0) rotate(-180deg); opacity: 0; }
  to   { transform: scale(1) rotate(0deg); opacity: 1; }
}

.review-card p {
  font-size: 0.95rem;
  line-height: 1.78;
  margin-bottom: 18px;
  color: var(--text);
  font-weight: 400;
}

.review-name {
  font-weight: 600;
  font-size: 0.87rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 6px;
}

.review-source {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.fb-icon {
  width: 14px;
  height: 14px;
  fill: #1877F2;
  flex-shrink: 0;
}

/* ── SERVICE AREA ── */
#area {
  background: var(--bg-white);
  padding: calc(var(--diag) + 80px) 24px 100px;
  clip-path: polygon(0 var(--diag), 100% 0, 100% 100%, 0 100%);
  margin-top: calc(-1 * var(--diag));
  position: relative;
  z-index: 4;
}

.area-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
  align-items: start;
}

.area-text p {
  font-size: 0.95rem;
  line-height: 1.78;
  margin-bottom: 24px;
  color: var(--text-muted);
  font-weight: 400;
}

.area-towns h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--text);
}

.area-towns ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}

.area-towns li {
  font-size: 0.92rem;
  color: var(--text);
  padding-left: 22px;
  position: relative;
  font-weight: 500;
}

.area-towns li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
}

/* ── CONTACT ── */
#contact {
  background: var(--accent);
  padding: calc(var(--diag) + 80px) 24px 100px;
  clip-path: polygon(0 0, 100% var(--diag), 100% 100%, 0 100%);
  margin-top: calc(-1 * var(--diag));
  position: relative;
  z-index: 3;
}

#contact .section-heading {
  color: #ffffff;
  text-align: center;
}

#contact .heading-rule {
  background: rgba(255,255,255,0.45);
  margin-bottom: 52px;
}

.contact-body {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.contact-intro {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 10px;
  font-weight: 400;
}

.contact-phone {
  display: block;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 14px;
  transition: opacity 0.2s;
}

.contact-phone:hover { opacity: 0.8; }

.contact-email {
  display: block;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 28px;
  font-weight: 500;
}

.contact-meta {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 2;
  font-weight: 400;
}

/* Contact form */
.contact-form {
  margin-top: 40px;
  text-align: left;
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 14px 18px;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 4px;
  background: rgba(255,255,255,0.12);
  color: #ffffff;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.55);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.18);
}

.contact-form textarea {
  resize: vertical;
  min-height: 130px;
  margin-bottom: 20px;
}

.contact-form .btn-white {
  width: 100%;
  text-align: center;
  cursor: pointer;
  font-size: 0.9rem;
}

/* ── FOOTER ── */
footer {
  background: var(--bg-dark);
  border-top: 4px solid var(--accent);
  padding: 64px 40px 32px;
  position: relative;
  z-index: 2;
}

.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
  margin-bottom: 16px;
}

.footer-brand img {
  max-width: 160px;
  height: auto;
  display: block;
}

.footer-col > p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  font-weight: 400;
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
  font-weight: 500;
}

.footer-col ul a:hover { color: var(--accent); }

.footer-col address {
  font-style: normal;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.85;
  font-weight: 400;
}

.footer-col address a {
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}

.footer-col address a:hover { color: var(--accent); }

.footer-bottom {
  max-width: 1100px;
  margin: 28px auto 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  font-weight: 400;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 16px;
  text-align: center;
}

/* ── MID-DESKTOP BREAKPOINT ── */
@media (min-width: 769px) and (max-width: 1100px) {
  nav { padding: 0 28px; }
  .nav-links { gap: 20px; }

  .hero-left {
    flex: 0 0 56%;
    padding: 100px 8% 80px 6%;
  }

  #hero h1 { font-size: clamp(2.2rem, 3.5vw, 3rem); }

  .cards { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

  .area-inner { gap: 32px; }

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

  .footer-grid .footer-col:first-child {
    grid-column: 1 / -1;
  }
}

/* ── RESPONSIVE (MOBILE) ── */
@media (max-width: 768px) {
  :root { --diag: 30px; }

  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  #hero {
    min-height: 100vh;
    min-height: 100dvh;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
  }

  .hero-overlay { display: block; }

  .hero-left {
    flex: none;
    background: transparent;
    padding: calc(var(--nav-height) + 48px) 24px 80px;
    width: 100%;
    text-align: center;
    align-items: center;
    z-index: 2;
  }

  .hero-left-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-tagline {
    max-width: 100%;
    font-size: 1rem;
  }

  .hero-right {
    position: absolute;
    inset: 0;
    flex: none;
    display: block;
    overflow: hidden;
    z-index: 0;
    clip-path: none;
    animation: none;
  }

  /* Restore diagonal sections on mobile with smaller --diag */
  #services {
    clip-path: polygon(0 var(--diag), 100% 0, 100% 100%, 0 100%);
    margin-top: calc(-1 * var(--diag));
    padding-top: calc(var(--diag) + 60px);
    padding-bottom: 72px;
  }

  #how-it-works {
    clip-path: polygon(0 0, 100% var(--diag), 100% 100%, 0 100%);
    margin-top: calc(-1 * var(--diag));
    padding-top: calc(var(--diag) + 60px);
    padding-bottom: 72px;
  }

  #gallery {
    clip-path: polygon(0 var(--diag), 100% 0, 100% 100%, 0 100%);
    margin-top: calc(-1 * var(--diag));
    padding-top: calc(var(--diag) + 60px);
    padding-bottom: 72px;
  }

  #reviews {
    clip-path: polygon(0 0, 100% var(--diag), 100% 100%, 0 100%);
    margin-top: calc(-1 * var(--diag));
    padding-top: calc(var(--diag) + 60px);
    padding-bottom: 72px;
  }

  #area {
    clip-path: polygon(0 var(--diag), 100% 0, 100% 100%, 0 100%);
    margin-top: calc(-1 * var(--diag));
    padding-top: calc(var(--diag) + 60px);
    padding-bottom: 72px;
  }

  #contact {
    clip-path: polygon(0 0, 100% var(--diag), 100% 100%, 0 100%);
    margin-top: calc(-1 * var(--diag));
    padding-top: calc(var(--diag) + 60px);
    padding-bottom: 72px;
  }

  .steps-track {
    flex-direction: column;
    align-items: center;
    gap: 0;
    overflow: visible;
    padding-bottom: 16px;
  }

  .step {
    width: 100%;
    max-width: 340px;
    padding: 0;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
  }

  .step-connector {
    flex: none;
    width: 3px;
    height: 16px;
    margin: 12px auto;
    transform-origin: top;
    transform: scaleY(0);
    overflow: visible;
    position: relative;
    z-index: 50;
    margin-bottom: 24px;
  }

  .step-connector.connector-visible {
    transform: scaleY(1);
  }

  .step-connector::after {
    right: auto;
    left: 50%;
    top: auto;
    bottom: -7px;
    transform: translateX(-50%);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 7px solid var(--accent);
    border-bottom: none;
  }

  .area-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

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

  .card:active {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(232, 104, 42, 0.25);
    border-bottom-color: var(--accent);
  }

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

  footer { padding: 48px 24px 28px; }
}

@media (max-width: 480px) {
  .trust-bar-inner { gap: 14px 24px; }
  .trust-item { font-size: 0.82rem; }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .fade-up { opacity: 1; transform: none; }
  .step { opacity: 1; transform: none; }
  .step-connector { transform: scaleX(1); }
  .step-connector::after { opacity: 1; }
  .hero-video { transition: none; }
}
