:root {
  --bg: #f7fbff;
  --surface: #ffffff;
  --surface-soft: #f3f7ff;
  --text: #0b1533;
  --muted: #65708a;
  --line: #dce5f5;
  --blue: #0f55ff;
  --blue-dark: #0839cc;
  --cyan: #15c5ff;
  --violet: #8b5cf6;
  --rose: #ff5f7c;
  --shadow: 0 22px 60px rgba(35, 73, 145, .14);
  --card-shadow: 0 18px 45px rgba(44, 74, 140, .11);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 4%, rgba(20, 160, 255, .12), transparent 26%),
    radial-gradient(circle at 90% 18%, rgba(139, 92, 246, .13), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 42%, #ffffff 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

svg {
  display: block;
}

.page-shell {
  width: min(1480px, calc(100% - 36px));
  margin: 10px auto;
  overflow: hidden;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(206, 216, 238, .85);
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(18, 45, 92, .08);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  min-height: 72px;
  padding: 0 clamp(24px, 5vw, 68px);
  background: rgba(255, 255, 255, .82);
  border-bottom: 1px solid rgba(226, 233, 246, .7);
  backdrop-filter: blur(18px);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  color: #0c2f96;
  font-size: clamp(23px, 2vw, 30px);
  font-weight: 900;
}

.logo-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  overflow: hidden;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 12px;
  background:
    radial-gradient(circle at 74% 18%, rgba(255, 255, 255, .95), transparent 9%),
    linear-gradient(145deg, #0f55ff 0%, #235cff 45%, #8b5cf6 100%);
  box-shadow:
    0 18px 32px rgba(15, 85, 255, .26),
    inset 0 1px 0 rgba(255, 255, 255, .42);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0, 31, 118, .32);
}

.logo-mark::before {
  position: absolute;
  inset: 8px 11px;
  content: "";
  border: 2px solid rgba(255, 255, 255, .34);
  border-right: 0;
  border-radius: 7px 0 0 7px;
  transform: skewX(-10deg);
}

.logo-mark::after {
  position: absolute;
  right: 9px;
  bottom: 9px;
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 999px;
  background: #31d4ff;
  box-shadow: 0 0 18px rgba(49, 212, 255, .95);
}

.logo-name {
  letter-spacing: 0;
  background: linear-gradient(90deg, #092a84, #0f55ff 58%, #7d5cff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 4vw, 56px);
  color: #26324d;
  font-size: 15px;
  font-weight: 600;
}

.site-nav a,
.footer-column a {
  transition: color .2s ease, transform .2s ease;
}

.site-nav a:hover,
.footer-column a:hover {
  color: var(--blue);
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 50px;
  padding: 0 26px;
  border-radius: var(--radius);
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.header-action,
.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #0538ee);
  box-shadow: 0 14px 26px rgba(15, 85, 255, .26);
}

.header-action:hover,
.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(15, 85, 255, .32);
}

.button-secondary {
  color: #23304a;
  background: rgba(255, 255, 255, .72);
  border: 1px solid var(--line);
}

.button-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 85, 255, .45);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  transition: transform .2s ease, opacity .2s ease;
}

.mobile-only {
  display: none;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(380px, 1.1fr);
  align-items: center;
  gap: clamp(34px, 5vw, 78px);
}

.hero-copy,
.about-copy {
  min-width: 0;
}

.hero {
  min-height: auto;
  padding: clamp(18px, 3.2vw, 38px) clamp(24px, 5vw, 68px) 28px;
  align-items: start;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin: 0 0 16px;
  padding: 0 18px;
  color: #3a75ff;
  border: 1px solid rgba(50, 120, 255, .4);
  border-radius: 999px;
  background: rgba(255, 255, 255, .7);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 610px;
  margin: 0;
  font-size: clamp(36px, 3.6vw, 56px);
  line-height: 1.02;
  letter-spacing: 0;
  overflow-wrap: normal;
}

.hero h1 span {
  color: var(--blue);
}

.hero h1 strong,
.section-heading span,
.section-title-left span,
.cta-section span {
  color: var(--violet);
}

.hero-text {
  max-width: 580px;
  margin: 14px 0 20px;
  color: #34415f;
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.48;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 100%;
}

.hero-actions .button {
  min-width: 245px;
  max-width: 100%;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
  color: #7a849d;
  font-weight: 500;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.trust-row svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #4b83ff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-visual {
  position: relative;
  min-width: 0;
  min-height: 390px;
  overflow: hidden;
  align-self: center;
  background: url("assets/hero-ai.webp") center / contain no-repeat;
}

.hero-art {
  display: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(16px);
}

.orb-cyan {
  inset: 120px auto auto 0;
  width: 290px;
  height: 290px;
  background: rgba(35, 201, 255, .14);
}

.orb-violet {
  right: 20px;
  bottom: 70px;
  width: 310px;
  height: 310px;
  background: rgba(126, 93, 255, .13);
}

.wire {
  fill: none;
  stroke: #74d9ff;
  stroke-width: 3;
  stroke-linecap: round;
  opacity: .85;
}

.wire.second {
  stroke: #8f75ff;
  opacity: .72;
}

.node {
  fill: #fff;
  stroke: #8e9dff;
  stroke-width: 4;
}

.base-layer {
  fill: #d7e7ff;
}

.base-layer.top {
  fill: #eff6ff;
}

.chip {
  fill: url(#blueGlow);
}

.ai-text {
  fill: #fff;
  font-size: 42px;
  font-weight: 800;
}

.bot {
  animation: float 5.6s ease-in-out infinite;
}

.floating-card {
  animation: float 6.8s ease-in-out infinite;
}

.video-card {
  animation-delay: -1.4s;
}

.metric {
  fill: #132044;
  font-size: 24px;
  font-weight: 800;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.services-section {
  width: calc(100% - clamp(24px, 5vw, 68px) * 2);
  margin: 0 auto;
  padding: clamp(34px, 4vw, 50px) clamp(22px, 3vw, 34px) clamp(30px, 3.5vw, 42px);
  background:
    linear-gradient(120deg, rgba(235, 247, 255, .92), rgba(255, 255, 255, .9) 46%, rgba(244, 240, 255, .9));
  border-radius: 8px;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 30px;
  text-align: center;
}

.section-heading h2,
.section-title-left h2 {
  margin: 0;
  font-size: clamp(31px, 2.8vw, 44px);
  line-height: 1.15;
}

.section-heading p {
  max-width: 760px;
  margin: 14px auto 0;
  color: #4f5b75;
  font-size: 17px;
  line-height: 1.68;
}

.section-heading h2::after,
.section-title-left h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  margin: 14px auto 0;
  background: linear-gradient(90deg, var(--blue), var(--violet));
  border-radius: 999px;
}

.section-title-left h2::after {
  margin-left: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 28px);
}

.service-card,
.benefit-card {
  border: 1px solid rgba(205, 216, 239, .9);
  border-radius: 8px;
  background: rgba(255, 255, 255, .82);
  box-shadow: var(--card-shadow);
}

.service-card {
  position: relative;
  display: flex;
  min-height: 330px;
  overflow: hidden;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(22px, 2.3vw, 30px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(250, 253, 255, .9));
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.service-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--violet));
  opacity: .82;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(93, 132, 255, .5);
  box-shadow: 0 22px 48px rgba(44, 74, 140, .14);
}

.service-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.service-card-head span {
  color: #45607f;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
}

.service-icon,
.benefit-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  border-radius: 8px;
  margin-bottom: 0;
}

.service-icon svg,
.service-icon img,
.benefit-icon svg,
.footer-column svg,
.socials svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-icon img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.icon-site {
  color: #246bff;
  background: linear-gradient(135deg, #e5f2ff, #eef5ff);
}

.icon-telegram {
  color: #fff;
  background: linear-gradient(135deg, #37cfff, #1b8bdb);
}

.icon-ai {
  background: linear-gradient(135deg, #f2efff, #f7fbff);
}

.icon-youtube {
  background: linear-gradient(135deg, #fff1f3, #fff9f9);
}

.youtube-proof {
  display: grid;
  grid-template-columns: .9fr 1.25fr;
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  padding: 64px clamp(24px, 5vw, 68px) 34px;
}

.youtube-proof .eyebrow {
  margin-bottom: 22px;
}

.youtube-proof h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(32px, 3vw, 50px);
  line-height: 1.12;
}

.youtube-proof p {
  max-width: 620px;
  margin: 22px 0 0;
  color: #4f5b75;
  font-size: 17px;
  line-height: 1.72;
}

.proof-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.proof-stats span {
  min-height: 96px;
  padding: 18px;
  border: 1px solid rgba(205, 216, 239, .9);
  border-radius: 8px;
  background: rgba(255, 255, 255, .78);
  color: #66718b;
  box-shadow: var(--card-shadow);
}

.proof-stats strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 22px;
}

.youtube-proof-image {
  padding: 16px;
  border: 1px solid rgba(205, 216, 239, .85);
  border-radius: 8px;
  background: rgba(255, 255, 255, .82);
  box-shadow: var(--shadow);
}

.youtube-proof-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.service-card h3,
.benefit-card h3 {
  margin: 0 0 12px;
  font-size: clamp(20px, 1.6vw, 24px);
  line-height: 1.18;
}

.service-card p,
.benefit-card p,
.about-copy p,
.footer-brand p {
  margin: 0;
  color: #4f5b75;
  line-height: 1.72;
  overflow-wrap: anywhere;
}

.service-card p {
  font-size: 15.5px;
  line-height: 1.62;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.service-tags li {
  padding: 7px 10px;
  color: #28528d;
  border: 1px solid rgba(121, 158, 230, .34);
  border-radius: 8px;
  background: rgba(238, 246, 255, .78);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  padding-top: 22px;
  color: var(--blue);
  font-weight: 800;
  transition: gap .2s ease, color .2s ease;
}

.service-link:hover {
  gap: 13px;
  color: var(--blue-dark);
}

.round-link {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-top: auto;
  color: #193055;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  font-size: 25px;
  transition: color .2s ease, transform .2s ease, border-color .2s ease;
}

.round-link:hover {
  color: var(--blue);
  border-color: rgba(15, 85, 255, .45);
  transform: translateX(4px);
}

.about-section {
  padding: 64px clamp(24px, 5vw, 68px) 28px;
}

.about-copy {
  align-self: start;
}

.about-copy p {
  max-width: 660px;
  margin-top: 20px;
  font-size: 16px;
}

.about-visual {
  position: relative;
  min-width: 0;
  min-height: 480px;
  overflow: hidden;
}

.about-visual svg {
  position: relative;
  z-index: 1;
  width: min(100%, 640px);
  margin-left: auto;
}

.about-visual img {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 650px);
  height: auto;
  margin-left: auto;
  filter: drop-shadow(0 24px 40px rgba(18, 45, 92, .12));
}

.about-circle {
  position: absolute;
  inset: 28px 6% auto auto;
  width: min(430px, 80%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(223, 239, 255, .75), rgba(235, 225, 255, .72));
}

.desk-shadow {
  fill: rgba(7, 25, 68, .13);
}

.monitor {
  filter: drop-shadow(0 22px 30px rgba(20, 48, 112, .2));
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  padding: 22px clamp(24px, 5vw, 68px) 28px;
}

.benefit-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  min-height: 160px;
  padding: 30px;
}

.benefit-icon {
  width: 66px;
  height: 66px;
  margin: 0;
}

.benefit-icon svg {
  width: 32px;
  height: 32px;
}

.shield {
  color: #fff;
  background: linear-gradient(135deg, #7aa8ff, #2558ff);
}

.target {
  color: #0f94bd;
  background: #e4fbff;
}

.analytics {
  color: #8f5fff;
  background: #f0eaff;
}

.case {
  color: #ef4565;
  background: #fff0f3;
}

.cta-section {
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: center;
  gap: 28px;
  margin: 34px clamp(24px, 5vw, 68px) 50px;
  padding: 28px clamp(28px, 5vw, 68px);
  border-radius: 8px;
  background: linear-gradient(105deg, #eaf8ff, #ffffff 52%, #f0e8ff);
  box-shadow: var(--card-shadow);
}

.megaphone img,
.megaphone svg {
  width: min(180px, 100%);
}

.megaphone img {
  display: block;
  height: auto;
  filter: drop-shadow(0 18px 28px rgba(60, 92, 190, .14));
}

.cta-copy {
  text-align: center;
}

.cta-copy h2 {
  max-width: 820px;
  margin: 0 auto 24px;
  font-size: clamp(27px, 2.4vw, 40px);
  line-height: 1.18;
}

.lead-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  align-items: start;
  gap: clamp(28px, 5vw, 70px);
  margin: 0 clamp(24px, 5vw, 68px) 48px;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(205, 216, 239, .9);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(241, 247, 255, .92)),
    radial-gradient(circle at 12% 10%, rgba(21, 197, 255, .16), transparent 28%);
  box-shadow: var(--shadow);
}

.lead-copy h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.12;
}

.lead-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 20px 0 0;
  color: #4f5b75;
  font-size: 17px;
  line-height: 1.72;
}

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

.lead-form label {
  min-width: 0;
}

.lead-form span {
  display: block;
  margin-bottom: 8px;
  color: #26324d;
  font-size: 14px;
  font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 15px;
  color: var(--text);
  border: 1px solid rgba(185, 201, 231, .9);
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
  font: inherit;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: rgba(15, 85, 255, .72);
  box-shadow: 0 0 0 4px rgba(15, 85, 255, .1);
}

.lead-form-wide {
  grid-column: 1 / -1;
}

.form-trap {
  position: absolute;
  left: -9999px;
}

.form-status {
  min-height: 22px;
  margin: -4px 0 0;
  color: #4f5b75;
  font-size: 14px;
  line-height: 1.45;
}

.form-status.is-success {
  color: #107a42;
}

.form-status.is-error {
  color: #c22d45;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.35fr 1fr .9fr;
  gap: 40px;
  padding: 24px clamp(24px, 5vw, 68px) 30px;
}

.footer-brand p {
  max-width: 300px;
  margin-top: 12px;
}

.footer-column h2 {
  margin: 0 0 16px;
  font-size: 16px;
}

.footer-column a {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 9px 0;
  color: #4f5b75;
  font-size: 14px;
}

.footer-column svg {
  width: 20px;
  height: 20px;
  color: var(--blue);
}

.socials {
  display: flex;
  gap: 18px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin: 0;
  border-radius: 50%;
}

.socials svg {
  width: 26px;
  height: 26px;
}

.socials a:nth-child(2) svg {
  color: var(--blue);
}

.copyright {
  grid-column: 1 / -1;
  margin: 12px 0 0;
  color: #8c95a8;
  text-align: center;
  font-size: 14px;
}

@media (max-width: 1180px) {
  .site-header {
    gap: 18px;
  }

  .site-nav {
    gap: 22px;
  }

  .section-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

.hero-copy {
  min-width: 0;
}

.about-copy {
  min-width: 0;
}

.hero-copy {
  max-width: 760px;
}

  .hero-visual,
  .about-visual {
    min-height: auto;
  }

  .hero-art,
  .about-visual img,
  .about-visual svg {
    margin: 0 auto;
  }

  .service-grid,
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .youtube-proof {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 310px;
  }

  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .page-shell {
    width: calc(100% - 18px);
    max-width: 760px;
    margin: 9px auto;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    min-height: 74px;
    padding: 0 20px;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: 74px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
    border-radius: 8px;
  }

  .site-nav a:hover {
    background: #f2f6ff;
  }

  .header-action {
    display: none;
  }

  .hero {
    padding: 22px 18px 22px;
  }

  .hero h1 {
    font-size: clamp(34px, 8.8vw, 46px);
    line-height: 1.03;
  }

  .hero-actions .button {
    flex: 1 1 240px;
  }

  .services-section {
    width: calc(100% - 28px);
  }

  .about-section {
    padding: 50px 22px 16px;
  }

  .benefit-grid {
    padding-inline: 22px;
  }

  .cta-section {
    grid-template-columns: 1fr;
    margin-inline: 22px;
    text-align: center;
  }

  .youtube-proof {
    padding-inline: 22px;
  }

  .proof-stats {
    grid-template-columns: 1fr;
  }

  .megaphone {
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 660px) {
  .page-shell {
    width: 100%;
    margin: 0;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .logo {
    font-size: 21px;
  }

  .logo img {
    width: 150px;
  }

  .logo-mark {
    width: 34px;
    height: 34px;
    font-size: 18px;
  }

  .logo-name {
    font-size: 21px;
  }

  .eyebrow {
    margin-bottom: 24px;
    font-size: 11px;
  }

  .services-section {
    width: 100%;
    max-width: none;
    margin-right: 0;
    margin-left: 0;
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero-text {
    margin: 12px 0 18px;
    font-size: 15px;
    line-height: 1.48;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero h1 {
    font-size: clamp(30px, 9.2vw, 36px);
    line-height: 1.04;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .hero-copy {
    width: 100%;
    max-width: 330px;
  }

  .hero-actions {
    width: 100%;
    max-width: 330px;
  }

  .hero-visual {
    display: none;
  }

  .hero h1 strong {
    overflow-wrap: anywhere;
  }

  .mobile-only {
    display: block;
  }

  .section-heading h2,
  .section-title-left h2 {
    font-size: 26px;
    overflow-wrap: anywhere;
  }

  .section-heading p {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.58;
  }

  .trust-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-top: 18px;
    font-size: 14px;
  }

  .service-grid,
  .benefit-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .service-grid {
    justify-items: stretch;
    width: 100%;
    max-width: none;
    min-width: 0;
  }

  .service-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: auto;
  }

  .benefit-card {
    grid-template-columns: auto 1fr;
    padding: 24px;
  }

  .cta-section {
    padding: 26px 20px;
  }

  .lead-section {
    grid-template-columns: 1fr;
    margin: 0 18px 40px;
    padding: 24px 20px;
  }

  .lead-form {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-top: 10px;
  }
}

@media (max-width: 480px) {
  .hero-copy {
    width: 100%;
    max-width: 330px;
  }

  .hero-actions .button {
    width: 100%;
    min-width: 0;
  }

  .service-grid {
    justify-items: stretch;
    width: 100%;
    min-width: 0;
  }

  .service-card {
    width: 100%;
    max-width: 100%;
    min-width: 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;
  }
}
