:root {
  --ink: #08080b;
  --ink-2: #18151f;
  --muted: #666170;
  --paper: #fff;
  --soft: #f7f5ff;
  --line: #e9e4f7;
  --lavender: #ded5ff;
  --violet: #6847ff;
  --violet-2: #4e31de;
  --yellow: #ffe13f;
  --radius: 8px;
  --shadow-soft: 0 24px 60px rgba(52, 38, 115, 0.16);
  --shadow-dark: 0 18px 42px rgba(0, 0, 0, 0.28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Manrope, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 3px solid rgba(104, 71, 255, 0.36);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 88px;
  padding: 16px clamp(20px, 4vw, 44px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(238, 234, 247, 0.9);
  backdrop-filter: blur(18px);
}
.brand img { width: auto; max-width: 120px; max-height: 42px; object-fit: contain; }
.nav-links { display: flex; align-items: center; justify-content: center; gap: clamp(18px, 3vw, 32px); color: #312e36; font-size: 15px; }
.nav-links a { position: relative; padding: 10px 0; }
.nav-links a::after { position: absolute; right: 0; bottom: 3px; left: 0; height: 2px; content: ""; background: var(--violet); transform: scaleX(0); transition: transform 180ms ease; }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.header-actions { display: flex; justify-self: end; align-items: center; gap: 12px; }
.lang-toggle { width: 48px; height: 40px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink); background: #fff; cursor: pointer; }
.menu-button { display: none; justify-self: end; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 999px; background: #fff; }
.menu-button span { display: block; width: 18px; height: 2px; margin: 4px auto; background: var(--ink); border-radius: 10px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 50px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button i { display: grid; width: 34px; height: 34px; place-items: center; color: var(--ink); background: #fff; border-radius: 999px; font-style: normal; }
.button-dark { color: #fff; background: var(--ink-2); box-shadow: var(--shadow-dark); }
.button-violet { color: #fff; background: linear-gradient(180deg, #7658ff, var(--violet-2)); box-shadow: 0 18px 38px rgba(104, 71, 255, 0.38); }
.button-light { color: var(--ink); background: #fff; box-shadow: 0 18px 42px rgba(0, 0, 0, 0.14); }

.hero, .page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(104, 71, 255, 0.18), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f7f5ff 42%, #ebe6ff 100%);
}
.hero-home {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
  min-height: calc(100vh - 88px);
  padding: 74px clamp(18px, 5vw, 64px) 88px;
}
.hero-copy { max-width: 720px; }
.announcement {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 6px;
  color: #211f27;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #e9e3fb;
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(71, 53, 148, 0.16);
  font-size: 14px;
}
.announcement strong { padding: 6px 11px; color: var(--ink); background: var(--yellow); border-radius: 999px; font-size: 13px; }
h1, h2, h3, p { margin-top: 0; }
.hero h1, .page-hero h1 { margin: 26px 0 22px; font-size: 72px; line-height: 0.98; font-weight: 800; }
.page-hero h1 { max-width: 920px; margin-inline: auto; font-size: clamp(42px, 6vw, 76px); text-align: center; }
.hero p, .page-hero p, .section-heading p, .section-copy p, .contact-copy p { color: var(--muted); font-size: clamp(17px, 2vw, 20px); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

.comparison-card {
  position: relative;
  border: 1px solid rgba(255,255,255,.92);
  border-radius: 18px;
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
  padding: 12px;
}
.comparison-card::before {
  position: absolute;
  inset: -18px;
  z-index: -1;
  content: "";
  background: radial-gradient(circle at 58% 42%, rgba(104,71,255,.2), transparent 38%);
  opacity: .75;
}
.comparison-labels {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 4px 8px 12px;
  color: #4f485b;
  font-size: 12px;
  line-height: 1.3;
  text-transform: uppercase;
}
.comparison-labels span:last-child { color: var(--violet-2); }
.comparison-stage {
  position: relative;
  min-height: clamp(500px, 48vw, 570px);
  overflow: hidden;
  border-radius: 14px;
  background: #121018;
  isolation: isolate;
}
.mockup {
  position: absolute;
  inset: 0;
  padding: clamp(14px, 2.8vw, 24px);
}
.before-site {
  color: #312d38;
  background:
    linear-gradient(135deg, rgba(255,255,255,.9), rgba(225,222,232,.94)),
    repeating-linear-gradient(0deg, transparent 0 32px, rgba(8,8,11,.04) 32px 33px);
}
.old-window {
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 16px;
  height: 100%;
  padding: clamp(14px, 2vw, 20px);
  border: 1px solid rgba(24,21,31,.16);
  border-radius: 12px;
  background: rgba(245,244,248,.92);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.7), 0 18px 45px rgba(24,21,31,.08);
}
.old-browser {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 12px;
  border-radius: 8px;
  background: #d1ccd9;
}
.old-browser span { width: 10px; height: 10px; border-radius: 50%; background: #918a9d; }
.old-browser em {
  min-width: 0;
  margin-left: 8px;
  overflow: hidden;
  color: #746d80;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.old-hero-block {
  display: grid;
  grid-template-columns: .72fr 1fr;
  gap: 18px;
  align-items: center;
}
.image-slot {
  --slot-fallback: linear-gradient(135deg, rgba(104,71,255,.28), rgba(8,8,11,.14)), linear-gradient(160deg, #f7f5ff 0%, #d9d2ff 48%, #171126 100%);
  background-color: #ebe8f2;
  background-image: var(--slot-image, linear-gradient(135deg, rgba(104,71,255,.28), rgba(8,8,11,.14))), var(--slot-fallback);
  background-position: center;
  background-size: cover;
}
.old-photo {
  min-height: 175px;
  border-radius: 8px;
  --slot-fallback: linear-gradient(135deg, rgba(8,8,11,.16), rgba(104,71,255,.12)), linear-gradient(160deg, #beb8c8 0%, #efedf3 55%, #aaa3b4 100%);
  filter: grayscale(.75);
}
.old-kicker, .live-kicker {
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}
.old-kicker { color: #716a7c; }
.old-window h2 {
  max-width: 420px;
  margin-bottom: 0;
  color: #2f2a38;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1;
}
.old-alert {
  width: max-content;
  max-width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(24,21,31,.12);
  border-radius: 8px;
  color: #5d5668;
  background: rgba(255,255,255,.62);
  font-size: 13px;
}
.old-feed {
  display: grid;
  gap: 12px;
  align-content: start;
}
.old-feed span {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  min-height: 70px;
  padding: 10px;
  border: 1px solid rgba(24,21,31,.08);
  border-radius: 8px;
  background: rgba(255,255,255,.54);
}
.old-feed b, .old-feed small, .old-contact-row span {
  display: block;
  border-radius: 7px;
  background: rgba(49,45,56,.16);
}
.old-feed b.image-slot {
  --slot-fallback: linear-gradient(135deg, rgba(49,45,56,.2), rgba(255,255,255,.34));
  background-image: var(--slot-image, linear-gradient(135deg, rgba(49,45,56,.2), rgba(255,255,255,.34))), var(--slot-fallback);
  background-position: center;
  background-size: cover;
}
.old-feed b { width: 64px; height: 50px; }
.old-feed small { height: 13px; margin-top: 6px; }
.old-contact-row {
  display: grid;
  grid-template-columns: 1.2fr .8fr .7fr;
  gap: 10px;
}
.old-contact-row span { height: 42px; }
.after-site {
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(104,71,255,.42), transparent 28%),
    linear-gradient(135deg, #08080b 0%, #171126 52%, #4e31de 100%);
  clip-path: inset(0 0 0 var(--split));
}
.live-site {
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 14px;
  background: rgba(8,8,11,.86);
  box-shadow: 0 24px 70px rgba(0,0,0,.34);
}
.live-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 62px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
}
.live-nav strong { font-size: 18px; }
.live-nav nav { display: flex; gap: 14px; color: rgba(255,255,255,.7); font-size: 13px; }
.live-nav a, .live-map a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--ink);
  background: #fff;
  font-size: 13px;
  font-weight: 800;
}
.live-scroll {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 16px;
  transform: translateY(0);
  animation: livePreviewScroll 9s ease-in-out infinite;
}
.live-hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(170px, .92fr);
  gap: 18px;
  align-items: center;
  min-height: 220px;
  padding: clamp(18px, 3vw, 28px);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(246,244,255,.94));
  color: var(--ink);
}
.live-kicker { color: var(--violet-2); }
.live-hero-panel h2 {
  max-width: 460px;
  margin-bottom: 10px;
  font-size: clamp(27px, 3vw, 40px);
  line-height: .98;
}
.live-hero-panel p:not(.live-kicker) {
  max-width: 370px;
  margin-bottom: 0;
  color: #5d5668;
  font-size: 15px;
  line-height: 1.45;
}
.live-photo-grid {
  display: grid;
  grid-template-columns: 1fr .72fr;
  grid-template-rows: 1fr 1fr;
  gap: 9px;
  min-height: 178px;
}
.live-photo-grid span {
  overflow: hidden;
  border-radius: 10px;
}
.live-photo-grid .site-photo-main {
  grid-row: 1 / -1;
  --slot-fallback: linear-gradient(135deg, rgba(104,71,255,.28), rgba(8,8,11,.12)), linear-gradient(160deg, #f7f5ff 0%, #d9d2ff 48%, #171126 100%);
}
.live-photo-grid .site-photo-small { --slot-fallback: linear-gradient(140deg, #fff, #cbc2ff 55%, #4e31de); }
.live-photo-grid .site-photo-small.strong { --slot-fallback: linear-gradient(140deg, #18151f, #6847ff); }
.live-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.live-stats span, .live-menu article, .live-map {
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 10px;
  background: rgba(255,255,255,.11);
  backdrop-filter: blur(12px);
}
.live-stats span {
  display: grid;
  gap: 3px;
  min-height: 76px;
  align-content: center;
  padding: 12px;
}
.live-stats b { font-size: 21px; }
.live-stats small { color: rgba(255,255,255,.72); }
.live-menu { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.live-menu article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 86px;
  padding: 12px;
}
.live-menu article span {
  width: 58px;
  height: 58px;
  border-radius: 9px;
  --slot-fallback: linear-gradient(135deg, rgba(255,255,255,.92), rgba(104,71,255,.34));
}
.live-menu b, .live-menu small { display: block; }
.live-menu small { margin-top: 3px; color: rgba(255,255,255,.68); }
.live-map {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 68px;
  padding: 12px;
}
.live-map span {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff 0 23%, rgba(255,255,255,.26) 24% 100%);
}
.live-map p { margin-bottom: 0; color: rgba(255,255,255,.84); font-size: 14px; }
.comparison-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--split);
  z-index: 3;
  width: 3px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(0,0,0,.08), 0 0 32px rgba(104,71,255,.55);
  transform: translateX(-1.5px);
}
.comparison-divider span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.86);
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow-dark);
  transform: translate(-50%, -50%);
}
.comparison-divider span::before, .comparison-divider span::after {
  position: absolute;
  width: 10px;
  height: 10px;
  content: "";
  border-top: 2px solid var(--violet-2);
  border-left: 2px solid var(--violet-2);
}
.comparison-divider span::before { transform: translateX(-6px) rotate(-45deg); }
.comparison-divider span::after { transform: translateX(6px) rotate(135deg); }
.comparison-range {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}
.drag-hint {
  margin: 12px 6px 0;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}
@keyframes livePreviewScroll {
  0%, 22% { transform: translateY(0); }
  48%, 68% { transform: translateY(-84px); }
  100% { transform: translateY(0); }
}
.client-strip { overflow: hidden; padding: 28px 0; background: #fff; border-block: 1px solid var(--line); }
.client-track { display: flex; width: max-content; gap: 22px; animation: marquee 30s linear infinite; }
.client-track img { width: 220px; height: 86px; object-fit: contain; padding: 16px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 12px 30px rgba(43,34,91,.06); }
@keyframes marquee { to { transform: translateX(-50%); } }

.section-pad { padding: 104px clamp(20px, 5vw, 64px); }
.split-section, .contact-hero { display: grid; grid-template-columns: minmax(0,.92fr) minmax(0,1.08fr); gap: clamp(32px, 7vw, 88px); align-items: center; width: min(1220px, 100%); margin: 0 auto; }
.section-copy h2, .section-heading h2, .bottom-cta h2, .contact-copy h1 { margin-bottom: 18px; font-size: clamp(38px, 5.4vw, 66px); line-height: 1.04; font-weight: 800; }
.eyebrow { margin-bottom: 14px; color: var(--violet); font-size: 14px; font-weight: 800; text-transform: uppercase; }
.feature-stack, .faq-grid { display: grid; gap: 16px; }
.feature-card, .customer-card, .support-card, .contact-form, details, .deliverables-grid article { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 16px 40px rgba(28,21,66,.07); }
.feature-card { padding: 26px; }
.feature-card span, .deliverables-grid span { color: var(--violet); font-size: 14px; }
.feature-card h3 { margin: 10px 0 8px; font-size: 25px; }
.feature-card p { margin-bottom: 0; color: var(--muted); line-height: 1.5; }
.section-heading { max-width: 820px; margin: 0 auto 44px; text-align: center; }

.deliverables-section { background: #fbfaff; }
.deliverables-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; width: min(1220px, 100%); margin: 0 auto; }
.deliverables-grid article { display: grid; gap: 12px; padding: 24px; }
.deliverables-grid strong { font-size: 20px; }
.deliverables-grid p { margin: 0; color: var(--muted); line-height: 1.5; }

.pricing-section { background: linear-gradient(180deg, #fff 0%, #f7f4ff 12%, var(--lavender) 100%); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; width: min(1220px, 100%); margin: 0 auto; }
.price-card { overflow: hidden; border: 1px solid rgba(255,255,255,.85); border-radius: 26px; background: #efeff4; box-shadow: var(--shadow-soft); }
.price-card.featured { transform: translateY(-16px); }
.price-head { display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: end; min-height: 166px; padding: 30px; background: #fff; border-radius: 24px; }
.price-head h3 { margin-bottom: 7px; font-size: 26px; }
.price-head p { margin-bottom: 0; color: var(--muted); }
.price span { display: block; margin-bottom: 6px; color: var(--muted); }
.price strong { font-size: clamp(42px, 5vw, 56px); line-height: .95; }
.full { width: calc(100% - 60px); margin: 24px 30px 30px; }
.price-card ul { display: grid; gap: 13px; margin: 0; padding: 0 30px 34px; list-style: none; }
.price-card li { position: relative; padding-left: 24px; color: #403b49; line-height: 1.4; }
.price-card li::before { position: absolute; top: .65em; left: 0; width: 6px; height: 6px; content: ""; background: var(--violet); border-radius: 50%; }

.faq-section { background: #fbfaff; }
.faq-grid { width: min(960px, 100%); margin: 0 auto; }
details { padding: 22px 24px; }
summary { cursor: pointer; font-size: 19px; font-weight: 800; }
details p { margin: 14px 0 0; color: var(--muted); line-height: 1.55; }

.page-hero { padding: 94px clamp(20px, 5vw, 64px) 118px; text-align: center; }
.logo-wall { background: var(--soft); }
.customer-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 18px; width: min(1220px, 100%); margin: 0 auto; }
.customer-card { display: grid; gap: 18px; padding: 22px; }
.customer-card img { width: 100%; height: 96px; object-fit: contain; padding: 12px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); }
.customer-card p { margin-bottom: 0; color: var(--muted); line-height: 1.48; }

.contact-hero { align-items: start; }
.support-card { margin-top: 28px; padding: 24px; }
.support-card span { display: block; color: var(--violet); font-size: 14px; text-transform: uppercase; }
.support-card a { display: inline-block; margin: 10px 0 12px; font-size: 24px; word-break: break-word; }
.contact-form { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; padding: clamp(22px,4vw,34px); background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(247,244,255,.96)); }
.contact-form label { display: grid; gap: 8px; color: #34303a; font-size: 14px; }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid #ddd7ef; border-radius: var(--radius); padding: 15px 16px; color: var(--ink); background: #fff; outline: 0; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--violet); box-shadow: 0 0 0 4px rgba(104,71,255,.14); }
.full-field, .form-button, .form-note { grid-column: 1 / -1; }
.form-note { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.45; }
.hp-field { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.success-banner { display: none; margin-bottom: 20px; padding: 16px 18px; color: #12351f; background: #e9f8ee; border: 1px solid #bde8ca; border-radius: var(--radius); }
.success-banner.is-visible { display: block; }

.legal-page { width: min(920px, 100%); margin: 0 auto; }
.legal-page section { margin-bottom: 34px; }
.legal-page p, .legal-page li { color: var(--muted); line-height: 1.62; }

.bottom-cta { padding: 44px clamp(20px,5vw,64px); color: #fff; background: radial-gradient(circle at 68% 20%, rgba(104,71,255,.28), transparent 24%), linear-gradient(135deg, #08080b 0%, #171126 58%, #08080b 100%); }
.bottom-cta-inner { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; width: min(1180px, 100%); margin: 0 auto; }
.bottom-cta h2 { max-width: 760px; margin-bottom: 0; font-size: clamp(30px,3.8vw,48px); }
.bottom-cta .eyebrow { color: #d8d0ff; }
.site-footer { display: grid; grid-template-columns: 1.2fr .8fr; gap: 34px; padding: 52px clamp(20px,5vw,64px) 26px; color: #fff; background: var(--ink); }
.footer-brand img { width: auto; max-width: 126px; max-height: 54px; object-fit: contain; }
.site-footer p { max-width: 300px; margin: 18px 0 0; color: rgba(255,255,255,.68); line-height: 1.55; }
.footer-links { display: grid; align-content: start; gap: 12px; }
.footer-links strong { color: rgba(255,255,255,.62); font-size: 14px; }
.footer-links a { color: rgba(255,255,255,.86); }
.footer-bottom { grid-column: 1 / -1; padding-top: 26px; color: rgba(255,255,255,.5); border-top: 1px solid rgba(255,255,255,.1); font-size: 14px; }
.mobile-sticky-cta { display: none; position: fixed; right: 16px; bottom: 16px; left: 16px; z-index: 40; min-height: 52px; place-items: center; color: #fff; background: var(--violet); border-radius: 999px; box-shadow: var(--shadow-dark); font-weight: 800; }
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }
  .menu-button { display: block; }
  .nav-links, .header-actions { display: none; }
  .site-header.is-open .nav-links { display: grid; grid-column: 1 / -1; justify-content: stretch; gap: 0; padding: 8px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
  .site-header.is-open .nav-links a { padding: 14px; }
  .site-header.is-open .header-actions { display: flex; grid-column: 1 / -1; justify-self: stretch; justify-content: space-between; }
  .hero-home, .split-section, .contact-hero, .bottom-cta-inner, .site-footer { grid-template-columns: 1fr; }
  .pricing-grid, .customer-grid, .deliverables-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
}
@media (max-width: 640px) {
  body { padding-bottom: 78px; }
  .site-header { min-height: 76px; padding: 14px 18px; }
  .brand img { max-width: 108px; max-height: 38px; }
  .hero-home { min-height: auto; padding-top: 92px; }
  .hero h1 { font-size: 43px; }
  .comparison-stage { min-height: 560px; }
  .old-window h2, .live-hero-panel h2 { font-size: 32px; }
  .old-hero-block, .live-hero-panel, .live-menu, .live-map { grid-template-columns: 1fr; }
  .live-nav nav { display: none; }
  .live-photo-grid { min-height: 160px; }
  .section-pad { padding: 74px 18px; }
  .price-head, .contact-form { grid-template-columns: 1fr; }
  .full { width: calc(100% - 52px); margin-inline: 26px; }
  .client-track img { width: 180px; height: 72px; }
  .mobile-sticky-cta { display: grid; }
  body[data-page="home"] .mobile-sticky-cta { display: none; }
}

