:root {
  --bg: #f7f4ef;
  --bg-soft: #fffaf1;
  --surface: #ffffff;
  --ink: #171411;
  --muted: #665f55;
  --muted-2: #8a8175;
  --primary: #f3b21b;
  --primary-dark: #c87900;
  --dark: #15110d;
  --dark-2: #262018;
  --line: rgba(23, 20, 17, .12);
  --shadow: 0 24px 60px rgba(38, 32, 24, .14);
  --radius: 24px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.container { width: min(var(--container), calc(100% - 32px)); margin-inline: auto; }
.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 9999;
  padding: 10px 14px;
  background: var(--primary);
  color: var(--dark);
  border-radius: 10px;
}
.skip-link:focus { left: 12px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(21, 17, 13, .92);
  backdrop-filter: blur(16px);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.main-nav { display: flex; align-items: center; gap: 24px; color: rgba(255,255,255,.82); font-size: 15px; }
.main-nav a { transition: color .2s ease; }
.main-nav a:hover { color: var(--primary); }
.header-call {
  display: inline-flex;
  align-items: center;
  padding: 0;
}
.header-call span { font-size: 12px; color: rgba(255,255,255,.72); }
.header-call strong { color: var(--primary); font-size: 17px; }
.nav-toggle { display: none; background: transparent; border: 0; padding: 10px; }
.nav-toggle span:not(.sr-only) { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; border-radius: 999px; }

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: radial-gradient(circle at 75% 20%, rgba(243,178,27,.28), transparent 28%), linear-gradient(135deg, #1d1812 0%, #15110d 55%, #312719 100%);
  color: #fff;
  padding: 88px 0 70px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .2;
  background-image: linear-gradient(120deg, rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(60deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 44px 44px;
}
.hero-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: center; }
.eyebrow, .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 13px;
}
.eyebrow::before, .section-kicker::before {
  content: "";
  width: 32px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
}
.hero h1 {
  margin: 18px 0 18px;
  font-size: clamp(32px, 5vw, 58px);
  line-height: .95;
  letter-spacing: -0.06em;
  max-width: 900px;
}
.lead { font-size: clamp(18px, 2vw, 22px); color: rgba(255,255,255,.82); max-width: 650px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0 24px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--primary); color: var(--dark); box-shadow: 0 18px 38px rgba(243,178,27,.3); }
.btn-primary:hover { background: #ffd063; }
.btn-secondary { color: #fff; border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.08); }
.btn-light { background: #fff; color: var(--dark); }
.btn.full { width: 100%; }
.trust-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
}
.trust-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 68px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  color: rgba(255,255,255,.92);
  font-size: 14px;
  line-height: 1.25;
  overflow-wrap: anywhere;
  background: linear-gradient(145deg, rgba(255,255,255,.14), rgba(255,255,255,.055));
  box-shadow: 0 14px 34px rgba(0, 0, 0, .16);
  backdrop-filter: blur(12px);
}
.trust-list li::before {
  content: "\2713";
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--primary);
  color: var(--dark);
  font-weight: 950;
  line-height: 1;
}
.hero-card {
  position: relative;
  justify-self: end;
  width: min(780px, 62vw);
  margin-right: -90px;
}
.hero-illustration {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  border-radius: 32px;
  background: rgba(255,255,255,.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .34);
}
.quick-call-card {
  position: absolute;
  right: 22px;
  bottom: -24px;
  width: min(320px, calc(100% - 44px));
  padding: 18px;
  border-radius: 22px;
  background: #fff;
  color: var(--dark);
  box-shadow: var(--shadow);
}
.quick-call-card span { display: block; color: var(--muted); font-size: 13px; }
.quick-call-card a { display: block; color: var(--primary-dark); font-size: 28px; font-weight: 950; line-height: 1.1; }
.quick-call-card small { color: var(--muted); }

.proof-strip { background: var(--surface); border-bottom: 1px solid var(--line); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; }
.proof-grid div { padding: 26px 18px; border-left: 1px solid var(--line); }
.proof-grid div:last-child { border-right: 1px solid var(--line); }
.proof-grid strong { display: block; font-size: 24px; line-height: 1.1; }
.proof-grid span { color: var(--muted); font-size: 14px; }

.section { padding: 92px 0; }
.split { display: grid; grid-template-columns: .88fr 1.12fr; gap: 58px; align-items: start; }
.split.reverse { grid-template-columns: 1fr 1.1fr; align-items: center; }
.section h2, .cta-band h2, .final-cta h2 { margin: 12px 0 0; font-size: clamp(32px, 4.2vw, 54px); line-height: 1.02; letter-spacing: -0.045em; }
.text-block { color: var(--muted); font-size: 18px; }
.section-head { max-width: 790px; margin-bottom: 34px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.compact { max-width: 760px; }
.section-head p { color: var(--muted); font-size: 18px; }

.services { background: var(--bg-soft); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card, .audience-card, .step-card, .price-card, .stat-card, blockquote {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 12px 34px rgba(38,32,24,.06);
}
.service-card.featured { background: var(--dark); color: #fff; border-color: transparent; }
.service-card .icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(243,178,27,.18);
  color: var(--primary-dark);
  font-weight: 950;
}
.service-card.featured .icon { color: var(--dark); background: var(--primary); }
.service-card h3, .audience-card h3, .step-card h3, .price-card h3 { margin: 18px 0 8px; font-size: 24px; line-height: 1.12; }
.service-card p, .audience-card p, .step-card p, .price-card li { color: var(--muted); }
.service-card.featured p { color: rgba(255,255,255,.72); }
.service-card a, .price-card a {
  display: inline-flex;
  margin-top: 16px;
  font-weight: 900;
  color: var(--primary-dark);
}
.service-card.featured a { color: var(--primary); }

.audience-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.audience-card {
  position: relative;
  overflow: hidden;
}
.audience-card::before {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(243,178,27,.18);
  color: var(--primary-dark);
  font-size: 25px;
  line-height: 1;
}
.audience-card:nth-child(1)::before { content: "\1F3E0"; }
.audience-card:nth-child(2)::before { content: "\1F9F9"; }
.audience-card:nth-child(3)::before { content: "\1F6E0"; }
.audience-card:nth-child(4)::before { content: "\1F69A"; }
.process { background: var(--dark); color: #fff; }
.process .section-head p, .process .step-card p { color: rgba(255,255,255,.7); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step-card { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); }
.step-card span {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--dark);
  font-weight: 950;
}

.cta-band { background: var(--primary); color: var(--dark); padding: 46px 0; }
.cta-band-inner { display: flex; justify-content: space-between; gap: 28px; align-items: center; }
.cta-band h2 { font-size: clamp(28px, 4vw, 44px); }
.cta-band p { margin: 8px 0 0; font-size: 18px; }

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.price-card { position: relative; overflow: hidden; }
.price-card.accent { border: 2px solid var(--primary); transform: translateY(-10px); }
.price { margin: 12px 0 18px; font-size: 38px; font-weight: 950; color: var(--primary-dark); letter-spacing: -0.05em; }
.price-card ul { padding-left: 18px; margin: 0; }
.price-note { color: var(--muted); margin-top: 18px; }

.trust { background: var(--bg-soft); }
.trust .split.reverse {
  grid-template-columns: 1fr;
  gap: 26px;
}
.trust .split.reverse > div:last-child {
  order: 1;
}
.trust-panel {
  order: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.stat-card {
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 6px;
  height: 100%;
  background: var(--primary);
}
.stat-card strong { display: block; font-size: 24px; line-height: 1.12; }
.stat-card span { color: var(--muted); }
.review-carousel {
  position: relative;
  margin-top: 26px;
  padding-inline: 58px;
}
.review-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 18px) / 2);
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.review-grid::-webkit-scrollbar {
  display: none;
}
.review-grid blockquote {
  scroll-snap-align: start;
}
.review-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  color: var(--dark);
  font-size: 32px;
  line-height: 1;
  box-shadow: 0 12px 30px rgba(38,32,24,.12);
  cursor: pointer;
  transform: translateY(-50%);
}
.review-arrow:hover,
.review-arrow:focus-visible {
  background: var(--primary);
  outline: none;
}
.review-arrow-prev {
  left: 0;
}
.review-arrow-next {
  right: 0;
}
blockquote {
  position: relative;
  min-height: 220px;
  margin: 0;
  padding: 28px;
  overflow: hidden;
}
blockquote::before {
  content: "\201C";
  position: absolute;
  right: 22px;
  top: 4px;
  color: rgba(243,178,27,.28);
  font-family: Georgia, serif;
  font-size: 116px;
  line-height: 1;
}
blockquote p {
  position: relative;
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.45;
  color: var(--ink);
}
blockquote cite {
  position: relative;
  display: block;
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-style: normal;
  font-size: 14px;
}
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-auto-rows: 170px;
  grid-auto-flow: dense;
  gap: 16px;
  margin-top: 28px;
}
.photo-slot {
  position: relative;
  min-height: 170px;
  padding: 0;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
  cursor: zoom-in;
  background:
    linear-gradient(135deg, rgba(23, 20, 17, .18), rgba(23, 20, 17, .03)),
    linear-gradient(145deg, #fff, #f0e8d8);
  box-shadow: 0 12px 34px rgba(38,32,24,.08);
  transition: transform .2s ease, box-shadow .2s ease;
}
.photo-slot:hover,
.photo-slot:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(38,32,24,.18);
  outline: none;
}
.photo-slot::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px dashed rgba(23, 20, 17, .18);
  border-radius: 12px;
}
.photo-slot span {
  position: absolute;
  left: 14px;
  bottom: 12px;
  color: rgba(23, 20, 17, .38);
  font-size: 28px;
  font-weight: 950;
  line-height: 1;
}
.photo-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.photo-slot:hover img,
.photo-slot:focus-visible img {
  transform: scale(1.045);
}
.photo-slot:has(img)::before,
.photo-slot:has(img) span {
  display: none;
}
.photo-slot.is-large {
  grid-column: span 2;
  grid-row: span 2;
}
.photo-slot.is-tall {
  grid-column: span 2;
}
.photo-slot.is-wide {
  grid-column: span 2;
}
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(10, 8, 6, .88);
}
.gallery-lightbox.is-open {
  display: flex;
}
.gallery-lightbox img {
  max-width: min(1120px, 100%);
  max-height: 86vh;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .55);
}
.gallery-lightbox button {
  position: absolute;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}
.gallery-lightbox button:hover,
.gallery-lightbox button:focus-visible {
  background: var(--primary);
  color: var(--dark);
  outline: none;
}
.gallery-close {
  top: 22px;
  right: 22px;
}
.gallery-prev {
  left: 22px;
}
.gallery-next {
  right: 22px;
}

.faq .section-head {
  margin-inline: auto;
  text-align: center;
}
.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin-inline: auto;
}
details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 20px;
}
summary { cursor: pointer; font-weight: 900; font-size: 18px; }
details p { color: var(--muted); margin-bottom: 0; }

.contact { background: var(--dark); color: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr .86fr; gap: 36px; align-items: start; }
.contact-copy p { color: rgba(255,255,255,.75); font-size: 18px; }
.contact-methods { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 28px; }
.contact-method {
  min-height: 92px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
}
.contact-method span { color: rgba(255,255,255,.62); }
.contact-method strong { color: #fff; font-size: 20px; }
.lead-form {
  background: #fff;
  color: var(--ink);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.lead-form h3 { margin: 0; font-size: 30px; letter-spacing: -0.03em; }
.lead-form p { color: var(--muted); margin-top: 4px; }
.lead-form label { display: block; font-weight: 900; margin: 14px 0 6px; }
.lead-form input, .lead-form textarea, .lead-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  background: #fff;
  color: var(--ink);
  outline: none;
}
.lead-form input:focus, .lead-form textarea:focus, .lead-form select:focus { border-color: var(--primary-dark); box-shadow: 0 0 0 4px rgba(243,178,27,.16); }
.lead-form small { display: block; margin-top: 12px; color: var(--muted); }
.form-status { min-height: 24px; font-weight: 800; }
.form-status.success { color: #0c7a43; }
.form-status.error { color: #b42318; }

.final-cta { background: var(--bg-soft); padding: 74px 0; }
.final-cta-inner {
  border-radius: 32px;
  padding: 46px;
  background: var(--dark);
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow);
}
.final-cta p { color: rgba(255,255,255,.72); font-size: 18px; max-width: 640px; margin: 14px auto 28px; }

.site-footer { background: #0f0d0a; color: rgba(255,255,255,.78); padding: 52px 0 88px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .75fr .75fr .9fr; gap: 28px; }
.site-footer h3 { color: #fff; margin: 0 0 14px; }
.site-footer a, .footer-link, .site-footer span { display: block; margin: 8px 0; color: rgba(255,255,255,.76); }
.footer-link { padding: 0; border: 0; background: transparent; cursor: pointer; text-align: left; }
.footer-link:hover, .site-footer a:hover { color: var(--primary); }
.footer-bottom { margin-top: 32px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; gap: 20px; }

.mobile-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 1000;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px;
  border-radius: 22px;
  background: rgba(21,17,13,.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}
.mobile-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 16px;
  background: var(--primary);
  color: var(--dark);
  font-weight: 950;
}
.mobile-cta a:last-child { background: #fff; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(0,0,0,.58);
}
.modal.is-open { display: flex; }
.modal-card {
  width: min(720px, 100%);
  max-height: 88vh;
  overflow: auto;
  background: #fff;
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow);
  position: relative;
}
.modal-card h2 { margin-top: 0; }
.modal-card p { color: var(--muted); }
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--bg);
  font-size: 26px;
  cursor: pointer;
}

@media (max-width: 980px) {
  .header-inner { min-height: 70px; }
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--dark);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 12px; }
  .header-call { display: none; }
  .hero-grid, .split, .split.reverse, .contact-grid { grid-template-columns: 1fr; }
  .hero-card { justify-self: stretch; width: 100%; margin-right: 0; }
  .trust-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hero { padding-top: 66px; }
  .proof-grid, .service-grid, .audience-grid, .steps, .price-grid, .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-panel { grid-template-columns: repeat(3, 1fr); }
  .photo-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 160px;
  }
  .photo-slot.is-large,
  .photo-slot.is-tall,
  .photo-slot.is-wide {
    grid-column: span 1;
    grid-row: span 1;
  }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 24px, var(--container)); }
  .hero { padding: 44px 0 48px; }
  .hero h1 { font-size: clamp(28px, 10vw, 46px); }
  .hero-actions { flex-direction: column; }
  .trust-list { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .quick-call-card { position: static; width: 100%; margin-top: 14px; }
  .proof-grid, .steps, .contact-methods, .trust-panel, .footer-grid { grid-template-columns: 1fr; }
  .review-carousel {
    margin-top: 18px;
    padding-inline: 0;
    padding-bottom: 58px;
  }
  .review-grid {
    grid-auto-columns: 100%;
    gap: 12px;
  }
  .review-arrow {
    top: auto;
    bottom: 0;
    transform: none;
  }
  .review-arrow-prev {
    left: calc(50% - 50px);
  }
  .review-arrow-next {
    right: calc(50% - 50px);
  }
  blockquote {
    min-height: 0;
    padding: 22px;
  }
  blockquote::before {
    right: 14px;
    top: 2px;
    font-size: 76px;
  }
  blockquote p {
    margin-top: 12px;
    font-size: 17px;
  }
  blockquote cite {
    margin-top: 14px;
    padding-top: 12px;
  }
  .photo-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
    gap: 10px;
    margin-top: 16px;
  }
  .photo-slot {
    min-height: 0;
    aspect-ratio: 1 / 1;
    border-radius: 14px;
  }
  .photo-slot.is-large,
  .photo-slot.is-wide {
    grid-column: span 1;
  }
  .photo-slot.is-large,
  .photo-slot.is-tall,
  .photo-slot.is-wide {
    grid-row: span 1;
  }
  .gallery-lightbox { padding: 14px; }
  .gallery-lightbox img {
    max-height: 78vh;
    border-radius: 14px;
  }
  .gallery-lightbox button {
    width: 42px;
    height: 42px;
  }
  .gallery-close {
    top: 12px;
    right: 12px;
  }
  .gallery-prev {
    left: 10px;
  }
  .gallery-next {
    right: 10px;
  }
  .service-grid, .audience-grid, .price-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid div, .proof-grid div:last-child { border-inline: 0; border-top: 1px solid var(--line); }
  .section { padding: 64px 0; }
  .price-card.accent { transform: none; }
  .final-cta-inner { padding: 30px 20px; }
  .footer-bottom { flex-direction: column; }
  .mobile-cta { display: grid; }
  .site-footer { padding-bottom: 110px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
