/* === RESET & BASE === */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--gradient-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

main {
  position: relative;
  z-index: 0;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
p,
ul {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

/* === LAYOUT === */

.page-shell {
  padding: 1.5rem;
  padding-top: 6.6rem;
}

.container {
  width: min(100%, var(--container-width));
  margin: 0 auto;
}

.section {
  padding: var(--space-3xl) 0 0;
}

.section-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.section-copy {
  max-width: 42rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  padding-top: 0.35rem;
}

.grid {
  display: grid;
  gap: 1.25rem;
}

/* === TYPOGRAPHY === */

.eyebrow,
.pill {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  width: fit-content;
  gap: 0.625rem;
  padding: 0.52rem 0.95rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  vertical-align: top;
}

.eyebrow {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.8);
}

.eyebrow::before,
.pill::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--color-signal-blue);
}

.pill {
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.7);
  color: rgba(17, 17, 17, 0.82);
}

.title-xl,
.title-lg,
.title-md,
.brand,
.button {
  font-family: var(--font-display);
}

.title-xl,
.title-lg,
.title-md {
  letter-spacing: -0.04em;
}

.title-xl {
  font-size: var(--text-hero);
  line-height: 0.94;
}

.title-lg {
  font-size: var(--text-xl);
  line-height: 1.05;
}

.title-md {
  font-size: 1.35rem;
  line-height: 1.15;
}

.body-lg,
.body-md {
  line-height: 1.7;
}

.body-lg {
  font-size: var(--text-md);
}

.body-md {
  font-size: var(--text-base);
}

.muted {
  color: var(--color-text-muted);
}

/* === HEADER === */

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  position: absolute;
  top: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 3rem), var(--container-width));
  min-height: 3.95rem;
  padding: 0.45rem 0.95rem 0.45rem 1.75rem;
  border-radius: var(--radius-pill);
  background: rgba(15, 16, 18, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 12px 28px rgba(5, 7, 10, 0.3);
  backdrop-filter: blur(8px);
  z-index: 60;
}

.brand {
  font-size: clamp(0.95rem, 0.24vw + 0.9rem, 1.03rem);
  font-weight: 600;
  padding-left: 1.25rem;
  letter-spacing: 0.055em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--color-white);
  transition:
    color var(--transition-fast),
    transform var(--transition-fast);
}

.brand:hover {
  color: rgba(255, 255, 255, 0.9);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.92rem;
  color: rgba(255, 255, 255, 0.88);
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: color var(--transition-fast);
}

.nav-links a:hover {
  color: var(--color-white);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  width: 2.35rem;
  height: 2.35rem;
  padding: 0;
  border: 0;
  border-radius: 0.6rem;
  background: transparent;
  color: var(--color-white);
  cursor: pointer;
}

.menu-toggle-line {
  width: 1.15rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.site-header .nav > .button {
  min-height: 2.55rem;
  padding: 0 1rem;
  font-size: 0.86rem;
  font-weight: 600;
}

/* === BUTTONS === */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--button-height);
  padding: 0 1.4rem;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform var(--transition-fast),
    border-color var(--transition-fast),
    background-color var(--transition-fast),
    color var(--transition-fast),
    box-shadow var(--transition-fast);
}

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

.button-primary {
  background: var(--color-signal-blue);
  color: var(--color-white);
  border-color: var(--color-signal-blue);
  box-shadow: none;
}

.button-primary:hover {
  background: rgba(252, 254, 255, 0.98);
  border-color: rgba(255, 255, 255, 0.95);
  color: var(--color-signal-blue-deep);
}

.contact-submit.button-primary:hover {
  background: var(--color-signal-blue-deep);
  border-color: var(--color-signal-blue-deep);
  color: var(--color-white);
  box-shadow: 0 8px 18px rgba(22, 115, 255, 0.24);
}

.contact-submit.button-primary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(22, 115, 255, 0.18);
}

.button-secondary {
  background: transparent;
  color: var(--color-ink);
  border-color: var(--color-line-strong);
}

.button-secondary:hover {
  background: rgba(17, 17, 17, 0.04);
}

.button-inverse {
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.16);
}

.button-inverse:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
}

/* === HERO === */

.hero {
  position: relative;
  z-index: 0;
  overflow: hidden;
  border-radius: 2.25rem;
  padding: 2.25rem;
  background: var(--gradient-dark);
  color: var(--color-white);
  box-shadow: var(--shadow-float);
  isolation: isolate;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2.25rem;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-copy .title-xl {
  margin-top: 1.25rem;
}

.hero-copy .body-lg {
  max-width: 36rem;
  margin-top: 1.25rem;
  color: var(--color-text-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-top: 1.75rem;
}

.hero-visual {
  position: relative;
  z-index: 0;
  min-height: 26rem;
}

.orbital-ring {
  position: absolute;
  inset: 13% 10% 12% 16%;
  border: 1px solid rgba(182, 190, 202, 0.12);
  border-radius: 50%;
  transform: rotate(-12deg);
}

.floating-card {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-float);
  backdrop-filter: blur(8px);
  animation: drift 7.5s ease-in-out infinite;
}

.floating-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-a {
  inset: 2% auto auto 4%;
  width: 14rem;
  height: 10rem;
}

.card-b {
  inset: 16% 0 auto auto;
  width: 14rem;
  height: 18rem;
  animation-delay: -2s;
}

.card-c {
  inset: auto 14% 0 10%;
  width: 14rem;
  height: 10rem;
  animation-delay: -4s;
}

/* === TRUST BAR === */

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-item {
  padding: 0.95rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--color-white);
}

.trust-item span {
  display: block;
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.85rem;
}

/* === PRODUCT FAMILIES === */

.product-family {
  margin-bottom: var(--space-2xl);
  padding-bottom: 0.2rem;
}

.product-family:last-of-type {
  margin-bottom: var(--space-lg);
}

.product-family-header {
  margin-bottom: var(--space-md);
}

.product-family-header p {
  margin-top: 0.5rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 48rem;
}

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

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

.product-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #0f1012;
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-soft);
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.product-card:hover {
  border-color: rgba(22, 115, 255, 0.18);
  box-shadow: var(--shadow-card);
}

.product-media {
  overflow: hidden;
  background: #0b0c0e;
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.03);
  transform: scale(1.001);
  transition:
    transform var(--transition-slow),
    filter var(--transition-fast);
}

.product-card:hover img {
  transform: scale(1.001);
  filter: saturate(0.98) contrast(1.05);
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0.95rem 1rem 1rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.88rem;
}

.product-meta span:last-child {
  color: rgba(182, 190, 202, 0.9);
  font-size: 0.82rem;
}

.product-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: var(--space-xl);
  padding: 1.45rem 1.75rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--color-line);
}

/* === SPECIALTIES === */

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

.card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-soft);
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.card:hover {
  border-color: rgba(22, 115, 255, 0.18);
  box-shadow: var(--shadow-card);
}

.card-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.card-index {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(22, 115, 255, 0.08);
  color: var(--color-signal-blue);
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
}

.card p {
  margin-top: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* === PANELS (ABOUT, CTA) === */

.about-grid,
.cta-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
}

.panel {
  padding: 2.1rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-soft);
}

.panel-dark {
  background: var(--gradient-dark);
  border-color: rgba(255, 255, 255, 0.06);
  color: var(--color-white);
}

.panel-dark .title-lg,
.panel-dark .title-md,
.panel-dark .body-md,
.panel-dark .body-lg,
.panel-dark p,
.panel-dark li {
  color: rgba(255, 255, 255, 0.86);
}

.panel .pill,
.panel .eyebrow {
  margin-bottom: 1rem;
}

.panel .title-lg,
.panel .title-md {
  max-width: 14ch;
}

.panel p {
  margin-top: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.75rem;
}

.stat {
  padding: 1.1rem 1rem 1.15rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat strong {
  display: block;
  font-size: 1.02rem;
}

.stat span {
  display: block;
  margin-top: 0.3rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
}

.differential-list {
  display: grid;
  gap: 0.95rem;
  margin-top: 1.15rem;
}

.differential-list li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.differential-list li::before {
  content: "";
  position: absolute;
  top: 0.65rem;
  left: 0;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--color-signal-blue);
}

/* === CTA PANEL === */

.cta-panel {
  padding: 2.35rem;
}

.cta-panel .title-lg {
  max-width: 11ch;
}

.cta-panel .body-md {
  max-width: 34rem;
}

/* === CONTACT FORM === */

.contact-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.form-field {
  display: grid;
  gap: 0.45rem;
}

.form-field[hidden] {
  display: none !important;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.hp-field input {
  min-height: 1px;
  padding: 0;
  border: 0;
}

.form-field-required-hint {
  display: none;
  margin: 0.1rem 0 0;
  font-size: 0.82rem;
  line-height: 1.35;
  font-weight: 600;
  color: #b42318;
}

.form-field.has-error .form-field-required-hint {
  display: block;
}

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

.form-field.has-error label {
  color: #8f261d;
}

.form-field label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-ink);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 3.25rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.88);
  color: var(--color-ink);
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    background-color var(--transition-fast);
}

.contact-form textarea {
  min-height: 7rem;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(22, 115, 255, 0.45);
  box-shadow: 0 0 0 4px rgba(22, 115, 255, 0.08);
  background: var(--color-white);
}

.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
  border-color: rgba(180, 35, 24, 0.52);
  box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.1);
  background: rgba(255, 246, 244, 0.96);
}

.form-field.has-error input:focus,
.form-field.has-error select:focus,
.form-field.has-error textarea:focus {
  border-color: rgba(180, 35, 24, 0.48);
  box-shadow: 0 0 0 4px rgba(180, 35, 24, 0.12);
  background: var(--color-white);
}

.contact-submit {
  margin-top: 0.25rem;
}

.contact-submit:disabled {
  opacity: 0.72;
  cursor: wait;
  transform: none;
}

.form-note,
.form-status {
  font-size: 0.9rem;
  line-height: 1.6;
}

.form-note {
  color: var(--color-text-muted);
}

.form-status {
  min-height: 1.5rem;
  margin-top: -0.25rem;
}

.form-status[data-state="success"] {
  color: #0d7a46;
}

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

/* === FOOTER === */

.footer {
  padding: var(--space-3xl) 0 1rem;
}

.footer-shell {
  display: grid;
  grid-template-columns:
    minmax(0, 1.42fr)
    minmax(0, 0.9fr)
    minmax(230px, 1.18fr);
  gap: 1.45rem 1.35rem;
  padding: 2.15rem 2rem;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(22, 115, 255, 0.06), transparent 20%),
    linear-gradient(135deg, #0c0d0f 0%, #13161b 58%, #191d23 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-float);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-white);
}

.footer-copy {
  max-width: 21rem;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
  line-height: 1.75;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 0.6rem;
  padding-left: 1.1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-heading {
  margin-bottom: 0.2rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.96);
}

.footer-column a,
.footer-column span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.94rem;
  line-height: 1.55;
  overflow-wrap: normal;
  word-break: normal;
  transition: color var(--transition-fast);
}

.contact-column span:nth-child(2),
.contact-column span:nth-child(3) {
  white-space: nowrap;
}

.contact-column span:last-child {
  max-width: 30ch;
  white-space: normal;
  overflow-wrap: break-word;
}

.footer-column a:hover {
  color: var(--color-white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  padding: 0;
  color: rgba(17, 17, 17, 0.54);
  font-size: 0.88rem;
}

#top,
.section[id],
.footer {
  scroll-margin-top: 7rem;
}

/* === ANIMATIONS === */

[data-animate] {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate="delay-1"] {
  transition-delay: 120ms;
}

[data-animate="delay-2"] {
  transition-delay: 240ms;
}

[data-animate="delay-3"] {
  transition-delay: 360ms;
}

@keyframes drift {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(0.6deg);
  }
}

/* === RESPONSIVE === */

@media (max-width: 1080px) {
  .hero-grid,
  .about-grid,
  .cta-grid,
  .specialties-grid {
    grid-template-columns: 1fr;
  }

  .trust-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hero {
    padding: 1.75rem;
  }

  .hero-visual {
    min-height: 24rem;
  }

  .footer-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand-block {
    grid-column: 1 / -1;
  }

  .footer-column {
    padding-left: 0;
    border-left: none;
  }
}

@media (max-width: 820px) {
  .page-shell {
    padding: 0.9rem;
    padding-top: 0.9rem;
  }

  .site-header,
  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-header {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    min-height: 3.45rem;
    padding: 0.55rem 0.85rem 0.65rem;
    margin-bottom: var(--space-md);
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.65rem;
    align-items: center;
    align-content: flex-start;
    border-radius: var(--radius-lg);
    z-index: 100;
    isolation: isolate;
    overflow: hidden;
  }

  .site-header.menu-open {
    padding-bottom: 0.85rem;
  }

  .brand {
    font-size: 0.98rem;
    letter-spacing: 0.06em;
    margin-right: auto;
    padding-left: 0.5rem;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-header.menu-open .menu-toggle-line:first-child {
    transform: translateY(0.27rem) rotate(45deg);
  }

  .site-header.menu-open .menu-toggle-line:last-child {
    transform: translateY(-0.27rem) rotate(-45deg);
  }

  .nav {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    flex-basis: 100%;
    width: 100%;
    order: 3;
    display: none;
    grid-template-columns: 1fr;
    gap: 0.65rem;
    padding: 0.85rem 0 0;
    margin: 0;
    border-radius: 0;
    background: transparent;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none;
  }

  .site-header.menu-open .nav {
    display: grid;
  }

  .nav-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.55rem;
    width: 100%;
  }

  .nav-links a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 2.9rem;
    font-size: 1.02rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    border-radius: 0.75rem;
    padding: 0 0.6rem;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.03);
  }

  .nav > .button {
    width: 100%;
    min-height: 3rem;
  }

  .trust-bar,
  .stats {
    grid-template-columns: 1fr 1fr;
  }

  .hero-copy .title-xl {
    max-width: none;
  }

  .product-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .card-a,
  .card-b,
  .card-c {
    width: 44vw;
    max-width: 14rem;
  }

  .card-a { height: 9rem; }
  .card-b { height: 15rem; }
  .card-c { height: 9rem; }

  .footer-shell {
    padding: 1.6rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .site-header {
    width: 100%;
  }

  .footer-column:last-child span:last-child {
    max-width: 23ch;
  }

  .hero,
  .panel,
  .cta-panel {
    padding: 1.4rem;
  }

  .hero-visual {
    min-height: 20rem;
  }

  .trust-bar {
    grid-template-columns: 1fr;
  }

  .product-grid-2,
  .product-grid-3 {
    grid-template-columns: 1fr;
  }

  .card-a {
    inset: 2% auto auto 0;
  }

  .card-b {
    inset: 16% 0 auto auto;
  }

  .card-c {
    inset: auto 4% 0 4%;
    width: auto;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    padding: 1.4rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
  }
}
