/* =============================================
   AUTOVERA – PREMIUM AUTO DETAILING
   ============================================= */

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

:root {
  --orange: #F97316;
  --orange-dark: #d9610e;
  --orange-glow: rgba(249,115,22,0.2);
  --bg: #0a0a0a;
  --bg-2: #111111;
  --bg-3: #161616;
  --bg-card: #141414;
  --border: rgba(255,255,255,0.07);
  --text: #ffffff;
  --text-2: rgba(255,255,255,0.55);
  --text-3: rgba(255,255,255,0.3);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 8px;
  --radius-lg: 16px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

/* ── Typography ── */
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 800; line-height: 1.05; letter-spacing: -0.035em; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.8rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.025em; }
h3 { font-size: 1.25rem; font-weight: 700; letter-spacing: -0.02em; }
h4 { font-size: 1rem; font-weight: 700; letter-spacing: -0.01em; }
h5 { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-3); margin-bottom: 20px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 14px;
}
.eyebrow::before {
  content: ''; display: block; width: 20px; height: 1.5px; background: var(--orange);
}
.text-orange { color: var(--orange); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 26px; font-size: 0.83rem; font-weight: 600; letter-spacing: 0.03em;
  border-radius: 40px; border: none; cursor: pointer; text-decoration: none;
  transition: all 0.22s ease;
}
.btn--orange { background: var(--orange); color: #fff; }
.btn--orange:hover {
  background: var(--orange-dark);
  box-shadow: 0 6px 24px var(--orange-glow);
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent; color: var(--text);
  border: 1px solid rgba(255,255,255,0.18);
}
.btn--ghost:hover { border-color: var(--orange); color: var(--orange); }
.btn--sm { padding: 9px 20px; font-size: 0.78rem; }
.btn--block { width: 100%; justify-content: center; border-radius: var(--radius); }

/* ── Image placeholders ── */
.img-placeholder {
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: var(--radius);
}
.img-placeholder--hero {
  position: absolute; inset: 0; background: #1a1a1a; color: #333; border-radius: 0;
}
.img-placeholder--service {
  width: 100%; height: 200px; background: #1e1e1e; color: #333;
}
.img-placeholder--why {
  width: 100%; height: 100%; min-height: 520px; background: #1a1a1a; color: #333; border-radius: var(--radius-lg);
}
.img-placeholder--cta {
  position: absolute; inset: 0; background: #141414; color: #222; border-radius: 0;
}
.img-placeholder--blog {
  width: 100%; height: 200px; background: #1c1c1c; color: #333;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.img-placeholder {
  overflow: hidden;
  position: relative;
}

.img-placeholder img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.img-placeholder--hero img {
  object-position: center right;
}

.img-placeholder--service img,
.img-placeholder--blog img,
.img-placeholder--why img,
.img-placeholder--cta img {
  filter: saturate(1.06) contrast(1.04);
}

.accordion__item:hover .img-placeholder--service img,
.blog-card:hover .img-placeholder--blog img,
.why__right:hover .img-placeholder--why img {
  transform: scale(1.045);
}

/* ── Avatar ── */
.avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--orange); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem; font-weight: 800; letter-spacing: 0.04em;
  flex-shrink: 0;
}

/* ── Scroll animations ── */
.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* =============================================
   HEADER
   ============================================= */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,10,10,0.85); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.header.solid { background: var(--bg); }

.header__inner {
  display: flex; align-items: center; gap: 32px;
  max-width: 1280px; margin: 0 auto; padding: 0 40px; height: 66px;
}

.logo {
  display: flex; align-items: center; gap: 8px;
  font-size: 1.1rem; font-weight: 800; letter-spacing: -0.03em;
  color: var(--text); text-decoration: none; flex-shrink: 0;
}
.logo__icon { width: 28px; height: 18px; }

.header__nav {
  display: flex; gap: 28px; margin-left: auto;
}
.header__nav a {
  font-size: 0.8rem; font-weight: 500; color: var(--text-2);
  text-decoration: none; transition: color 0.2s; letter-spacing: 0.01em;
}
.header__nav a:hover { color: var(--text); }

.header__actions { display: flex; align-items: center; gap: 16px; }

.hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px; background: none; border: none; cursor: pointer; padding: 6px;
}
.hamburger span {
  display: block; height: 1.5px; background: var(--text); border-radius: 2px; transition: all 0.3s;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 120px 40px 80px;
  max-width: 100%; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(105deg, rgba(10,10,10,0.92) 45%, rgba(10,10,10,0.5) 100%);
}
.hero__content {
  position: relative; z-index: 2;
  max-width: 620px; margin-left: calc((100vw - 1280px) / 2);
  padding-left: 40px;
}
@media (max-width: 1280px) { .hero__content { margin-left: 0; } }

.hero h1 { color: var(--text); margin-bottom: 20px; }
.hero__desc {
  color: var(--text-2); font-size: 0.95rem; line-height: 1.75;
  max-width: 480px; margin-bottom: 36px;
}
.hero__btns { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__indicator {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; gap: 8px; align-items: center;
}
.hero__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.2); transition: all 0.3s;
}
.hero__dot.active { background: var(--orange); width: 24px; border-radius: 3px; }

/* =============================================
   STATS
   ============================================= */
.stats {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats__inner {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr;
  max-width: 1280px; margin: 0 auto; padding: 0 40px;
}
.stat-item { padding: 52px 40px; }
.stat-item__num {
  font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 800;
  letter-spacing: -0.04em; color: var(--text); line-height: 1; margin-bottom: 4px;
}
.stat-item__label {
  font-size: 0.8rem; font-weight: 700; color: var(--orange);
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px;
}
.stat-item__desc { font-size: 0.82rem; color: var(--text-2); line-height: 1.6; max-width: 220px; }
.stat-item__sep { width: 1px; background: var(--border); margin: 40px 0; }

/* =============================================
   SERVICES
   ============================================= */
.services {
  padding: 100px 0;
  max-width: 1280px; margin: 0 auto; padding-left: 40px; padding-right: 40px;
}
.services__header { margin-bottom: 48px; }
.services__header h2 { margin-top: 4px; }

.accordion { border-top: 1px solid var(--border); }

.accordion__item {
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.accordion__trigger {
  width: 100%; display: flex; align-items: center; gap: 24px;
  padding: 24px 0; background: none; border: none; cursor: pointer;
  color: var(--text); text-align: left;
  transition: all 0.2s;
}
.accordion__trigger:hover { padding-left: 8px; }
.accordion__trigger:hover .accordion__title { color: var(--orange); }

.accordion__num {
  font-size: 0.75rem; font-weight: 700; color: var(--text-3);
  letter-spacing: 0.08em; flex-shrink: 0; width: 28px;
}
.accordion__title {
  font-size: 1.1rem; font-weight: 700; flex: 1;
  letter-spacing: -0.01em; transition: color 0.2s;
}
.accordion__item.open .accordion__title { color: var(--orange); }
.accordion__icon {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--text-2); transition: all 0.3s;
}
.accordion__item.open .accordion__icon {
  background: var(--orange); border-color: var(--orange); color: #fff;
  transform: rotate(45deg);
}
.accordion__icon svg { width: 14px; height: 14px; }

.accordion__body {
  display: none; overflow: hidden;
}
.accordion__item.open .accordion__body { display: block; }

.accordion__inner {
  display: grid; grid-template-columns: 320px 1fr; gap: 32px;
  padding: 0 0 32px 52px;
  animation: slideDown 0.3s ease;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.accordion__text { display: flex; flex-direction: column; justify-content: center; gap: 20px; }
.accordion__text p { font-size: 0.9rem; color: var(--text-2); line-height: 1.72; }

/* =============================================
   WHY US
   ============================================= */
.why {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 0;
}
.why__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
  max-width: 1280px; margin: 0 auto; padding: 0 40px;
}
.why__left h2 { margin: 4px 0 36px; }
.why__cards { display: flex; flex-direction: column; gap: 16px; }

.why-card {
  display: flex; align-items: flex-start; gap: 20px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px 28px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.why-card:hover {
  border-color: rgba(249,115,22,0.25);
  box-shadow: 0 0 0 1px rgba(249,115,22,0.08), 0 8px 32px rgba(249,115,22,0.07);
}
.why-card__icon { width: 36px; height: 36px; flex-shrink: 0; margin-top: 2px; }
.why-card__icon svg { width: 100%; height: 100%; }
.why-card h4 { margin-bottom: 6px; font-size: 0.95rem; }
.why-card p { font-size: 0.82rem; color: var(--text-2); line-height: 1.65; }

.why__right { position: sticky; top: 80px; border-radius: var(--radius-lg); overflow: hidden; }

/* =============================================
   PROCESS
   ============================================= */
.process {
  padding: 100px 0;
  background: var(--bg);
}
.process__inner {
  max-width: 1280px; margin: 0 auto; padding: 0 40px;
}
.process__header { max-width: 560px; margin-bottom: 60px; }
.process__header h2 { margin: 4px 0 14px; }
.process__sub { color: var(--text-2); font-size: 0.9rem; }

.process__steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-bottom: 48px;
}
.process-step {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 28px;
  position: relative; overflow: hidden;
  transition: border-color 0.25s;
}
.process-step:hover { border-color: rgba(249,115,22,0.3); }
.process-step__num {
  font-size: 2.4rem; font-weight: 800; letter-spacing: -0.06em;
  color: rgba(255,255,255,0.06); line-height: 1; margin-bottom: 16px;
}
.process-step__line {
  width: 32px; height: 2px; background: var(--orange); border-radius: 2px;
  margin-bottom: 16px;
}
.process-step h4 { font-size: 0.95rem; margin-bottom: 12px; }
.process-step p { font-size: 0.82rem; color: var(--text-2); line-height: 1.65; }
.process__cta { text-align: center; }

/* =============================================
   REVIEWS
   ============================================= */
.reviews {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 100px 0;
  overflow: hidden;
}
.reviews__inner { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.reviews__header { max-width: 580px; margin-bottom: 52px; }
.reviews__header h2 { margin: 4px 0 14px; }
.reviews__header p { color: var(--text-2); font-size: 0.9rem; }

.reviews__track-wrapper { overflow: hidden; margin: 0 -40px; padding: 0 40px; }
.reviews__track {
  display: flex; gap: 20px;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.review-card {
  flex-shrink: 0; width: calc(33.333% - 14px);
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 28px;
  transition: border-color 0.25s;
}
.review-card:hover { border-color: rgba(249,115,22,0.25); }
.review-card__stars { color: var(--orange); letter-spacing: 4px; font-size: 0.9rem; margin-bottom: 16px; }
.review-card p {
  font-size: 0.85rem; color: var(--text-2); line-height: 1.72;
  font-style: italic; margin-bottom: 24px;
}
.review-card__author { display: flex; align-items: center; gap: 12px; }
.review-card__author strong { display: block; font-size: 0.85rem; color: var(--text); font-weight: 700; }
.review-card__author span { font-size: 0.72rem; color: var(--text-3); }

.reviews__controls {
  display: flex; align-items: center; gap: 16px; margin-top: 36px;
}
.arrow-btn {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--border); background: none; color: var(--text);
  font-size: 1.2rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.arrow-btn:hover { background: var(--orange); border-color: var(--orange); }
.reviews__dots { display: flex; gap: 8px; }
.dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--border); cursor: pointer; transition: all 0.2s;
}
.dot.active { background: var(--orange); width: 20px; border-radius: 3px; }

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  position: relative; min-height: 540px;
  display: flex; align-items: center; overflow: hidden;
}
.cta-section__bg { position: absolute; inset: 0; }
.cta-section__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right, rgba(10,10,10,0.97) 30%, rgba(10,10,10,0.7) 100%);
}
.cta-section__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 200px 1fr; gap: 80px; align-items: center;
  max-width: 1280px; margin: 0 auto; padding: 80px 40px;
  width: 100%;
}
.cta-section__stats { display: flex; flex-direction: column; gap: 32px; }
.cta-stat__num {
  font-size: 1.8rem; font-weight: 800; letter-spacing: -0.04em; line-height: 1;
  color: var(--text); margin-bottom: 2px;
}
.cta-stat__label { font-size: 0.72rem; font-weight: 700; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.1em; }

.cta-section__card { max-width: 520px; }
.cta-section__card h2 { color: var(--text); margin-bottom: 16px; }
.cta-section__card p { color: var(--text-2); font-size: 0.95rem; margin-bottom: 32px; line-height: 1.7; }

/* =============================================
   BLOG
   ============================================= */
.blog {
  padding: 100px 0; background: var(--bg);
  border-top: 1px solid var(--border);
}
.blog__inner { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.blog__header { max-width: 560px; margin-bottom: 52px; }
.blog__header h2 { margin: 4px 0 14px; }
.blog__header p { color: var(--text-2); font-size: 0.9rem; }

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

.blog-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; transition: border-color 0.25s, transform 0.25s;
}
.blog-card:hover { border-color: rgba(249,115,22,0.3); transform: translateY(-3px); }

.blog-card__body { padding: 24px; }
.blog-card__meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; flex-wrap: wrap; }
.blog-card__cat {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--orange); background: rgba(249,115,22,0.1); padding: 3px 10px; border-radius: 20px;
}
.blog-card__date { font-size: 0.68rem; color: var(--text-3); }
.blog-card__body h4 { font-size: 0.95rem; margin-bottom: 16px; line-height: 1.45; color: var(--text); }
.blog-card__link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.78rem; font-weight: 700; color: var(--orange); text-decoration: none;
  transition: gap 0.2s;
}
.blog-card__link:hover { gap: 10px; }
.blog-card__link svg { width: 15px; height: 15px; }

/* =============================================
   CONTACT
   ============================================= */
.contact {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 100px 0;
}
.contact__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
  max-width: 1280px; margin: 0 auto; padding: 0 40px;
}
.contact__left .logo { margin-bottom: 28px; }
.contact__left h2 { color: var(--text); margin-bottom: 16px; }
.contact__left > p { color: var(--text-2); font-size: 0.9rem; line-height: 1.7; margin-bottom: 32px; }
.contact__btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.contact__info { display: flex; flex-direction: column; gap: 14px; }
.contact__info-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.82rem; color: var(--text-2);
}
.contact__info-item svg { width: 18px; height: 18px; flex-shrink: 0; }

/* Form */
.contact-form {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px;
}
.contact-form h3 { font-size: 1.1rem; margin-bottom: 28px; color: var(--text); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.form-group label { font-size: 0.75rem; font-weight: 600; color: var(--text-2); letter-spacing: 0.03em; }

input, select, textarea {
  width: 100%; background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--text); font-family: var(--font); font-size: 0.85rem;
  padding: 12px 16px; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}
input::placeholder, textarea::placeholder { color: var(--text-3); }
input:focus, select:focus, textarea:focus {
  border-color: var(--orange); box-shadow: 0 0 0 3px var(--orange-glow);
}
select { cursor: pointer; }
select option { background: var(--bg-3); color: var(--text); }
textarea { resize: vertical; min-height: 100px; }

.form-success, .form-error {
  display: none; margin-top: 14px;
  padding: 12px 16px; border-radius: var(--radius);
  font-size: 0.82rem; font-weight: 600;
}
.form-success { background: rgba(34,197,94,0.12); color: #4ade80; border: 1px solid rgba(34,197,94,0.2); }
.form-error   { background: rgba(239,68,68,0.1);  color: #f87171; border: 1px solid rgba(239,68,68,0.2); }
.form-success.show, .form-error.show { display: block; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #060606;
  border-top: 1px solid var(--border);
  padding: 72px 0 0;
}
.footer__top {
  display: grid; grid-template-columns: 280px repeat(3, 1fr); gap: 60px;
  max-width: 1280px; margin: 0 auto; padding: 0 40px 60px;
  border-bottom: 1px solid var(--border);
}
.footer__col--brand .logo { margin-bottom: 18px; }
.footer__col--brand > p { font-size: 0.8rem; color: var(--text-2); line-height: 1.7; margin-bottom: 24px; }
.footer__socials { display: flex; gap: 10px; }
.social {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem; font-weight: 700; color: var(--text-2); text-decoration: none;
  text-transform: lowercase; transition: all 0.2s;
}
.social:hover { background: var(--orange); border-color: var(--orange); color: #fff; }

.footer__col ul { list-style: none; }
.footer__col ul li { margin-bottom: 12px; font-size: 0.8rem; color: var(--text-2); line-height: 1.5; }
.footer__col ul a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer__col ul a:hover { color: var(--orange); }

.footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1280px; margin: 0 auto; padding: 22px 40px;
  font-size: 0.72rem; color: var(--text-3); gap: 20px;
}
.footer__bottom-links { display: flex; gap: 24px; }
.footer__bottom-links a { color: rgba(255,255,255,0.2); text-decoration: none; transition: color 0.2s; }
.footer__bottom-links a:hover { color: var(--text); }

.footer__credit {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.footer__credit::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.85;
}
.footer__credit strong {
  color: rgba(255,255,255,0.58);
  font-weight: 700;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  .stats__inner { grid-template-columns: 1fr; }
  .stat-item__sep { display: none; }
  .stat-item { padding: 28px 40px; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }

  .review-card { width: calc(50% - 10px); }
  .process__steps { grid-template-columns: repeat(2, 1fr); }

  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .header__nav { display: none; }
  .hamburger { display: flex; }
  .header__nav.open {
    display: flex; flex-direction: column; gap: 24px;
    position: fixed; top: 66px; left: 0; right: 0; bottom: 0;
    background: var(--bg); padding: 40px 32px; z-index: 99;
    border-top: 1px solid var(--border);
  }
  .header__nav.open a { font-size: 1.2rem; font-weight: 700; color: var(--text); }

  .hero { padding: 100px 24px 80px; }
  .hero__content { padding-left: 0; }

  .why__inner { grid-template-columns: 1fr; }
  .why__right { display: none; }

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

  .cta-section__inner { grid-template-columns: 1fr; gap: 40px; }
  .cta-section__stats { flex-direction: row; gap: 40px; }

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

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

  .review-card { width: calc(80vw - 40px); }
}

@media (max-width: 640px) {
  .header__inner { padding: 0 20px; }
  .hero { padding: 90px 20px 72px; }

  .stats__inner { padding: 0 20px; }
  .stat-item { padding: 24px 0; }

  .services { padding: 72px 20px; }
  .accordion__inner { padding-left: 0; }

  .why { padding: 72px 0; }
  .why__inner { padding: 0 20px; }

  .process { padding: 72px 0; }
  .process__inner { padding: 0 20px; }
  .process__steps { grid-template-columns: 1fr; }

  .reviews { padding: 72px 0; }
  .reviews__inner { padding: 0 20px; }
  .reviews__track-wrapper { margin: 0 -20px; padding: 0 20px; }

  .cta-section__inner { padding: 60px 20px; }
  .cta-section__stats { gap: 24px; flex-wrap: wrap; }

  .blog { padding: 72px 0; }
  .blog__inner { padding: 0 20px; }
  .blog__grid { grid-template-columns: 1fr; }

  .contact { padding: 72px 0; }
  .contact__inner { padding: 0 20px; }
  .contact-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  .footer__top { grid-template-columns: 1fr; padding: 0 20px 40px; }
  .footer__bottom { flex-direction: column; text-align: center; padding: 20px; gap: 10px; }
}
.accordion__item:nth-child(2) .img-placeholder--service img { object-position: center 42%; }
.accordion__item:nth-child(3) .img-placeholder--service img { object-position: center 58%; }
.accordion__item:nth-child(4) .img-placeholder--service img { object-position: center 48%; }
.accordion__item:nth-child(5) .img-placeholder--service img { object-position: center 50%; }
.accordion__item:nth-child(6) .img-placeholder--service img { object-position: center 52%; }
.accordion__item:nth-child(7) .img-placeholder--service img { object-position: center 50%; }
.accordion__item:nth-child(8) .img-placeholder--service img { object-position: center 50%; }
.blog-card:nth-child(1) .img-placeholder--blog img { object-position: center 48%; }
.blog-card:nth-child(2) .img-placeholder--blog img { object-position: center 55%; }
.blog-card:nth-child(3) .img-placeholder--blog img { object-position: center 45%; }

/* Real contact form helpers */
.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}
