:root {
  color-scheme: light;
  --bg: #fff;
  --surface: #f8fafd;
  --surface-strong: #f1f3f4;
  --text: #202124;
  --muted: #5f6368;
  --line: #dadce0;
  --blue: #1a73e8;
  --red: #ea4335;
  --yellow: #fbbc04;
  --green: #34a853;
  --shadow: 0 1px 2px rgba(60, 64, 67, 0.14), 0 4px 12px rgba(60, 64, 67, 0.08);
  --shadow-strong: 0 1px 3px rgba(60, 64, 67, 0.2), 0 14px 38px rgba(60, 64, 67, 0.12);
  --radius: 24px;
  --font-heading: "Rubik", Arial, Helvetica, sans-serif;
  --font-body: "Nunito Sans", Arial, Helvetica, sans-serif;
  font-family: var(--font-body);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.5;
  overflow-x: hidden;
}

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(26, 115, 232, 0.32);
  outline-offset: 3px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(16px, 4vw, 36px);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(218, 220, 224, 0.72);
}

.brand,
.nav,
.hero-actions,
.quick-links,
.footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-size: 18px;
  font-weight: 500;
}

.brand b {
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  display: block;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 8px;
}

.blue { background: var(--blue); }
.red { background: var(--red); }
.yellow { background: var(--yellow); }
.green { background: var(--green); }

.nav {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--text);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.mobile-consult-button {
  display: none;
  border-radius: 999px;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(26, 115, 232, 0.18);
  background: linear-gradient(180deg, #1f7af0 0%, var(--blue) 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(26, 115, 232, 0.28);
}

.nav a,
.nav-link {
  border-radius: 999px;
  border: 0;
  padding: 9px 11px;
  background: transparent;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.cabinet-nav-link {
  border: 1px solid var(--line);
}

.nav a:hover,
.nav-link:hover {
  background: var(--surface-strong);
  color: var(--text);
}

.nav-button {
  border: 1px solid rgba(26, 115, 232, 0.18) !important;
  background: linear-gradient(180deg, #1f7af0 0%, var(--blue) 100%) !important;
  color: #fff !important;
  font-weight: 700 !important;
  box-shadow: 0 10px 24px rgba(26, 115, 232, 0.22);
}

.nav .nav-button:hover {
  background: #1557b0 !important;
  color: #fff !important;
  box-shadow: 0 6px 16px rgba(26, 115, 232, 0.24);
}

.office-showcase {
  width: 100%;
  margin: 0;
}

.office-live-frame {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(218, 220, 224, 0.9);
  border-radius: 28px;
  background: #a5c760;
  box-shadow: var(--shadow-strong);
}

.office-live-frame canvas {
  display: block;
  width: 100%;
  height: 100%;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}

.office-poster {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: end start;
  overflow: hidden;
  background: #243817;
  transition: opacity 0.42s ease, visibility 0.42s ease;
}

.office-poster img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: pixelated;
  transform: scale(1.02);
}

.office-poster::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.04), rgba(15, 23, 42, 0.54));
  content: "";
}

.office-poster-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 6px;
  margin: 22px 22px 78px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  padding: 14px 16px;
  background: rgba(15, 23, 42, 0.68);
  color: #fff;
  backdrop-filter: blur(12px);
}

.office-poster-copy span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.office-poster-copy b {
  max-width: 260px;
  font-family: var(--font-heading);
  font-size: 20px;
  line-height: 1.08;
}

.office-live-frame.office-ready .office-poster {
  opacity: 0;
  visibility: hidden;
}

.office-explainer {
  position: absolute;
  top: 16px;
  right: 16px;
  left: 16px;
  z-index: 4;
  max-width: 430px;
  border: 1px solid rgba(148, 163, 184, 0.26);
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(15, 23, 42, 0.72);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.2);
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  backdrop-filter: blur(12px);
}

.office-live-frame.office-info-open .office-explainer {
  opacity: 1;
  transform: translateY(0);
}

.office-zone-nav {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 3;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  border: 1px solid rgba(15, 23, 42, 0.16);
  border-radius: 18px;
  padding: 8px;
  background: rgba(13, 17, 23, 0.72);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(10px);
}

.office-zone-nav button {
  flex: 0 0 auto;
  min-width: 74px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 12px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.92);
  color: #1f2937;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.office-zone-nav button:hover {
  border-color: rgba(26, 115, 232, 0.55);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.18);
  transform: translateY(-1px);
}

.office-zone-nav button.active {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
  box-shadow: 0 5px 14px rgba(26, 115, 232, 0.32);
}

.office-loading {
  border-radius: 28px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(430px, 0.78fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  width: min(1180px, calc(100% - 32px));
  min-height: auto;
  margin: clamp(18px, 2.8vw, 34px) auto 0;
  padding: 0 0 36px;
  text-align: left;
}

.hero-copy {
  max-width: 600px;
  padding-top: 0;
}

.eyebrow,
.section-label,
.plan {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.c-blue { color: var(--blue); }
.c-red { color: var(--red); }
.c-yellow { color: var(--yellow); }
.c-green { color: var(--green); }

.hero h1 {
  margin: 0;
  max-width: 11ch;
  font-family: var(--font-heading);
  font-size: clamp(38px, 4.6vw, 60px);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 28ch;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.46;
}

.hero-demo-section {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto 42px;
}

.proof-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto 42px;
}

.proof-card {
  min-height: 214px;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(22px, 2.4vw, 28px);
  background: #fff;
  box-shadow: var(--shadow);
  animation: riseIn 0.58s ease both;
}

.proof-card:nth-child(2) {
  animation-delay: 0.08s;
}

.proof-card:nth-child(3) {
  animation-delay: 0.16s;
}

.proof-number {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(48px, 5vw, 64px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0;
}

.proof-card h3 {
  margin: 0;
  max-width: 310px;
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 700;
  line-height: 1.12;
}

.proof-card p {
  margin: 12px 0 0;
  max-width: 320px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.main-thought {
  border-radius: 32px;
  padding: clamp(24px, 4vw, 42px);
  background:
    radial-gradient(circle at 94% 16%, rgba(26, 115, 232, 0.10), transparent 16rem),
    radial-gradient(circle at 8% 84%, rgba(52, 168, 83, 0.10), transparent 14rem),
    var(--surface);
}

.main-thought p:last-child {
  max-width: 920px;
  margin: 0;
  color: var(--text);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0;
}

.why-not-chatgpt {
  border-radius: 32px;
  padding: clamp(24px, 4vw, 42px);
  background:
    radial-gradient(circle at 92% 12%, rgba(26, 115, 232, 0.10), transparent 16rem),
    radial-gradient(circle at 8% 90%, rgba(234, 67, 53, 0.08), transparent 14rem),
    var(--surface);
}

.why-not-chatgpt-copy {
  max-width: 860px;
  display: grid;
  gap: 14px;
}

.why-not-chatgpt-copy p {
  margin: 0;
  color: #3c4043;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.45;
}

.why-not-chatgpt-copy p:first-child {
  color: var(--muted);
}

.audience-note {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 64px;
}

.audience-copy {
  display: grid;
  gap: 18px;
  width: 100%;
  max-width: none;
  padding-top: 0;
}

.audience-copy p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.45;
}

.intro-with-phone {
  display: grid;
  grid-template-columns: minmax(240px, 340px) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: start;
  margin-top: 4px;
  margin-bottom: 72px;
}

.intro-phone {
  display: flex;
  justify-content: center;
  padding-top: 12px;
}

.intro-phone img {
  display: block;
  width: min(100%, 340px);
  height: auto;
  filter: drop-shadow(0 18px 36px rgba(26, 115, 232, 0.18));
}

.intro-copy {
  max-width: 760px;
  padding: clamp(10px, 2vw, 24px) 0;
}

.intro-copy h2 {
  max-width: 760px;
  font-size: clamp(28px, 3.4vw, 44px);
}

.intro-copy > p,
.intro-lead {
  max-width: 560px;
  margin-top: 24px;
}

.intro-lead {
  margin-bottom: 0;
  color: var(--text);
  font-weight: 700;
}

.agent-list {
  display: grid;
  gap: 12px;
  max-width: 680px;
  margin: 14px 0 0;
  padding: 0;
  color: var(--muted);
  counter-reset: agent;
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.45;
  list-style: none;
}

.agent-list li {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.agent-list li::before {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: var(--surface-strong);
  color: var(--blue);
  content: counter(agent);
  counter-increment: agent;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.agent-list b {
  color: var(--text);
}

.search-card {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px;
  align-self: center;
  align-items: center;
  width: 100%;
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 18px;
  background: #fff;
  box-shadow: none;
  text-align: left;
  transition: box-shadow 0.18s ease, transform 0.18s ease;
}

.search-card:hover {
  box-shadow: var(--shadow-strong);
  transform: translateY(-1px);
}

.search-icon {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
  border: 2px solid #5f6368;
  border-radius: 50%;
  opacity: 0.78;
}

.search-icon::after {
  position: absolute;
  right: -5px;
  bottom: -4px;
  width: 8px;
  height: 2px;
  border-radius: 999px;
  background: #5f6368;
  content: "";
  transform: rotate(45deg);
  transform-origin: center;
}

.search-text {
  overflow: hidden;
  color: #3c4043;
  font-size: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-actions {
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 34px;
}

.video-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(26, 115, 232, 0.22);
  border-radius: 999px;
  padding: 10px 18px 10px 14px;
  background: rgba(26, 115, 232, 0.07);
  color: #1557b0;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.video-button:hover {
  border-color: rgba(26, 115, 232, 0.42);
  background: rgba(26, 115, 232, 0.11);
  box-shadow: 0 6px 18px rgba(26, 115, 232, 0.16);
  transform: translateY(-1px);
}

.video-button-icon {
  position: relative;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 4px 12px rgba(26, 115, 232, 0.24);
}

.video-button-icon::before {
  display: block;
  width: 0;
  height: 0;
  margin-left: 2px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid #fff;
  content: "";
}

.product-panel {
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 18px;
  background:
    radial-gradient(circle at 90% 5%, rgba(26, 115, 232, 0.13), transparent 16rem),
    radial-gradient(circle at 4% 92%, rgba(52, 168, 83, 0.1), transparent 15rem),
    #fff;
  box-shadow: var(--shadow-strong);
}

.panel-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  margin-bottom: 16px;
  color: #3c4043;
}

.panel-top span:last-child {
  color: var(--muted);
  font-size: 13px;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.task-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.task-list div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 18px;
  padding: 12px;
  background: var(--surface);
}

.task-list div:hover {
  border-color: var(--line);
  background: #fff;
}

.task-list small {
  color: var(--muted);
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 11px 22px;
  font-weight: 700;
  cursor: pointer;
  line-height: 1.2;
}

.button.soft {
  background: var(--surface-strong);
  color: #3c4043;
}

.button.primary {
  background: var(--blue);
  color: #fff;
}

.button:disabled,
.button[aria-disabled="true"] {
  cursor: wait;
  opacity: 0.68;
}

.button.outline {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--blue);
}

.button.full {
  width: 100%;
}

.video-modal,
.cabinet-modal,
.payment-contact-modal,
.payment-promo-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 40px);
}

.video-modal[hidden],
.cabinet-modal[hidden],
.payment-contact-modal[hidden],
.payment-promo-modal[hidden] {
  display: none;
}

.video-modal-backdrop,
.cabinet-modal-backdrop,
.payment-contact-modal-backdrop,
.payment-promo-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(32, 33, 36, 0.62);
  backdrop-filter: blur(10px);
}

.video-modal-panel,
.cabinet-modal-panel,
.payment-contact-modal-panel,
.payment-promo-modal-panel {
  position: relative;
  z-index: 1;
  width: min(940px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  padding: 14px;
  background: #fff;
  box-shadow: 0 26px 80px rgba(32, 33, 36, 0.3);
}

.cabinet-modal-panel,
.payment-contact-modal-panel,
.payment-promo-modal-panel {
  width: min(430px, 100%);
}

.video-modal-top,
.cabinet-modal-top,
.payment-contact-modal-top,
.payment-promo-modal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 4px 4px 12px 10px;
}

.modal-title {
  margin: 0;
  font-weight: 800;
  font-size: 18px;
  line-height: 1.2;
}

.video-modal-close,
.cabinet-modal-close,
.payment-contact-modal-close,
.payment-promo-modal-close {
  position: relative;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--text);
  cursor: pointer;
}

.video-modal-close::before,
.video-modal-close::after,
.cabinet-modal-close::before,
.cabinet-modal-close::after,
.payment-contact-modal-close::before,
.payment-contact-modal-close::after,
.payment-promo-modal-close::before,
.payment-promo-modal-close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.video-modal-close::before,
.cabinet-modal-close::before,
.payment-contact-modal-close::before,
.payment-promo-modal-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.video-modal-close::after,
.cabinet-modal-close::after,
.payment-contact-modal-close::after,
.payment-promo-modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.video-frame {
  overflow: hidden;
  border-radius: 16px;
  background: #0f172a;
  aspect-ratio: 16 / 9;
}

.video-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

body.video-modal-open,
body.cabinet-modal-open,
body.payment-contact-modal-open,
body.payment-promo-modal-open {
  overflow: hidden;
}

.cabinet-login-copy {
  margin: 0;
  padding: 6px 10px 8px;
  color: var(--muted);
  font-size: 15px;
}

.telegram-login-slot {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  padding: 16px 10px;
}

.telegram-app-login-button {
  display: flex;
  width: calc(100% - 20px);
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin: 8px 10px 0;
  border-radius: 14px;
  background: linear-gradient(180deg, #2aabee 0%, #229ed9 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(34, 158, 217, 0.24);
}

.telegram-app-login-button:hover {
  color: #fff;
  background: #1d95cd;
}

.cabinet-login-hint {
  margin: 0;
  padding: 8px 16px 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
}

.cabinet-login-status {
  min-height: 24px;
  margin: 0;
  padding: 0 10px 10px;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.cabinet-login-status.error {
  color: var(--red);
}

.quick-links {
  width: min(840px, calc(100% - 32px));
  margin: -26px auto 76px;
  justify-content: center;
  gap: clamp(12px, 3vw, 28px);
  flex-wrap: wrap;
}

.quick-links a {
  display: grid;
  justify-items: center;
  gap: 10px;
  min-width: 92px;
  color: #3c4043;
  font-size: 14px;
}

.quick-icon,
.card-icon {
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.quick-icon {
  width: 54px;
  height: 54px;
  font-size: 20px;
}

.quick-icon.multi {
  position: relative;
  background:
    linear-gradient(135deg, var(--blue) 0 25%, var(--red) 25% 50%, var(--yellow) 50% 75%, var(--green) 75%);
}

.quick-icon.multi::before,
.quick-icon.multi::after {
  position: absolute;
  border-radius: 999px;
  background: #fff;
  content: "";
}

.quick-icon.multi::before {
  width: 18px;
  height: 3px;
}

.quick-icon.multi::after {
  width: 3px;
  height: 18px;
}

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto 64px;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(280px, 0.42fr);
  gap: 34px;
  align-items: end;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.intro h2,
.audience-note h2,
.audience-note h3,
.intro-copy h2,
.section-heading h2,
.section-heading h3,
.lead-copy h3,
.lead-copy h2 {
  margin-bottom: 0;
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
}

.intro > p,
.intro-copy > p,
.lead-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 19px);
}

.lead-copy .section-label {
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 500;
}

.intro-with-phone .intro-copy h2 {
  font-size: clamp(26px, 2.6vw, 38px);
}

.intro-with-phone .intro-lead {
  margin: 24px 0 0;
  color: var(--text);
  font-weight: 700;
}

.section-heading {
  max-width: 840px;
  margin-bottom: 20px;
}

.cards-grid,
.price-grid,
.results {
  display: grid;
  gap: 18px;
}

.cards-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-section .cards-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.inside-with-image {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(280px, 0.42fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.inside-with-image .section-heading {
  margin-bottom: 0;
}

.inside-list {
  margin-top: 24px;
}

.inside-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.inside-visual img {
  display: block;
  width: min(100%, 420px);
  height: auto;
  image-rendering: pixelated;
  filter: drop-shadow(0 20px 42px rgba(26, 115, 232, 0.12));
}

.role-card,
.result-card,
.price-card,
.faq details,
.lead-section {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.role-card {
  padding: 22px;
}

.role-card:hover,
.price-card:hover {
  box-shadow: var(--shadow-strong);
}

.card-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  font-size: 18px;
}

.role-card h3,
.result-card h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.18;
}

.role-card p,
.result-card p,
.price-card p,
.faq p {
  margin-bottom: 0;
  color: var(--muted);
}

.process {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
  padding-top: 4px;
  background: #fff;
}

.process .section-heading {
  max-width: 460px;
  margin-bottom: 0;
}

.process .section-label {
  display: block;
  margin-bottom: 14px;
  color: var(--muted);
}

.process .section-heading h2 {
  font-size: clamp(30px, 3.3vw, 42px);
  line-height: 1.08;
}

.timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.timeline > :is(a, div) {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  column-gap: 18px;
  min-height: 104px;
  align-content: center;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px 20px;
  background: #fff;
  box-shadow: var(--shadow);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

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

.timeline a:hover {
  border-color: rgba(26, 115, 232, 0.45);
  box-shadow: var(--shadow-strong);
  transform: translateY(-1px);
}

.timeline a:focus-visible {
  outline: 3px solid rgba(26, 115, 232, 0.32);
  outline-offset: 3px;
}

.timeline span {
  display: grid;
  width: 36px;
  height: 36px;
  grid-row: 1 / span 2;
  margin: 0;
  place-items: center;
  border-radius: 50%;
  background: rgba(26, 115, 232, 0.08);
  color: var(--blue);
  font-weight: 700;
  box-shadow: none;
}

.timeline > :nth-child(2) span {
  background: rgba(234, 67, 53, 0.08);
  color: var(--red);
}

.timeline > :nth-child(3) span {
  background: rgba(251, 188, 4, 0.16);
  color: #9a6a00;
}

.timeline b {
  display: block;
  grid-column: 2;
  margin-bottom: 6px;
  font-size: 20px;
  line-height: 1.16;
}

.timeline p {
  grid-column: 2;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.results {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.result-card {
  padding: 28px;
}

.output-section {
  border-radius: 0;
  padding: 0;
  background: transparent;
}

.tasks-section,
.proof-output-section,
.fit-section {
  border-radius: 32px;
  padding: clamp(24px, 4vw, 42px);
  background:
    radial-gradient(circle at 92% 12%, rgba(26, 115, 232, 0.10), transparent 16rem),
    radial-gradient(circle at 8% 86%, rgba(251, 188, 4, 0.14), transparent 14rem),
    var(--surface);
}

.task-demo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.task-demo-card,
.fit-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  background: #fff;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.task-demo-card:hover,
.fit-card:hover {
  box-shadow: var(--shadow-strong);
  transform: translateY(-2px);
}

.task-demo-card h3,
.fit-card h3 {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: clamp(19px, 1.5vw, 22px);
  line-height: 1.16;
}

.task-demo-card p:last-child,
.fit-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.task-demo-card.user-task {
  border-color: rgba(26, 115, 232, 0.26);
}

.task-demo-card.result-task {
  border-color: rgba(52, 168, 83, 0.26);
}

.prompt-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.prompt-chip-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid rgba(26, 115, 232, 0.16);
  border-radius: 999px;
  padding: 8px 13px;
  background: #fff;
  color: #3c4043;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  box-shadow: 0 1px 2px rgba(60, 64, 67, 0.08);
}

.proof-output-section {
  background:
    radial-gradient(circle at 88% 10%, rgba(52, 168, 83, 0.11), transparent 16rem),
    radial-gradient(circle at 10% 92%, rgba(26, 115, 232, 0.10), transparent 14rem),
    var(--surface);
}

.proof-output-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.proof-output-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  background: #fff;
  box-shadow: var(--shadow);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.proof-output-card:hover {
  border-color: rgba(26, 115, 232, 0.22);
  box-shadow: var(--shadow-strong);
  transform: translateY(-2px);
}

.proof-output-card.featured-proof {
  border-color: rgba(52, 168, 83, 0.30);
  background:
    radial-gradient(circle at 100% 0%, rgba(52, 168, 83, 0.11), transparent 9rem),
    #fff;
}

.proof-output-card h3 {
  margin: 0 0 14px;
  font-family: var(--font-heading);
  font-size: clamp(19px, 1.5vw, 22px);
  line-height: 1.16;
}

.proof-output-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: #3c4043;
  line-height: 1.45;
}

.proof-output-list li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 9px;
}

.proof-output-list li::before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
}

.proof-output-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
  border: 1px solid rgba(26, 115, 232, 0.16);
  border-radius: 22px;
  padding: 18px 20px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(60, 64, 67, 0.08);
}

.proof-output-note p {
  max-width: 720px;
  margin: 0;
  color: #3c4043;
  line-height: 1.5;
}

.output-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.output-card {
  min-height: 250px;
  border: 1px solid rgba(26, 115, 232, 0.14);
  border-radius: 18px;
  padding: 24px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(60, 64, 67, 0.08);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.output-card:hover {
  border-color: rgba(26, 115, 232, 0.24);
  box-shadow: 0 14px 34px rgba(60, 64, 67, 0.12);
  transform: translateY(-2px);
}

.output-kicker {
  width: fit-content;
  margin-bottom: 18px;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(26, 115, 232, 0.08);
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.output-card h3 {
  margin-bottom: 10px;
  font-family: var(--font-heading);
  font-size: 22px;
  line-height: 1.12;
}

.output-card p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.fit-section {
  background:
    radial-gradient(circle at 92% 12%, rgba(52, 168, 83, 0.12), transparent 16rem),
    radial-gradient(circle at 8% 86%, rgba(26, 115, 232, 0.10), transparent 14rem),
    var(--surface);
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.seo-demand-section,
.intent-section,
.blog-links-section {
  border-radius: 32px;
  padding: clamp(24px, 4vw, 42px);
  background: var(--surface);
}

.seo-demand-section {
  border-radius: 0;
  padding: 0;
  background: transparent;
}

.seo-demand-grid,
.blog-links-grid {
  display: grid;
  gap: 16px;
}

.seo-demand-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.blog-links-section {
  width: min(1180px, calc(100% - 32px));
  max-width: none;
  border-radius: 0;
  padding: 0;
  background: transparent !important;
}

.blog-links-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
}

.seo-demand-card,
.blog-link-card {
  min-height: 208px;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  background: #fff;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.blog-link-card {
  display: grid;
  min-height: auto;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  padding: 0;
  width: 100%;
  border-radius: 22px;
}

.blog-link-media {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--surface-strong);
}

.blog-link-media img,
.blog-link-card > img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.blog-link-body {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px 18px 20px;
}

.seo-demand-card:hover,
.blog-link-card:hover {
  box-shadow: var(--shadow-strong);
  transform: translateY(-2px);
}

.seo-demand-card h3 {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: 20px;
  line-height: 1.16;
}

.seo-demand-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.intent-copy {
  display: grid;
  gap: 16px;
  max-width: 920px;
}

.intent-copy p {
  margin: 0;
  color: #3c4043;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.45;
}

.blog-link-tag {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(52, 168, 83, 0.10);
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.blog-link-title {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(20px, 1.6vw, 24px);
  font-weight: 800;
  line-height: 1.12;
  color: var(--text);
}

.blog-link-text {
  display: block;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.metric {
  display: block;
  margin-bottom: 18px;
  font-size: clamp(58px, 8vw, 92px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.price-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.payment-contact-copy {
  margin: 0;
  padding: 6px 10px 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.payment-contact-field {
  display: block;
  padding: 0 10px;
}

.payment-contact-field span {
  display: block;
  margin-bottom: 8px;
  color: #1f2937;
  font-size: 15px;
  font-weight: 800;
}

.payment-contact-field input {
  width: 100%;
  min-height: 58px;
  border: 2px solid #90a4c0;
  border-radius: 8px;
  padding: 0 16px;
  background: #fff;
  color: #111827;
  font: inherit;
  font-size: 18px;
  font-weight: 700;
  outline: none;
}

.payment-contact-field input::placeholder {
  color: #7c8798;
  font-weight: 500;
}

.payment-contact-field input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 5px rgba(26, 115, 232, 0.16);
}

.payment-contact-note {
  min-height: 22px;
  margin: 10px 0 0;
  padding: 0 10px;
  color: #5f6d7e;
  font-size: 14px;
  line-height: 1.45;
}

.payment-contact-note.error {
  color: #b42318;
  font-weight: 700;
}

.payment-contact-actions {
  padding: 14px 10px 10px;
}

.payment-promo-link {
  display: block;
  width: fit-content;
  margin: 12px auto 0;
  border: 0;
  padding: 4px 0;
  background: transparent;
  color: var(--blue);
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}

.payment-promo-link:hover,
.payment-promo-link:focus-visible {
  color: #1558b0;
}

.payment-promo-modal {
  z-index: 60;
}

.price-card {
  display: grid;
  min-height: 392px;
  align-content: start;
  padding: 24px;
  position: relative;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.price-card:hover {
  transform: translateY(-2px);
}

.price-card.featured {
  border-color: rgba(26, 115, 232, 0.32);
  background:
    radial-gradient(circle at 88% 16%, rgba(26, 115, 232, 0.12), transparent 14rem),
    #fff;
}

.price-card.custom-plan {
  border-color: rgba(52, 168, 83, 0.32);
  background:
    radial-gradient(circle at 88% 16%, rgba(52, 168, 83, 0.12), transparent 14rem),
    #fff;
}

.price-card.custom-plan strong {
  white-space: nowrap;
}

.button.custom-cta {
  background: #1f6f43;
  color: #fff;
  box-shadow: 0 6px 16px rgba(52, 168, 83, 0.22);
}

.button.custom-cta:hover {
  background: #195a37;
}

.price-card strong {
  display: block;
  margin-bottom: 14px;
  color: var(--text);
  font-family: var(--font-heading);
  font-size: clamp(30px, 2.8vw, 38px);
  line-height: 1;
  letter-spacing: 0;
}

.price-card .button {
  width: fit-content;
  margin-top: 24px;
}

.plan-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  border-radius: 999px;
  padding: 7px 10px;
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.plan-features {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  color: #3c4043;
  font-size: 15px;
  line-height: 1.35;
}

.plan-features li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 9px;
}

.plan-features li::before {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: rgba(52, 168, 83, 0.12);
  color: var(--green);
  content: "✓";
  font-size: 12px;
  font-weight: 900;
}

.value-section {
  border-radius: 32px;
  padding: clamp(24px, 4vw, 42px);
  background:
    radial-gradient(circle at 92% 14%, rgba(52, 168, 83, 0.12), transparent 16rem),
    radial-gradient(circle at 8% 86%, rgba(251, 188, 4, 0.14), transparent 14rem),
    var(--surface);
}

.value-note {
  max-width: 860px;
  margin: 18px 0 0;
  color: #3c4043;
  font-size: clamp(17px, 1.5vw, 19px);
  display: grid;
  gap: 10px;
}

.value-note p {
  margin: 0;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq .section-heading {
  display: block;
  max-width: 760px;
  margin-bottom: 24px;
  text-align: left;
}

.faq .faq-label {
  display: block;
  width: 100%;
  margin: 0 0 12px !important;
  padding: 0 !important;
  text-align: left !important;
  transform: none !important;
}

.faq details {
  padding: 0 22px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.faq details[open] {
  box-shadow: var(--shadow-strong);
  transform: translateY(-1px);
}

.faq summary {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  cursor: pointer;
  padding: 20px 0;
  font-size: 20px;
  font-weight: 700;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::before {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 8px;
  background: rgba(26, 115, 232, 0.10);
  color: var(--blue);
  content: "+";
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.faq details[open] summary::before {
  content: "−";
}

.faq p {
  padding: 0 0 20px 46px;
}

.lead-section {
  display: grid;
  grid-template-columns: minmax(0, 0.52fr) minmax(320px, 0.48fr);
  gap: 24px;
  padding: clamp(22px, 3vw, 32px);
  background:
    radial-gradient(circle at 92% 16%, rgba(52, 168, 83, 0.12), transparent 16rem),
    #fff;
}

.lead-form {
  display: grid;
  gap: 16px;
}

.lead-form .button {
  margin-top: 10px;
}

.lead-success {
  margin: 0;
  border: 1px solid rgba(52, 168, 83, 0.22);
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(52, 168, 83, 0.1);
  color: #1f6f43;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.lead-success[hidden] {
  display: none;
}

label {
  display: grid;
  gap: 7px;
}

label span {
  color: #3c4043;
  font-size: 14px;
  font-weight: 700;
}

input:not([type="checkbox"]),
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  background: #fff;
  color: var(--text);
  outline: none;
}

input:not([type="checkbox"]):focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(26, 115, 232, 0.1);
}

.legal-checkbox {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  cursor: pointer;
}

.legal-checkbox input {
  -webkit-appearance: none;
  appearance: none;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin: 1px 0 0;
  padding: 0;
  border: 1.5px solid rgba(60, 64, 67, 0.4);
  border-radius: 7px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.legal-checkbox input::before {
  content: "";
  width: 10px;
  height: 6px;
  border: 2px solid #fff;
  border-top: 0;
  border-right: 0;
  transform: rotate(-45deg) scale(0);
  transform-origin: center;
  transition: transform 0.14s ease;
}

.legal-checkbox input:hover {
  border-color: rgba(26, 115, 232, 0.55);
}

.legal-checkbox input:focus-visible {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(26, 115, 232, 0.14);
}

.legal-checkbox input:checked {
  border-color: var(--blue);
  background: var(--blue);
  box-shadow: 0 10px 22px rgba(26, 115, 232, 0.18);
}

.legal-checkbox input:checked::before {
  transform: rotate(-45deg) scale(1);
}

.legal-checkbox input[aria-invalid="true"] {
  border-color: #d93025;
  box-shadow: 0 0 0 4px rgba(217, 48, 37, 0.12);
}

.legal-checkbox span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.42;
}

.legal-checkbox a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

textarea {
  resize: vertical;
}

.footer {
  justify-content: space-between;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 34px;
  color: var(--muted);
  font-size: 14px;
}

.mobile-sticky-cta {
  display: none;
}

.motion-ready .proof-card,
.motion-ready .role-card,
.motion-ready .task-demo-card,
.motion-ready .proof-output-card,
.motion-ready .fit-card,
.motion-ready .output-card,
.motion-ready .price-card,
.motion-ready .faq details {
  opacity: 0;
  transform: translateY(14px);
}

.motion-ready .proof-card.is-visible,
.motion-ready .role-card.is-visible,
.motion-ready .task-demo-card.is-visible,
.motion-ready .proof-output-card.is-visible,
.motion-ready .fit-card.is-visible,
.motion-ready .output-card.is-visible,
.motion-ready .price-card.is-visible,
.motion-ready .faq details.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.48s ease, transform 0.48s ease, box-shadow 0.2s ease;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 840px) {
  .topbar {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .mobile-consult-button {
    display: none;
    align-items: center;
    justify-content: center;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: 0;
  }

  .nav {
    display: none;
    width: 100%;
    align-items: stretch;
    flex-direction: column;
    gap: 6px;
    padding: 8px 0 2px;
  }

  .topbar.menu-open .nav {
    display: flex;
  }

  .nav a,
  .nav-link {
    width: 100%;
    padding: 11px 13px;
    text-align: left;
  }

  .nav-button {
    text-align: center;
  }

  .nav .nav-button {
    justify-content: center;
  }

  .hero {
    grid-template-columns: 1fr;
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    min-height: auto;
    padding-top: 42px;
  }

  .proof-stats,
  .section,
  .footer {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
  }

  .office-showcase {
    order: 2;
  }

  .hero-copy {
    order: 1;
  }

  .hero h1 {
    font-size: clamp(36px, 10vw, 48px);
    overflow-wrap: anywhere;
  }

  .hero-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .hero-actions .video-button {
    width: 100%;
    justify-content: center;
  }

  .quick-links {
    margin-top: 20px;
  }

  .proof-stats {
    grid-template-columns: 1fr;
  }

  .proof-card {
    min-height: auto;
  }

  .audience-note {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 56px;
  }

  .audience-copy {
    max-width: none;
    padding-top: 0;
  }

  .intro-with-phone,
  .inside-with-image,
  .intro-copy {
    grid-template-columns: 1fr;
  }

  .intro-phone {
    justify-content: center;
  }

  .inside-visual {
    order: -1;
  }

  .inside-visual img {
    width: min(78vw, 360px);
  }

  .intro-phone img {
    width: min(70vw, 290px);
  }

  .intro,
  .lead-section {
    grid-template-columns: 1fr;
  }

  .process {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .cards-grid,
  .task-demo-grid,
  .proof-output-grid,
  .fit-grid,
  .timeline,
  .results,
  .price-grid,
  .output-grid,
  .seo-demand-grid,
  .blog-links-grid {
    grid-template-columns: 1fr;
  }

  .trust-section .cards-grid {
    grid-template-columns: 1fr !important;
  }

  .output-card,
  .task-demo-card,
  .proof-output-card,
  .fit-card,
  .seo-demand-card,
  .blog-link-card {
    min-height: auto;
  }

  .prompt-chip-grid {
    align-items: stretch;
    flex-direction: column;
  }

  .prompt-chip-grid span {
    width: 100%;
    justify-content: flex-start;
    border-radius: 16px;
  }
}

@media (max-width: 520px) {
  .brand b {
    font-size: 16px;
  }

  .mobile-consult-button {
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }

  .nav {
    gap: 4px;
  }

  .hero h1 {
    font-size: 40px;
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  .hero-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .hero-actions .video-button {
    width: 100%;
    justify-content: center;
  }

  .search-card {
    grid-template-columns: auto 1fr;
    border-radius: 28px;
  }

  .search-text {
    white-space: normal;
  }

  .quick-links {
    justify-content: flex-start;
  }

  .quick-links a {
    min-width: 74px;
  }

  .quick-icon {
    width: 48px;
    height: 48px;
  }

  .office-zone-nav {
    right: 8px;
    bottom: 8px;
    left: 8px;
    justify-content: flex-start;
    border-radius: 16px;
    padding: 7px;
    scrollbar-width: none;
  }

  .office-zone-nav::-webkit-scrollbar {
    display: none;
  }

  .office-zone-nav button {
    min-width: 68px;
    padding: 8px 9px;
    font-size: 11px;
  }

  .office-explainer {
    top: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
    border-radius: 14px;
    padding: 11px 12px;
    font-size: 11px;
    line-height: 1.38;
  }

  .office-poster-copy {
    margin: 16px 16px 72px;
    padding: 12px 13px;
  }

  .office-poster-copy b {
    font-size: 18px;
  }

  .intro h2,
  .section-heading h2,
  .section-heading h3,
  .lead-copy h3,
  .lead-copy h2 {
    font-size: 32px;
  }

  .process {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-top: 0;
  }

  .process .section-heading h2 {
    font-size: 34px;
  }

  .timeline > :is(a, div) {
    grid-template-columns: 44px minmax(0, 1fr);
    min-height: auto;
    padding: 22px;
  }

  .timeline span {
    width: 36px;
    height: 36px;
  }

  body {
    padding-bottom: 74px;
  }

  .mobile-sticky-cta {
    position: fixed;
    right: 14px;
    bottom: 14px;
    left: 14px;
    z-index: 30;
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--blue);
    color: #fff;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 18px 38px rgba(26, 115, 232, 0.34);
  }
}

@media (max-width: 420px) {
  .topbar {
    gap: 10px;
  }

  .mobile-consult-button {
    display: none;
  }

  .hero h1 {
    font-size: 38px;
  }
}

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