:root {
  --ac-ink: #171717;
  --ac-ink-soft: #3f3f3f;
  --ac-muted: #717171;
  --ac-line: #e8e8e6;
  --ac-soft: #f7f7f5;
  --ac-soft-2: #eeeeeb;
  --ac-white: #ffffff;
  --ac-green: #25d366;
  --ac-green-dark: #169f53;
  --ac-blue: #1d5d9e;
  --ac-danger: #e24b4a;
  --ac-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  --ac-radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ac-ink);
  background: var(--ac-white);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img,
video,
svg {
  display: block;
}

img,
video {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 999;
  transform: translateY(-160%);
  background: var(--ac-ink);
  color: var(--ac-white);
  padding: 10px 14px;
  border-radius: 6px;
  text-decoration: none;
  transition: transform 0.15s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(100% - 48px, 1200px);
  margin: 0 auto;
}

.section {
  padding: 84px 0;
}

.section-light {
  background: var(--ac-soft);
}

.section-label {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--ac-blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  color: var(--ac-ink);
  font-size: clamp(26px, 3.8vw, 42px);
  line-height: 1.16;
}

.section-sub,
.section-desc {
  max-width: 660px;
  margin: 14px auto 0;
  color: var(--ac-muted);
  font-size: 16px;
}

.section-header {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.btn-primary-lg,
.btn-ghost-lg,
.btn-header-cta,
.mobile-call-btn,
.mobile-wa-btn,
.form-submit,
.btn-call-now,
.sticky-btn,
.service-link {
  -webkit-tap-highlight-color: transparent;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ac-white);
  border-bottom: 1px solid #f0f0ee;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.header-logo img {
  display: block;
  width: 168px;
  height: 50px;
  object-fit: cover;
  object-position: center 48%;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.desktop-nav a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 6px;
  color: #444444;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  background: #f5f5f3;
  color: #111111;
}

.desktop-nav a.active {
  font-weight: 700;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header-tel {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
  color: #333333;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.header-tel:hover {
  color: #111111;
}

.btn-header-cta {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 8px;
  background: var(--ac-ink);
  color: var(--ac-white);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s ease, transform 0.1s ease;
}

.btn-header-cta:hover {
  background: #333333;
  transform: translateY(-1px);
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
  transition: background 0.15s ease;
}

.burger:hover {
  background: #f5f5f3;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: #333333;
  transform-origin: center;
  transition: transform 0.3s ease, opacity 0.2s ease;
}

.burger::after {
  content: "";
}

.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  max-height: calc(100vh - 68px);
  flex-direction: column;
  overflow-y: auto;
  border-top: 1px solid #f0f0ee;
  background: var(--ac-white);
  padding: 8px 0 16px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  padding: 0 16px;
}

.mobile-menu nav a {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 13px 8px;
  border-bottom: 1px solid #f5f5f3;
  color: #333333;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.15s ease, background 0.15s ease;
}

.mobile-menu nav a:hover {
  background: #f9f9f8;
  color: #111111;
}

.mobile-menu nav a:last-child {
  border-bottom: 0;
}

.mobile-cta-link {
  color: var(--ac-ink) !important;
  font-weight: 800 !important;
}

.mobile-menu-actions {
  display: flex;
  gap: 10px;
  padding: 12px 16px 4px;
}

.mobile-call-btn,
.mobile-wa-btn {
  min-height: 48px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 13px 8px;
  border-radius: 8px;
  color: var(--ac-white);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: opacity 0.15s ease;
}

.mobile-call-btn {
  background: var(--ac-ink);
}

.mobile-wa-btn {
  background: var(--ac-green);
}

.mobile-call-btn:hover,
.mobile-wa-btn:hover {
  opacity: 0.9;
}

@media (max-width: 768px) {
  .desktop-nav,
  .header-tel,
  .btn-header-cta {
    display: none;
  }

  .burger {
    display: flex;
  }

  .header-inner {
    position: relative;
    padding: 0 16px;
    gap: 0;
    justify-content: space-between;
  }

  .burger {
    display: flex !important;
    position: static;
    z-index: 150;
    width: 48px;
    height: 48px;
    border: 0;
    background: #111111;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
  }

  .burger span {
    background: #ffffff;
  }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 85vh;
  min-height: 85svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #101010;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.68) 0%,
    rgba(0, 0, 0, 0.8) 58%,
    rgba(0, 0, 0, 0.9) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 48px, 1200px);
  margin: 0 auto;
  padding: 86px 0 104px;
  color: var(--ac-white);
}

.hero-badge {
  display: inline-block;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-title {
  max-width: 720px;
  margin: 0 0 16px;
  color: var(--ac-white);
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.1;
}

.mobile-break {
  display: none;
}

.hero-sub {
  max-width: 520px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.6;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  color: var(--ac-white);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  backdrop-filter: blur(4px);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-primary-lg,
.btn-ghost-lg {
  min-height: 52px;
  min-width: 172px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: 8px;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
}

.btn-primary-lg {
  background: var(--ac-white);
  color: var(--ac-ink);
  font-weight: 800;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.btn-primary-lg:hover {
  background: #f0f0ee;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.btn-ghost-lg {
  border: 2px solid rgba(255, 255, 255, 0.62);
  color: var(--ac-white);
  font-weight: 700;
  backdrop-filter: blur(4px);
}

.btn-ghost-lg:hover {
  border-color: var(--ac-white);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

@media (max-width: 640px) {
  .hero {
    min-height: 92svh;
  }

  .hero-content {
    width: min(100% - 40px, 1200px);
    padding: 60px 0 118px;
  }

  .hero-title {
    max-width: 100%;
    font-size: 26px;
    line-height: 1.18;
    overflow-wrap: anywhere;
  }

  .desktop-break {
    display: none;
  }

  .mobile-break {
    display: block;
  }

  .hero-sub {
    width: 100%;
    max-width: 100%;
    font-size: 15px;
  }

  .hero-cta {
    flex-direction: column;
    gap: 10px;
  }

  .btn-primary-lg,
  .btn-ghost-lg {
    width: 100%;
  }
}

/* ============================================================
   TRUST STRIP, SERVICES, WHY, STATS
   ============================================================ */
.features-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.features-strip-item {
  min-width: 140px;
  max-width: 240px;
  flex: 1 1 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid var(--ac-line);
  border-radius: var(--ac-radius);
  background: var(--ac-white);
  color: var(--ac-ink-soft);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.features-strip-item svg {
  flex-shrink: 0;
  color: var(--ac-blue);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--ac-line);
  border-radius: var(--ac-radius);
  background: var(--ac-white);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
  transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
  border-color: #d1d1ce;
  box-shadow: var(--ac-shadow);
  transform: translateY(-2px);
}

.service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: var(--ac-radius);
  background: #eef5fb;
  color: var(--ac-blue);
}

.service-card h3 {
  margin: 0 0 10px;
  color: var(--ac-ink);
  font-size: 19px;
  line-height: 1.25;
}

.service-card p {
  margin: 0 0 18px;
  color: var(--ac-muted);
  font-size: 14px;
}

.service-features {
  display: grid;
  gap: 8px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.service-features li {
  display: flex;
  gap: 8px;
  color: var(--ac-ink-soft);
  font-size: 13px;
}

.service-features svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--ac-green-dark);
}

.service-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--ac-ink);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.service-link:hover {
  color: var(--ac-blue);
}

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.why-layout-reverse {
  direction: rtl;
}

.why-layout-reverse > * {
  direction: ltr;
}

.why-image {
  position: relative;
}

.why-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--ac-radius);
  box-shadow: var(--ac-shadow);
}

.why-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 12px 16px;
  border-radius: var(--ac-radius);
  background: var(--ac-white);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
}

.why-badge strong,
.stat-number {
  display: block;
  color: var(--ac-ink);
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.why-badge span {
  color: var(--ac-muted);
  font-size: 13px;
  font-weight: 700;
}

.why-content h2 {
  margin: 0 0 16px;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.16;
}

.why-content p {
  margin: 0 0 24px;
  color: var(--ac-muted);
  font-size: 16px;
}

.why-list {
  display: grid;
  gap: 14px;
}

.why-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.why-item-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--ac-radius);
  background: #e7f8ee;
  color: var(--ac-green-dark);
}

.why-item strong {
  display: block;
  margin-bottom: 2px;
  font-size: 15px;
}

.why-item span {
  display: block;
  color: var(--ac-muted);
  font-size: 14px;
}

.stats-section {
  padding: 56px 0;
  background: var(--ac-ink);
  color: var(--ac-white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}

.stat-item {
  min-width: 0;
  padding: 22px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--ac-radius);
  background: rgba(255, 255, 255, 0.06);
}

.stat-number {
  color: var(--ac-white);
}

.stat-label {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .why-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 580px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   REVIEWS AND REFERENCES
   ============================================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--ac-line);
  border-radius: var(--ac-radius);
  background: var(--ac-white);
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
  color: #f3a712;
}

.review-text {
  margin: 0 0 18px;
  color: var(--ac-ink-soft);
  font-size: 15px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--ac-ink);
  color: var(--ac-white);
  font-size: 13px;
  font-weight: 900;
}

.review-author strong,
.review-author span {
  display: block;
}

.review-author span {
  color: var(--ac-muted);
  font-size: 13px;
}

.section-refs {
  padding: 84px 0;
  background: var(--ac-soft);
}

.refs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.ref-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 16px;
  border: 1px solid #ebebea;
  border-radius: var(--ac-radius);
  background: #fafaf9;
  text-align: center;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.ref-card:hover {
  border-color: #d0d0ce;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.ref-initials {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--ac-ink);
  color: var(--ac-white);
  font-size: 15px;
  font-weight: 900;
}

.ref-name {
  color: #222222;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.ref-type {
  padding: 2px 8px;
  border-radius: 999px;
  background: #f0f0ee;
  color: #777777;
  font-size: 11px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .refs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .refs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 580px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 320px) {
  .refs-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   CONTACT
   ============================================================ */
.section-contact {
  padding: 84px 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
  margin-top: 40px;
}

.contact-info-title {
  margin: 0 0 8px;
  color: #111111;
  font-size: 20px;
  font-weight: 800;
}

.contact-info-sub {
  margin: 0 0 24px;
  color: #777777;
  font-size: 14px;
  line-height: 1.6;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 28px;
}

.contact-item {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--ac-radius);
  text-decoration: none;
  transition: background 0.15s ease;
}

a.contact-item:hover {
  background: #f5f5f3;
}

.contact-item.no-link {
  cursor: default;
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--ac-radius);
  background: #f0f0ee;
  color: #333333;
}

.wa-icon {
  background: #e7f8ee;
  color: var(--ac-green);
}

.contact-item-label {
  margin-bottom: 2px;
  color: #888888;
  font-size: 12px;
}

.contact-item-val {
  color: #111111;
  font-size: 15px;
  font-weight: 800;
}

.working-hours {
  padding: 16px 18px;
  border: 1px solid #ebebea;
  border-radius: var(--ac-radius);
  background: #f9f9f8;
}

.wh-title {
  margin-bottom: 10px;
  color: #777777;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.wh-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 4px 0;
  border-bottom: 1px solid #ebebea;
  color: #444444;
  font-size: 14px;
}

.wh-row:last-child {
  border-bottom: 0;
}

.contact-form-wrap {
  padding: 28px;
  border: 1px solid #ebebea;
  border-radius: var(--ac-radius);
  background: var(--ac-white);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

.form-title {
  margin: 0 0 6px;
  color: #111111;
  font-size: 18px;
  font-weight: 800;
}

.form-sub {
  margin: 0 0 20px;
  color: #777777;
  font-size: 13px;
}

.form-field {
  margin-bottom: 14px;
}

.form-label {
  display: block;
  margin-bottom: 6px;
  color: #444444;
  font-size: 13px;
  font-weight: 700;
}

.req {
  color: var(--ac-danger);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 14px;
  border: 1.5px solid #e0e0de;
  border-radius: 8px;
  outline: 0;
  appearance: none;
  background: #fafaf9;
  color: #111111;
  font-size: 15px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: #1a1a1a;
  background: var(--ac-white);
  box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.08);
}

.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: var(--ac-danger);
  box-shadow: 0 0 0 3px rgba(226, 75, 74, 0.08);
}

.form-textarea {
  min-height: 90px;
  resize: vertical;
}

.form-select {
  padding-right: 36px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field-error {
  display: block;
  min-height: 16px;
  margin-top: 4px;
  color: var(--ac-danger);
  font-size: 12px;
}

.form-submit {
  width: 100%;
  min-height: 52px;
  margin-top: 4px;
  padding: 15px 20px;
  border: 0;
  border-radius: 8px;
  background: var(--ac-ink);
  color: var(--ac-white);
  cursor: pointer;
  font-size: 15px;
  font-weight: 900;
  transition: background 0.15s ease, transform 0.1s ease;
}

.form-submit:hover:not(:disabled) {
  background: #333333;
  transform: translateY(-1px);
}

.form-submit:disabled {
  cursor: not-allowed;
  opacity: 0.6;
  transform: none;
}

.form-error-banner {
  margin-bottom: 14px;
  padding: 12px 14px;
  border-radius: 8px;
  background: #fff0f0;
  color: #9f2525;
  font-size: 13px;
  font-weight: 700;
}

.form-success {
  padding: 32px 16px;
  text-align: center;
}

.success-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: #e7f8ee;
  color: #1d9e75;
  font-size: 24px;
  font-weight: 900;
}

.form-success h4 {
  margin: 0 0 8px;
  color: #111111;
  font-size: 20px;
  font-weight: 900;
}

.form-success p {
  margin: 0 0 20px;
  color: #666666;
  font-size: 14px;
  line-height: 1.6;
}

.btn-call-now {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border-radius: 8px;
  background: var(--ac-ink);
  color: var(--ac-white);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .contact-form-wrap {
    padding: 20px 16px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .wh-row {
    flex-direction: column;
    gap: 2px;
  }
}

/* ============================================================
   RICH PUBLIC PAGES
   ============================================================ */
.btn-dark,
.btn-outline-dark {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, transform 0.1s ease;
}

.btn-dark {
  border: 1px solid var(--ac-ink);
  background: var(--ac-ink);
  color: var(--ac-white);
}

.btn-outline-dark {
  border: 1px solid #cfcfca;
  background: var(--ac-white);
  color: var(--ac-ink);
}

.btn-dark:hover,
.btn-outline-dark:hover {
  transform: translateY(-1px);
}

.full-btn {
  width: 100%;
  margin-top: 18px;
}

.page-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #111111;
  color: var(--ac-white);
}

.page-hero-compact {
  min-height: 380px;
}

.page-hero-media,
.page-hero-media img,
.page-hero-overlay {
  position: absolute;
  inset: 0;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.48));
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  padding: 82px 0;
}

.page-hero .section-label {
  color: rgba(255, 255, 255, 0.76);
}

.page-hero h1 {
  max-width: 820px;
  margin: 0;
  color: var(--ac-white);
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.page-hero p {
  max-width: 720px;
  margin: 18px 0 28px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
}

.service-hero {
  padding: 74px 0;
  background: var(--ac-soft);
}

.service-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 44px;
  align-items: center;
}

.service-hero-copy h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.service-hero-copy p {
  max-width: 640px;
  margin: 18px 0 24px;
  color: var(--ac-muted);
  font-size: 17px;
}

.service-hero-media {
  overflow: hidden;
  border-radius: var(--ac-radius);
  box-shadow: var(--ac-shadow);
  background: #111111;
}

.service-hero-media img,
.service-hero-media video {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.dark-chip {
  border-color: #d9d9d5;
  background: var(--ac-white);
  color: var(--ac-ink);
}

.rich-service-card {
  padding: 0;
  overflow: hidden;
}

.rich-service-card .service-icon,
.rich-service-card h3,
.rich-service-card p,
.rich-service-card .mini-list,
.rich-service-card .service-link {
  margin-left: 20px;
  margin-right: 20px;
}

.rich-service-card .service-link {
  margin-bottom: 20px;
}

.service-media {
  width: 100%;
  overflow: hidden;
  background: #111111;
}

.service-media img,
.service-media video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.rich-service-card .service-icon {
  margin-top: 20px;
}

.mini-list,
.check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mini-list li,
.check-list li {
  position: relative;
  padding-left: 22px;
  color: var(--ac-ink-soft);
  font-size: 14px;
}

.mini-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ac-green-dark);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.8fr);
  gap: 36px;
  align-items: start;
}

.seo-block,
.seo-aside {
  min-width: 0;
}

.seo-block h2 {
  margin: 0 0 18px;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.16;
}

.seo-block p {
  margin: 0 0 16px;
  color: var(--ac-muted);
  font-size: 16px;
}

.seo-aside {
  padding: 24px;
  border: 1px solid var(--ac-line);
  border-radius: var(--ac-radius);
  background: var(--ac-white);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
}

.section-light .seo-aside {
  background: #fbfbfa;
}

.seo-aside h3 {
  margin: 0 0 16px;
  font-size: 18px;
}

.district-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.district-list span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border: 1px solid var(--ac-line);
  border-radius: 999px;
  background: var(--ac-soft);
  color: var(--ac-ink-soft);
  font-size: 13px;
  font-weight: 800;
}

.district-list-wide {
  max-width: 980px;
  margin: 0 auto;
  justify-content: center;
}

.district-list-wide span {
  background: var(--ac-white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-card {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--ac-line);
  border-radius: var(--ac-radius);
  background: var(--ac-white);
}

.process-card span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--ac-blue);
  font-size: 13px;
  font-weight: 900;
}

.process-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.process-card p {
  margin: 0;
  color: var(--ac-muted);
  font-size: 14px;
}

.solution-grid,
.area-grid {
  display: grid;
  gap: 18px;
}

.solution-grid {
  grid-template-columns: repeat(3, 1fr);
}

.solution-card,
.area-card {
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--ac-line);
  border-radius: var(--ac-radius);
  background: var(--ac-white);
}

.solution-card h3,
.area-card h3 {
  margin: 0 0 10px;
  font-size: 19px;
}

.solution-card p,
.area-card p {
  margin: 0;
  color: var(--ac-muted);
  font-size: 14px;
}

.area-grid {
  grid-template-columns: repeat(4, 1fr);
}

.area-card {
  min-height: 118px;
}

.media-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(2, 1fr);
  gap: 18px;
}

.media-card {
  min-width: 0;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--ac-line);
  border-radius: var(--ac-radius);
  background: var(--ac-white);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.media-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.media-card:first-child {
  grid-row: span 2;
}

.media-card img,
.media-card video {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.media-card:hover img,
.media-card:hover video {
  transform: scale(1.03);
}

.media-card:first-child img,
.media-card:first-child video {
  height: 100%;
  min-height: 498px;
}

.media-card figcaption {
  padding: 12px 14px;
  color: var(--ac-ink-soft);
  font-size: 13px;
  font-weight: 800;
}

.faq-list {
  max-width: 860px;
  display: grid;
  gap: 12px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--ac-line);
  border-radius: var(--ac-radius);
  background: var(--ac-white);
}

.faq-item summary {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 15px 18px;
  cursor: pointer;
  color: var(--ac-ink);
  font-weight: 900;
}

.faq-item p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--ac-muted);
}

.reviews-grid-expanded {
  grid-template-columns: repeat(3, 1fr);
}

.ref-logo {
  width: 82px;
  height: 52px;
  object-fit: contain;
}

.testimonials-section {
  background: var(--ac-white);
}

.testimonial-showcase {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.4fr);
  gap: 22px;
  align-items: stretch;
}

.featured-review-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border-radius: var(--ac-radius);
  background: var(--ac-ink);
  color: var(--ac-white);
  box-shadow: var(--ac-shadow);
}

.featured-review-card .review-stars {
  margin-bottom: 22px;
  color: #ffd166;
}

.featured-review-card p {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(20px, 2.7vw, 30px);
  font-weight: 800;
  line-height: 1.25;
}

.featured-review-card .review-avatar {
  background: var(--ac-white);
  color: var(--ac-ink);
}

.featured-review-card .review-author span {
  color: rgba(255, 255, 255, 0.68);
}

.reviews-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
}

.review-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card .review-author {
  min-width: 0;
}

.testimonial-card .review-author strong,
.testimonial-card .review-author span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.testimonial-card .review-stars {
  order: 2;
  margin: 0;
}

.testimonial-card .review-text {
  order: 3;
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.refs-section-enhanced {
  background: var(--ac-soft);
}

.refs-showcase {
  display: grid;
  grid-template-columns: minmax(250px, 0.75fr) minmax(0, 1.5fr);
  gap: 24px;
  align-items: start;
}

.refs-summary {
  position: sticky;
  top: 92px;
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--ac-line);
  border-radius: var(--ac-radius);
  background: var(--ac-white);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
}

.refs-summary-number {
  margin-bottom: 14px;
  color: var(--ac-blue);
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 900;
  line-height: 0.9;
}

.refs-summary h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.18;
}

.refs-summary p {
  margin: 0 0 18px;
  color: var(--ac-muted);
  font-size: 14px;
}

.sector-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sector-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--ac-soft);
  color: var(--ac-ink-soft);
  font-size: 12px;
  font-weight: 800;
}

.refs-grid-polished {
  margin-top: 0;
  grid-template-columns: repeat(3, 1fr);
}

.refs-grid-polished .ref-card {
  min-height: 158px;
  justify-content: center;
  background: var(--ac-white);
}

.ref-card-head {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form-error-banner a {
  color: #7d1616;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .service-hero-inner,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-showcase,
  .refs-showcase {
    grid-template-columns: 1fr;
  }

  .refs-summary {
    position: static;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .solution-grid {
    grid-template-columns: 1fr;
  }

  .area-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .media-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .media-card:first-child {
    grid-row: auto;
    grid-column: span 2;
  }

  .media-card:first-child img,
  .media-card:first-child video {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .header-logo img {
    width: 156px;
    height: 48px;
  }

  .page-hero,
  .page-hero-compact {
    min-height: 430px;
  }

  .page-hero-inner {
    padding: 64px 0 78px;
  }

  .page-hero h1,
  .service-hero-copy h1 {
    font-size: 26px;
    line-height: 1.18;
    max-width: 100%;
  }

  .page-hero p,
  .service-hero-copy p {
    max-width: 100%;
    font-size: 15px;
  }

  .page-hero-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0.74));
  }

  .service-hero {
    padding: 48px 0 60px;
  }

  .process-grid,
  .media-grid,
  .area-grid {
    grid-template-columns: 1fr;
  }

  .reviews-list-grid,
  .refs-grid-polished {
    grid-template-columns: 1fr;
  }

  .featured-review-card,
  .refs-summary {
    padding: 20px;
  }

  .featured-review-card p {
    font-size: 19px;
  }

  .testimonial-card {
    padding: 16px;
  }

  .media-card:first-child {
    grid-column: auto;
  }

  .media-card img,
  .media-card video,
  .media-card:first-child img,
  .media-card:first-child video {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .seo-aside,
  .process-card {
    padding: 20px;
  }
}

/* ============================================================
   CTA AND FOOTER
   ============================================================ */
.cta-section {
  padding: 76px 0;
  background: var(--ac-blue);
  color: var(--ac-white);
  text-align: center;
}

.cta-section h2 {
  margin: 0 0 12px;
  color: var(--ac-white);
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.15;
}

.cta-section p {
  max-width: 660px;
  margin: 0 auto 26px;
  color: rgba(255, 255, 255, 0.84);
}

.cta-section .hero-cta {
  justify-content: center;
}

.site-footer {
  padding: 56px 0 28px;
  background: #111111;
  color: var(--ac-white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand img {
  width: 150px;
  height: auto;
  margin-bottom: 16px;
}

.footer-brand p {
  max-width: 380px;
  margin: 0;
  color: #b8b8b8;
  font-size: 14px;
}

.footer-col h4 {
  margin: 0 0 12px;
  color: var(--ac-white);
  font-size: 15px;
}

.footer-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-grid li {
  color: #999999;
  font-size: 14px;
}

.footer-grid a {
  min-height: 44px;
  display: block;
  padding: 0;
  color: #999999;
  font-size: 14px;
  line-height: 44px;
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-grid a:hover {
  color: #dddddd;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #8f8f8f;
  font-size: 13px;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: none;
  gap: 10px;
  padding: 10px 16px 14px;
  padding-bottom: max(14px, env(safe-area-inset-bottom));
  border-top: 1px solid #e8e8e6;
  background: var(--ac-white);
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.08);
}

.sticky-btn {
  min-height: 50px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 13px 8px;
  border-radius: 8px;
  color: var(--ac-white);
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  transition: opacity 0.15s ease, transform 0.1s ease;
}

.sticky-btn:active {
  opacity: 0.85;
  transform: scale(0.97);
}

.sticky-call {
  background: var(--ac-ink);
}

.sticky-wa {
  background: var(--ac-green);
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 80px;
  }

  .sticky-cta {
    display: flex;
    opacity: 0;
    pointer-events: none;
    transform: translateY(100%);
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  .sticky-cta.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 32px, 1200px);
  }

  .section,
  .section-refs,
  .section-contact {
    padding: 64px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Final mobile hardening */
@media (max-width: 768px) {
  .site-header {
    min-height: 72px;
  }

  .header-inner {
    height: 72px;
    padding: 0 14px;
  }

  .header-logo {
    max-width: 176px;
    overflow: hidden;
  }

  .header-logo img {
    width: 168px;
    height: 54px;
    object-fit: cover;
    object-position: center 48%;
  }

  html body .site-header .burger {
    position: fixed !important;
    top: 12px !important;
    right: 14px !important;
    z-index: 999 !important;
    width: 48px !important;
    height: 48px !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    border: 0 !important;
    border-radius: 8px !important;
    background: #111111 !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2) !important;
  }

  html body .site-header .burger span {
    width: 22px !important;
    height: 2px !important;
    background: #ffffff !important;
  }

  html body .site-header .burger::after {
    content: "☰";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 26px;
    font-weight: 900;
    line-height: 1;
  }

  html body .site-header .burger.open::after {
    content: "×";
    font-size: 30px;
  }

  html body .site-header .burger span {
    opacity: 0 !important;
  }
}

@media (max-width: 640px) {
  .section-title,
  .seo-block h2,
  .why-content h2 {
    font-size: 24px;
    line-height: 1.18;
    overflow-wrap: anywhere;
  }

  .section-sub,
  .section-desc {
    font-size: 14px;
  }

  .hero-content {
    width: min(100% - 32px, 1200px);
    padding-top: 52px;
    padding-bottom: 88px;
  }

  .hero-sub {
    max-width: 315px;
  }

  .hero {
    min-height: 82svh;
  }

  .hero-chips {
    gap: 8px;
    margin-bottom: 28px;
  }

  .hero-chip {
    font-size: 12px;
    padding: 6px 10px;
  }

  .btn-primary-lg,
  .btn-ghost-lg {
    min-height: 54px;
    padding: 14px 18px;
  }

  .page-hero,
  .page-hero-compact {
    min-height: 360px;
  }

  .page-hero-inner {
    padding-top: 52px;
    padding-bottom: 58px;
  }
}

/* Mobile nav visibility override */
@media (max-width: 768px) {
  html body .site-header .burger::after,
  html body .site-header .burger.open::after {
    content: none !important;
    display: none !important;
  }

  html body .site-header .burger span {
    opacity: 1 !important;
    background: #ffffff !important;
  }

  html body .site-header .burger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg) !important;
  }

  html body .site-header .burger.open span:nth-child(2) {
    opacity: 0 !important;
    transform: scaleX(0) !important;
  }

  html body .site-header .burger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg) !important;
  }
}

/* Mobile polish pass: keep the first viewport clean on real phones */
@media (max-width: 768px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  html body .site-header {
    min-height: 72px !important;
  }

  html body .site-header .header-inner {
    height: 72px !important;
    min-height: 72px !important;
    padding: 0 78px 0 16px !important;
  }

  html body .site-header .header-right,
  html body .site-header .desktop-nav {
    display: none !important;
  }

  html body .site-header .header-logo {
    display: flex !important;
    align-items: center !important;
    width: 184px !important;
    max-width: 184px !important;
    overflow: hidden !important;
    min-height: 72px !important;
  }

  html body .site-header .header-logo img {
    display: block !important;
    width: 184px !important;
    height: 58px !important;
    max-width: 100% !important;
    object-fit: cover !important;
    object-position: center 48% !important;
  }

  html body .site-header .burger {
    position: fixed !important;
    top: 12px !important;
    right: auto !important;
    left: min(calc(100vw - 62px), 313px) !important;
    z-index: 1000 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 5px !important;
    width: 48px !important;
    height: 48px !important;
    padding: 0 !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    border: 0 !important;
    border-radius: 10px !important;
    background: #111111 !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22) !important;
  }

  html body .site-header .burger::before,
  html body .site-header .burger::after,
  html body .site-header .burger.open::before,
  html body .site-header .burger.open::after {
    content: none !important;
    display: none !important;
  }

  html body .site-header .burger span {
    display: block !important;
    flex: 0 0 auto !important;
    width: 24px !important;
    height: 2px !important;
    margin: 0 !important;
    border-radius: 999px !important;
    background: #ffffff !important;
    opacity: 1 !important;
    transform-origin: center !important;
  }

  html body .site-header .burger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg) !important;
  }

  html body .site-header .burger.open span:nth-child(2) {
    opacity: 0 !important;
    transform: scaleX(0) !important;
  }

  html body .site-header .burger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg) !important;
  }

  html body .hero {
    min-height: calc(100svh - 72px) !important;
  }

  html body .hero-content {
    box-sizing: border-box !important;
    width: min(100%, 375px) !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    padding: 48px 20px 86px !important;
  }

  html body .hero-title,
  html body .hero-sub {
    width: 100% !important;
    max-width: 100% !important;
  }

  html body .hero-title {
    font-size: 29px !important;
    line-height: 1.14 !important;
    overflow-wrap: anywhere !important;
  }

  html body .hero-sub {
    font-size: 14px !important;
    line-height: 1.65 !important;
  }

  html body .hero-chips {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  html body .hero-chip {
    box-sizing: border-box !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
    white-space: normal !important;
    line-height: 1.25 !important;
    padding: 7px 8px !important;
  }
}

@media (max-width: 360px) {
  html body .site-header .header-logo img {
    width: 146px !important;
  }

  html body .hero-title {
    font-size: 27px !important;
  }

  html body .hero-chips {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 640px) {
  html body .container {
    box-sizing: border-box !important;
    width: min(100%, 375px) !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  html body .page-hero-inner {
    box-sizing: border-box !important;
    width: min(100%, 375px) !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    padding: 52px 20px 60px !important;
  }

  html body .page-hero h1,
  html body .service-hero-copy h1 {
    font-size: 25px !important;
    line-height: 1.18 !important;
    overflow-wrap: anywhere !important;
  }

  html body .page-hero p,
  html body .service-hero-copy p {
    width: 100% !important;
    max-width: 100% !important;
    font-size: 14px !important;
    line-height: 1.65 !important;
  }

  html body .page-hero .hero-chips {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
    width: 100% !important;
  }
}

/* Real mobile preview correction: no fixed 375px layout hacks */
@media (max-width: 768px) {
  html body .site-header {
    width: 100% !important;
  }

  html body .site-header .header-inner {
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 1200px !important;
    height: 72px !important;
    min-height: 72px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    margin: 0 auto !important;
    padding: 0 14px 0 16px !important;
  }

  html body .site-header .header-logo {
    width: 176px !important;
    max-width: calc(100% - 64px) !important;
    min-height: 72px !important;
    flex: 0 1 176px !important;
    overflow: hidden !important;
  }

  html body .site-header .header-logo img {
    width: 176px !important;
    height: 56px !important;
    max-width: 100% !important;
    object-fit: cover !important;
    object-position: center 48% !important;
  }

  html body .site-header .burger {
    position: relative !important;
    inset: auto !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    flex: 0 0 48px !important;
    margin-left: auto !important;
    transform: none !important;
  }

  html body .hero-content {
    width: min(calc(100% - 40px), 1200px) !important;
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 48px 0 86px !important;
  }
}

@media (max-width: 640px) {
  html body .container,
  html body .page-hero-inner {
    width: min(calc(100% - 32px), 1200px) !important;
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  html body .page-hero-inner {
    padding-top: 52px !important;
    padding-bottom: 60px !important;
  }
}

/* Final mobile service-page correction */
@media (max-width: 768px) {
  html,
  body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  html body .site-header .header-inner {
    width: 100% !important;
    max-width: 100% !important;
    height: 72px !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 48px !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 0 14px 0 16px !important;
  }

  html body .site-header .header-right,
  html body .site-header .desktop-nav {
    display: none !important;
  }

  html body .site-header .header-logo {
    width: min(176px, calc(100vw - 86px)) !important;
    max-width: min(176px, calc(100vw - 86px)) !important;
    min-width: 0 !important;
    min-height: 72px !important;
    overflow: hidden !important;
  }

  html body .site-header .header-logo img {
    width: 176px !important;
    height: 56px !important;
    max-width: 100% !important;
    object-fit: cover !important;
    object-position: center 48% !important;
  }

  html body .site-header .burger {
    position: relative !important;
    inset: auto !important;
    display: flex !important;
    grid-column: 2 !important;
    width: 48px !important;
    height: 48px !important;
    flex: 0 0 48px !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 5px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 10px !important;
    background: #111111 !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 120 !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18) !important;
  }

  html body .site-header .burger::before,
  html body .site-header .burger::after {
    content: none !important;
    display: none !important;
  }

  html body .site-header .burger span {
    display: block !important;
    width: 24px !important;
    height: 2px !important;
    flex: 0 0 auto !important;
    border-radius: 999px !important;
    background: #ffffff !important;
    opacity: 1 !important;
  }

  html body .service-hero {
    padding: 44px 0 54px !important;
  }

  html body .service-hero .container,
  html body .service-hero-inner {
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    overflow: hidden !important;
  }

  html body .service-hero-inner {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 28px !important;
  }

  html body .service-hero-copy,
  html body .service-hero-media {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  html body .service-hero-copy h1 {
    width: 100% !important;
    max-width: 100% !important;
    font-size: 23px !important;
    line-height: 1.22 !important;
    white-space: normal !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    letter-spacing: 0 !important;
  }

  html body .service-hero-copy p {
    width: 100% !important;
    max-width: 100% !important;
    font-size: 14px !important;
    line-height: 1.65 !important;
    overflow-wrap: anywhere !important;
  }

  html body .service-hero .hero-chips {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    width: 100% !important;
    max-width: 100% !important;
    gap: 8px !important;
    margin-bottom: 26px !important;
  }

  html body .service-hero .hero-chip {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    justify-content: center !important;
    padding: 8px 7px !important;
    font-size: 12px !important;
    line-height: 1.25 !important;
    text-align: center !important;
    white-space: normal !important;
  }

  html body .service-hero .hero-cta {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: 100% !important;
    max-width: 100% !important;
    gap: 10px !important;
  }

  html body .service-hero .btn-primary-lg,
  html body .service-hero .btn-ghost-lg {
    width: 100% !important;
    min-width: 0 !important;
  }

  html body .service-hero-media img,
  html body .service-hero-media video {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
  }
}

@media (max-width: 380px) {
  html body .service-hero .hero-chips {
    grid-template-columns: 1fr !important;
  }
}
