:root {
  --ink: #121826;
  --muted: #606978;
  --line: #e6e8ee;
  --soft: #f6f8fb;
  --blue: #1a73e8;
  --blue-dark: #174ea6;
  --green: #188038;
  --yellow: #fbbc04;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(18, 24, 38, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.55;
}

main {
  overflow: hidden;
}

img,
video {
  max-width: 100%;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: min(100%, 1440px);
  margin-right: auto;
  margin-left: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 10px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  grid-column: 2;
  grid-row: 1;
}

.brand img {
  display: block;
  width: 270px;
  height: 64px;
  object-fit: contain;
  object-position: center center;
}

.nav-links {
  display: flex;
  justify-content: flex-start;
  gap: 26px;
  grid-column: 1;
  grid-row: 1;
}

.header-cta {
  justify-self: end;
  grid-column: 3;
  grid-row: 1;
}

.language-toggle {
  justify-self: end;
  grid-column: 3;
  grid-row: 1;
  margin-right: 162px;
  width: 46px;
  height: 40px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 900;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.header-cta,
.primary-button,
.secondary-button,
.contact-links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.header-cta,
.primary-button {
  padding: 0 20px;
  color: var(--white);
  background: var(--blue);
}

.secondary-button,
.contact-links a {
  padding: 0 18px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
}

.header-cta:hover,
.primary-button:hover,
.secondary-button:hover,
.contact-links a:hover {
  transform: translateY(-1px);
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

.js-ready .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.js-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

main > section,
.site-footer {
  width: min(100%, 1440px);
  margin-right: auto;
  margin-left: auto;
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.hero {
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.92fr);
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 5vw, 66px);
  padding-top: clamp(28px, 4vw, 48px);
  padding-bottom: clamp(22px, 3vw, 40px);
  background: var(--white);
}

.hero-copy {
  justify-self: center;
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 4.35vw, 3.9rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.9rem, 3.5vw, 3.25rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.hero-text,
.section-copy p,
.proof-copy p,
.price-copy p,
.contact-copy p,
.process-grid p,
.site-footer {
  color: var(--muted);
}

.hero-text {
  max-width: 620px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 22px;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.hero-promise {
  display: grid;
  gap: 6px;
  width: min(100%, 560px);
  margin: 0 auto 22px;
  padding: 18px 20px;
  color: var(--white);
  background: #101828;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(18, 24, 38, 0.16);
}

.hero-promise strong {
  color: var(--white);
  font-size: clamp(1.75rem, 4vw, 2.7rem);
  line-height: 1;
}

.hero-promise span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 22px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.hero-points span {
  padding: 10px 12px;
  color: #2c3442;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-product {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
}

.hero-product img {
  display: block;
  width: min(100%, 600px);
  height: auto;
  object-fit: contain;
  animation: productFloat 4.8s ease-in-out infinite;
}

.products-hero {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  align-items: center;
  gap: clamp(28px, 6vw, 84px);
  background: var(--white);
}

.products-hero-copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.12rem;
}

.products-hero-image img {
  display: block;
  width: min(100%, 720px);
  height: auto;
  object-fit: contain;
  animation: productFloat 4.8s ease-in-out infinite;
}

.b2b-hero {
  background:
    linear-gradient(135deg, rgba(26, 115, 232, 0.08), transparent 42%),
    var(--white);
}

.quote-intro-section {
  background: var(--soft);
}

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

.quote-intro-grid article {
  min-height: 210px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.quote-intro-grid span {
  display: inline-flex;
  margin-bottom: 38px;
  color: var(--blue-dark);
  font-weight: 900;
}

.proof-section,
.product-strip,
.pricing-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
}

.product-feature-section {
  display: grid;
  gap: clamp(34px, 5vw, 64px);
  padding-top: clamp(36px, 5vw, 58px);
  background: var(--white);
}

.guarantee-band {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(20px, 4vw, 56px);
  align-items: center;
  padding-top: clamp(34px, 5vw, 56px);
  padding-bottom: clamp(34px, 5vw, 56px);
  color: var(--white);
  background: #101828;
}

.guarantee-band h2 {
  max-width: 620px;
  margin: 0;
  color: var(--white);
}

.guarantee-band .eyebrow {
  color: #8bb8ff;
}

.guarantee-band p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.8vw, 1.22rem);
  line-height: 1.7;
}

.how-section {
  background: var(--white);
}

.how-grid,
.benefits-grid {
  display: grid;
  max-width: 1180px;
  margin: 32px auto 0;
  gap: 16px;
}

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

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

.how-grid article,
.benefits-grid article {
  min-height: 220px;
  padding: 24px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.how-grid article:hover,
.benefits-grid article:hover {
  border-color: rgba(26, 115, 232, 0.34);
  transform: translateY(-4px);
}

.how-grid span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 46px;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border-radius: 999px;
  font-weight: 900;
}

.how-grid p,
.benefits-grid p {
  color: var(--muted);
}

.benefits-section {
  background: var(--soft);
}

.benefits-grid article {
  background: var(--white);
}

.product-feature {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 0.95fr);
  align-items: center;
  justify-content: center;
  gap: clamp(26px, 5vw, 72px);
}

.product-feature.reverse {
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.85fr);
}

.product-feature.reverse img {
  order: 2;
}

.product-feature img {
  display: block;
  justify-self: center;
  width: min(100%, 520px);
  height: auto;
  object-fit: contain;
  transition: transform 260ms ease;
}

.product-feature:hover img {
  transform: translateY(-6px) scale(1.015);
}

.product-feature h2 {
  max-width: 680px;
}

.product-feature > div,
.proof-copy,
.price-copy,
.contact-copy,
.detail-list {
  justify-self: center;
}

.product-feature p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.06rem;
}

.products-section {
  background: var(--soft);
}

.product-catalog-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 18px;
}

.enterprise-product-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.38fr);
  gap: 18px;
  align-items: start;
}

.enterprise-product-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(24px, 4vw, 44px);
  align-items: center;
  padding: clamp(22px, 4vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(18, 24, 38, 0.09);
}

.enterprise-product-visual {
  display: grid;
  min-height: 520px;
  place-items: center;
  background: linear-gradient(180deg, #f7f8fa, #eef2f7);
  border-radius: 8px;
  overflow: hidden;
}

.stand-mockup {
  position: relative;
  width: min(70%, 280px);
  aspect-ratio: 0.62;
  display: grid;
  align-content: start;
  justify-items: center;
  padding-top: 34%;
  color: var(--white);
  background: linear-gradient(160deg, #030609, #1f2937 62%, #0b0f14);
  border-radius: 8px;
  box-shadow: 0 36px 70px rgba(3, 6, 9, 0.38);
  transform: perspective(900px) rotateY(-18deg) rotateX(4deg);
}

.stand-mockup::after {
  content: "";
  position: absolute;
  left: -8%;
  bottom: -13%;
  width: 80%;
  height: 24%;
  background: #07090d;
  border-radius: 8px;
  transform: skewX(-32deg);
  z-index: -1;
}

.google-g {
  font-size: clamp(3.2rem, 7vw, 5.6rem);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(90deg, #4285f4, #34a853 38%, #fbbc04 62%, #ea4335);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tap-mark {
  position: absolute;
  right: 18%;
  bottom: 14%;
  max-width: 90px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.enterprise-product-body p {
  color: var(--muted);
}

.bulk-price {
  margin: 22px 0;
  padding: 18px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.bulk-price span,
.bulk-price p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.bulk-price strong {
  display: block;
  margin: 4px 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 22px;
}

.spec-grid div {
  min-height: 92px;
  padding: 13px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.spec-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.spec-grid strong {
  display: block;
  line-height: 1.2;
}

.custom-options {
  margin-bottom: 24px;
}

.custom-options h4 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.custom-options ul,
.enterprise-note ul {
  display: grid;
  gap: 8px;
  padding-left: 18px;
  margin: 0;
  color: var(--muted);
}

.enterprise-note {
  padding: 24px;
  background: #101828;
  color: var(--white);
  border-radius: 8px;
  position: sticky;
  top: 98px;
}

.enterprise-note .eyebrow,
.enterprise-note h3 {
  color: var(--white);
}

.enterprise-note p,
.enterprise-note ul {
  color: rgba(255, 255, 255, 0.72);
}

.catalog-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 22px;
  align-items: center;
  min-height: 360px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(18, 24, 38, 0.09);
}

.catalog-card-image img {
  display: block;
  width: min(100%, 360px);
  height: auto;
  object-fit: contain;
}

.catalog-card-body p,
.catalog-card-empty p {
  color: var(--muted);
}

.catalog-card ul {
  display: grid;
  gap: 8px;
  padding-left: 18px;
  margin: 0 0 22px;
  color: var(--muted);
}

.catalog-tag {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.catalog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.catalog-card-empty {
  display: flex;
  align-items: center;
  min-height: 360px;
  background:
    linear-gradient(135deg, rgba(26, 115, 232, 0.08), transparent),
    var(--white);
}

.real-media-section {
  background: #f4f7fb;
}

.real-media-section .section-heading p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
}

.media-slider-shell {
  position: relative;
  width: min(100%, 1280px);
  margin: 28px auto 0;
}

.slider-actions {
  position: absolute;
  top: -72px;
  right: 0;
  display: flex;
  gap: 10px;
}

.slider-button {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(18, 24, 38, 0.08);
  cursor: pointer;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 160ms ease, background 160ms ease;
}

.slider-button:hover {
  background: var(--soft);
  transform: translateY(-2px);
}

.media-slider {
  display: flex;
  gap: clamp(14px, 2vw, 24px);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 6px max(18px, 3vw) 24px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(18, 24, 38, 0.35) transparent;
}

.media-slide {
  position: relative;
  flex: 0 0 clamp(330px, 31vw, 470px);
  margin: 0;
  height: auto;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: #0f172a;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(18, 24, 38, 0.2);
  scroll-snap-align: start;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.media-slide:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(18, 24, 38, 0.2);
}

.media-slide-photo img,
.cropped-video video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-slide-photo img {
  object-position: center center;
}

.media-slide-video {
  flex-basis: clamp(330px, 31vw, 470px);
  height: auto;
  overflow: hidden;
  background: #0f172a;
}

.cropped-video video {
  object-position: center center;
  transform: translateY(5%) scale(1.38);
  transform-origin: center center;
}

.section-copy,
.proof-copy,
.price-copy,
.contact-copy,
.section-heading {
  max-width: 760px;
}

.section-heading {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.proof-section {
  background: var(--soft);
}

.location-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.location-photo img {
  display: block;
  width: 100%;
  max-height: 620px;
  aspect-ratio: 1.16;
  object-fit: cover;
}

.process-section {
  background: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
  gap: 16px;
}

.process-grid article {
  min-height: 210px;
  padding: 24px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 220ms ease, border-color 220ms ease;
}

.process-grid article:hover {
  border-color: rgba(26, 115, 232, 0.34);
  transform: translateY(-4px);
}

.process-grid span {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--blue-dark);
  font-weight: 900;
}

.product-strip {
  background: var(--white);
}

.product-detail {
  background: var(--white);
}

.product-detail img {
  display: block;
  width: min(100%, 520px);
  height: auto;
  object-fit: contain;
}

.detail-list h2 {
  margin-bottom: 20px;
}

.detail-list ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.detail-list li {
  position: relative;
  padding: 14px 16px 14px 44px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.detail-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 20px;
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
}

.audience-section {
  background: #101828;
  color: var(--white);
}

.audience-section .eyebrow,
.audience-section h2 {
  color: var(--white);
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.tag-cloud span {
  padding: 12px 15px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  font-weight: 800;
}

.bulk-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  background: var(--white);
}

.bulk-copy {
  justify-self: center;
}

.bulk-copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.06rem;
}

.bulk-price-note {
  max-width: 620px;
  margin: 18px 0 22px;
  padding: 16px 18px;
  color: #123c74;
  background: #eef5ff;
  border: 1px solid rgba(26, 115, 232, 0.18);
  border-radius: 8px;
  font-weight: 900;
  line-height: 1.45;
}

.bulk-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

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

.bulk-grid article {
  min-height: 190px;
  padding: 24px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 220ms ease, border-color 220ms ease;
}

.bulk-grid article:hover {
  border-color: rgba(26, 115, 232, 0.34);
  transform: translateY(-4px);
}

.bulk-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.pricing-section {
  background: var(--soft);
}

.price-box {
  justify-self: center;
  width: min(100%, 440px);
  padding: 30px;
  background: var(--white);
  border: 1px solid rgba(26, 115, 232, 0.22);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(26, 115, 232, 0.13);
  animation: softPulse 4s ease-in-out infinite;
}

.price-box span,
.price-box p {
  color: var(--muted);
  font-weight: 800;
}

.price-box strong {
  display: block;
  margin: 8px 0;
  font-size: clamp(3.2rem, 7vw, 5.2rem);
  line-height: 0.92;
}

.faq-section {
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1120px;
  margin-right: auto;
  margin-left: auto;
  gap: 16px;
}

.faq-grid article {
  min-height: 210px;
  padding: 24px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 220ms ease, border-color 220ms ease;
}

.faq-grid article:hover {
  border-color: rgba(26, 115, 232, 0.34);
  transform: translateY(-4px);
}

.faq-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-section {
  align-items: start;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, 760px);
  justify-self: center;
  gap: 16px;
  padding: 24px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #d8dde8;
  border-radius: 8px;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(26, 115, 232, 0.18);
  border-color: var(--blue);
}

button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.form-reassurance {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 900;
  text-align: center;
}

.form-status[data-state="success"] {
  color: var(--green);
}

.form-status[data-state="error"] {
  color: #b42318;
}

.full {
  grid-column: 1 / -1;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 28px;
  padding-bottom: 28px;
  background: var(--soft);
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

@keyframes productFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes softPulse {
  0%,
  100% {
    box-shadow: 0 18px 48px rgba(26, 115, 232, 0.13);
  }

  50% {
    box-shadow: 0 24px 62px rgba(26, 115, 232, 0.21);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .brand {
    grid-column: 1;
    justify-self: start;
  }

  .header-cta {
    grid-column: 2;
  }

  .language-toggle {
    grid-column: 2;
    margin-right: 146px;
  }

  .hero,
  .products-hero,
  .product-feature,
  .product-feature.reverse,
  .proof-section,
  .product-strip,
  .bulk-section,
  .guarantee-band,
  .pricing-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero,
  .product-feature,
  .product-feature.reverse,
  .proof-section,
  .product-strip,
  .bulk-section,
  .guarantee-band,
  .pricing-section,
  .contact-section {
    text-align: center;
  }

  .guarantee-band h2,
  .guarantee-band p:not(.eyebrow) {
    margin-right: auto;
    margin-left: auto;
  }

  .product-catalog-grid,
  .catalog-card {
    grid-template-columns: 1fr;
  }

  .product-feature.reverse img {
    order: 0;
  }

  .hero {
    min-height: auto;
  }

  .price-box {
    justify-self: center;
  }

  .how-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .bulk-grid {
    grid-template-columns: 1fr;
  }

  .quote-intro-grid,
  .enterprise-product-grid,
  .enterprise-product-card {
    grid-template-columns: 1fr;
  }

  .enterprise-note {
    position: static;
  }

  .media-slider {
    gap: 14px;
  }

  .media-slide {
    flex-basis: min(54vw, 420px);
    height: auto;
  }

  .media-slide-video {
    flex-basis: min(54vw, 420px);
    height: auto;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-left: 16px;
    padding-right: 16px;
  }

  .brand img {
    width: 178px;
    height: 44px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.9rem;
  }

  .language-toggle {
    display: none;
  }

  main > section,
  .site-footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero {
    gap: 24px;
    padding-top: 32px;
    padding-bottom: 30px;
  }

  h1 {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .hero-actions,
  .bulk-actions,
  .contact-links,
  .site-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .primary-button,
  .secondary-button,
  .contact-links a {
    width: 100%;
  }

  .hero-product img {
    width: min(100%, 520px);
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .slider-actions {
    position: static;
    justify-content: flex-end;
    margin-bottom: 12px;
  }

  .media-slider {
    gap: 12px;
  }

  .media-slide {
    flex-basis: min(78vw, 360px);
    height: auto;
  }

  .media-slide-video {
    flex-basis: min(78vw, 360px);
    height: auto;
  }
}
