:root {
  --color-deep: #222831;
  --color-slate: #31363F;
  --color-accent: #76ABAE;
  --color-light: #EEEEEE;
  --color-accent-dark: #5f9699;
  --color-text: #EEEEEE;
  --color-text-muted: rgba(238, 238, 238, 0.72);
  --color-text-dark: #222831;
  --font-display: 'Syne', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --space-xs: 0.35rem;
  --space-sm: 0.65rem;
  --space-md: 1rem;
  --space-lg: 1.6rem;
  --space-xl: 2.4rem;
  --space-2xl: 3.6rem;
  --space-3xl: 5rem;
  --radius-sm: 0.35rem;
  --radius-md: 0.65rem;
  --radius-lg: 1.2rem;
  --radius-pill: 3rem;
  --shadow-sm: 0 0.15rem 0.5rem rgba(0, 0, 0, 0.18);
  --shadow-md: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.22);
  --shadow-lg: 0 0.8rem 2rem rgba(0, 0, 0, 0.28);
  --transition-fast: 0.2s ease;
  --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 72rem;
  --header-height: 3.2rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--color-text);
  background: var(--color-deep);
  overflow-x: hidden;
}

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

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-light);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-light);
}

h1 { font-size: clamp(1.8rem, 4.5vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3.2vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2.4vw, 1.45rem); }

p { margin-bottom: var(--space-md); }
p:last-child { margin-bottom: 0; }

ul { list-style: none; }

.container {
  width: 92%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.site-header {
  background: var(--color-slate);
  border-bottom: 0.06rem solid rgba(118, 171, 174, 0.15);
  position: relative;
  z-index: 160;
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  min-height: var(--header-height);
  position: relative;
  z-index: 160;
}

.brand-logo {
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 2.5vw, 1.05rem);
  font-weight: 800;
  color: var(--color-light);
  letter-spacing: -0.02em;
  transition: color var(--transition-fast);
  min-width: 0;
  flex: 1 1 auto;
}

.brand-logo:hover {
  color: var(--color-accent);
}

.brand-logo span {
  color: var(--color-accent);
}

.menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  min-width: 2.75rem;
  min-height: 2.75rem;
  border: none;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--color-light);
  cursor: pointer;
  flex-shrink: 0;
  transition: color var(--transition-fast), background var(--transition-fast);
  z-index: 999999999999999999999999999;
}

.menu-btn:hover {
  background: rgba(118, 171, 174, 0.15);
  color: var(--color-accent);
}

.menu-btn i {
  font-size: 1.1rem;
  line-height: 1;
}

.menu-icon-close {
  display: none;
}

.menu-btn.is-open .menu-icon-bars {
  display: none;
}

.menu-btn.is-open .menu-icon-close {
  display: block;
}

.menu-btn.is-open {
  color: var(--color-accent);
}

.main-nav {
  display: none;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  height: 100dvh;
  background: var(--color-deep);
  z-index: 140;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  padding: var(--space-3xl) var(--space-md);
}

.main-nav.is-open {
  display: flex;
}

.main-nav-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-xl) 0;
  width: 100%;
}

.main-nav-list a {
  display: block;
  padding: var(--space-sm) var(--space-md);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-light);
  transition: color var(--transition-fast);
}

.main-nav-list a:hover {
  color: var(--color-accent);
}

body.menu-open {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: clamp(22rem, 70vh, 36rem);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-canvas-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

#hero-canvas {
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: var(--space-2xl) 0;
  width: 92%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
  padding: var(--space-xs) var(--space-sm);
  border: 0.06rem solid rgba(118, 171, 174, 0.35);
  border-radius: var(--radius-pill);
  animation: fadeSlideUp 0.8s ease both;
}

.hero h1 {
  max-width: 18ch;
  margin-bottom: var(--space-md);
  animation: fadeSlideUp 0.8s 0.1s ease both;
}

.hero-desc {
  max-width: 38ch;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
  animation: fadeSlideUp 0.8s 0.2s ease both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  animation: fadeSlideUp 0.8s 0.3s ease both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-md);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: transform var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
}

.btn:hover {
  transform: translateY(-0.1rem);
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-deep);
}

.btn-primary:hover {
  background: var(--color-light);
  color: var(--color-deep);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--color-light);
  border: 0.06rem solid rgba(238, 238, 238, 0.35);
}

.btn-outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

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

.section-alt {
  background: var(--color-slate);
}

.section-head {
  margin-bottom: var(--space-xl);
}

.section-head p {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  max-width: 42ch;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-xs);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.card {
  background: rgba(49, 54, 63, 0.55);
  border: 0.06rem solid rgba(118, 171, 174, 0.15);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.card:hover {
  transform: translateY(-0.2rem);
  box-shadow: var(--shadow-md);
}

.card-icon {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(118, 171, 174, 0.15);
  border-radius: var(--radius-sm);
  color: var(--color-accent);
  font-size: 0.85rem;
  margin-bottom: var(--space-sm);
}

.card h3 {
  margin-bottom: var(--space-xs);
  font-size: 1rem;
}

.card p {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.feature-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.feature-img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 3/2;
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.stat-item {
  text-align: center;
  padding: var(--space-md);
  background: rgba(34, 40, 49, 0.5);
  border-radius: var(--radius-md);
  border: 0.06rem solid rgba(118, 171, 174, 0.12);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-accent);
  display: block;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.testimonial {
  padding: var(--space-md);
  background: var(--color-deep);
  border-radius: var(--radius-md);
  border-left: 0.2rem solid var(--color-accent);
}

.testimonial p {
  font-size: 0.84rem;
  font-style: italic;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

.testimonial cite {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-accent);
  font-style: normal;
}

.cta-band {
  text-align: center;
  padding: var(--space-xl);
  background: linear-gradient(135deg, rgba(118, 171, 174, 0.18), rgba(49, 54, 63, 0.8));
  border-radius: var(--radius-lg);
  border: 0.06rem solid rgba(118, 171, 174, 0.2);
}

.cta-band h2 {
  margin-bottom: var(--space-sm);
}

.cta-band p {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  margin-bottom: var(--space-md);
  max-width: 40ch;
  margin-left: auto;
  margin-right: auto;
}

.map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 0.06rem solid rgba(118, 171, 174, 0.2);
}

.map-wrap iframe {
  width: 100%;
  height: 14rem;
  border: 0;
  display: block;
}

.site-footer {
  padding: var(--space-lg) 0;
  border-top: 0.06rem solid rgba(118, 171, 174, 0.12);
  background: var(--color-deep);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: center;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm) var(--space-md);
}

.footer-links a {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.footer-links a:hover {
  color: var(--color-accent);
}

.footer-copy {
  font-size: 0.72rem;
  color: rgba(238, 238, 238, 0.45);
}

.consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--color-slate);
  border-top: 0.06rem solid rgba(118, 171, 174, 0.25);
  padding: var(--space-md);
  transform: translateY(110%);
  transition: transform var(--transition-base);
  box-shadow: var(--shadow-lg);
}

.consent-banner.is-visible {
  transform: translateY(0);
}

.consent-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: flex-start;
}

.consent-inner p {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin: 0;
}

.consent-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.consent-actions .btn {
  font-size: 0.75rem;
  padding: var(--space-xs) var(--space-md);
}

.page-hero {
  padding: var(--space-2xl) 0 var(--space-xl);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 50%;
  height: 140%;
  background: linear-gradient(160deg, rgba(118, 171, 174, 0.12), transparent);
  transform: rotate(-8deg);
  pointer-events: none;
}

.page-hero h1 {
  position: relative;
}

.page-hero p {
  color: var(--color-text-muted);
  font-size: 0.88rem;
  max-width: 45ch;
  position: relative;
}

.asym-layout {
  position: relative;
}

.asym-block {
  position: relative;
  margin-bottom: var(--space-2xl);
}

.asym-block:nth-child(odd) {
  transform: rotate(-0.6deg);
}

.asym-block:nth-child(even) {
  transform: rotate(0.5deg);
}

.asym-card {
  background: var(--color-slate);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  position: relative;
}

.asym-card.overlap-img {
  margin-top: calc(-1 * var(--space-xl));
  margin-left: 8%;
  width: 88%;
  z-index: 2;
}

.asym-img-wrap {
  width: 75%;
  margin-left: auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(2deg);
}

.asym-img-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.angled-section {
  position: relative;
  padding: var(--space-2xl) 0;
  margin: var(--space-xl) 0;
}

.angled-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-slate);
  transform: skewY(-2deg);
  z-index: 0;
}

.angled-section .container {
  position: relative;
  z-index: 1;
}

.product-card {
  background: var(--color-slate);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 0.06rem solid rgba(118, 171, 174, 0.15);
  transition: transform var(--transition-base);
}

.product-card:hover {
  transform: translateY(-0.3rem) rotate(-0.3deg);
}

.product-card:nth-child(2) {
  transform: translateY(var(--space-md));
}

.product-card:nth-child(2):hover {
  transform: translateY(calc(var(--space-md) - 0.3rem)) rotate(0.3deg);
}

.product-body {
  padding: var(--space-md);
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-accent);
  margin: var(--space-sm) 0;
}

.product-features {
  margin: var(--space-sm) 0 var(--space-md);
}

.product-features li {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  padding: var(--space-xs) 0;
  padding-left: var(--space-md);
  position: relative;
}

.product-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-size: 0.65rem;
}

.contact-zone {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.contact-info-panel {
  background: linear-gradient(145deg, var(--color-slate), rgba(49, 54, 63, 0.6));
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 0.06rem solid rgba(118, 171, 174, 0.2);
  position: relative;
  overflow: hidden;
}

.contact-info-panel::after {
  content: '';
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 8rem;
  height: 8rem;
  background: rgba(118, 171, 174, 0.1);
  border-radius: 50%;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
}

.contact-detail i {
  color: var(--color-accent);
  font-size: 0.9rem;
  margin-top: 0.15rem;
}

.contact-detail p {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin: 0;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.contact-form {
  background: var(--color-deep);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 0.06rem solid rgba(118, 171, 174, 0.15);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
  color: var(--color-light);
}

.form-group input,
.form-group textarea {
  width: 100%;
  max-width: 100%;
  padding: var(--space-sm);
  font-family: var(--font-body);
  font-size: 0.82rem;
  background: var(--color-slate);
  border: 0.06rem solid rgba(118, 171, 174, 0.2);
  border-radius: var(--radius-sm);
  color: var(--color-light);
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

.form-group textarea {
  min-height: 6rem;
  resize: vertical;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.form-check input {
  margin-top: 0.2rem;
  accent-color: var(--color-accent);
}

.form-check label {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.form-check label a {
  color: var(--color-accent);
}

.legal-content {
  max-width: 48rem;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.2rem;
  margin: var(--space-xl) 0 var(--space-sm);
}

.legal-content h3 {
  font-size: 1rem;
  margin: var(--space-lg) 0 var(--space-sm);
}

.legal-content p,
.legal-content li {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

.legal-content ul {
  list-style: disc;
  padding-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.thank-you-wrap {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-2xl) 0;
}

.thank-icon {
  font-size: 2.4rem;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
  animation: pulse 2s ease infinite;
}

.error-wrap {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-2xl) 0;
}

.error-code {
  font-family: var(--font-display);
  font-size: clamp(4rem, 15vw, 8rem);
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  opacity: 0.3;
}

.reveal {
  opacity: 0;
  transform: translateY(1.2rem);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

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

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  counter-reset: step;
}

.process-step {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  padding: var(--space-md);
  background: rgba(34, 40, 49, 0.4);
  border-radius: var(--radius-md);
}

.step-num {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  color: var(--color-deep);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  border-radius: 50%;
}

.process-step h3 {
  font-size: 0.95rem;
  margin-bottom: var(--space-xs);
}

.process-step p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin: 0;
}

.faq-item {
  border-bottom: 0.06rem solid rgba(118, 171, 174, 0.12);
  padding: var(--space-md) 0;
}

.faq-item h3 {
  font-size: 0.9rem;
  margin-bottom: var(--space-xs);
}

.faq-item p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin: 0;
}

.map-spacing {
  margin-top: var(--space-lg);
}

.asym-card-narrow {
  width: 90%;
  margin-left: 5%;
}

.asym-img-centered {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}

.asym-img-offset {
  margin-left: 0;
  width: 82%;
}

.error-desc {
  color: var(--color-text-muted);
  max-width: 38ch;
  margin: var(--space-md) auto;
}

.action-row {
  margin-top: var(--space-lg);
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

@media (max-width: 20rem) {
  html {
    font-size: 87.5%;
  }

  .container {
    width: 94%;
  }

  .brand-logo {
    font-size: 0.68rem;
    max-width: 68%;
    line-height: 1.3;
  }

  .header-wrap {
    padding: var(--space-xs) 0;
    min-height: auto;
  }

  .menu-btn {
    width: 2rem;
    height: 2rem;
    flex-shrink: 0;
  }

  .hero {
    min-height: 18rem;
  }

  .hero-content {
    padding: var(--space-lg) 0;
    width: 94%;
  }

  .hero h1 {
    max-width: none;
    font-size: 1.55rem;
  }

  .hero-tag {
    font-size: 0.62rem;
    letter-spacing: 0.08em;
  }

  .hero-desc {
    font-size: 0.8rem;
  }

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

  .btn {
    width: 100%;
    justify-content: center;
    font-size: 0.75rem;
  }

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

  .section-head {
    margin-bottom: var(--space-lg);
  }

  .card {
    padding: var(--space-sm);
  }

  .card h3 {
    font-size: 0.92rem;
  }

  .stats-bar {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
  }

  .stat-item {
    padding: var(--space-sm);
  }

  .stat-num {
    font-size: 1.25rem;
  }

  .stat-label {
    font-size: 0.68rem;
  }

  .cta-band {
    padding: var(--space-md);
  }

  .page-hero {
    padding: var(--space-xl) 0 var(--space-lg);
  }

  .asym-block:nth-child(odd),
  .asym-block:nth-child(even) {
    transform: none;
  }

  .asym-card {
    padding: var(--space-md);
  }

  .asym-card.overlap-img,
  .asym-card-narrow {
    width: 100%;
    margin-left: 0;
    margin-top: var(--space-md);
  }

  .asym-img-wrap,
  .asym-img-centered,
  .asym-img-offset {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    transform: none;
  }

  .product-card:nth-child(2),
  .product-card:nth-child(2):hover {
    transform: none;
  }

  .product-price {
    font-size: 1.2rem;
  }

  .contact-info-panel,
  .contact-form {
    padding: var(--space-md);
  }

  .form-group input,
  .form-group textarea {
    font-size: 1rem;
  }

  .consent-banner {
    padding: var(--space-sm);
  }

  .consent-inner {
    width: 100%;
  }

  .consent-actions {
    width: 100%;
  }

  .consent-actions .btn {
    flex: 1 1 auto;
    min-width: 0;
  }

  .footer-links {
    gap: var(--space-xs) var(--space-sm);
  }

  .footer-copy {
    font-size: 0.68rem;
  }

  .map-wrap iframe {
    height: 11rem;
  }

  .thank-you-wrap,
  .error-wrap {
    min-height: 50vh;
    padding: var(--space-xl) 0;
  }

  .thank-icon {
    font-size: 2rem;
  }

  .action-row .btn {
    width: 100%;
  }

  .legal-content h2 {
    font-size: 1.05rem;
  }

  .legal-content h3 {
    font-size: 0.92rem;
  }

  .legal-content p,
  .legal-content li {
    font-size: 0.78rem;
  }
}

@media (min-width: 20.01rem) and (max-width: 23.4375rem) {
  .brand-logo {
    font-size: 0.72rem;
    max-width: 72%;
  }

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

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .asym-card.overlap-img,
  .asym-card-narrow {
    width: 100%;
    margin-left: 0;
  }

  .asym-img-wrap,
  .asym-img-centered,
  .asym-img-offset {
    width: 100%;
    margin-left: 0;
    transform: none;
  }

  .asym-block:nth-child(odd),
  .asym-block:nth-child(even) {
    transform: none;
  }

  .product-card:nth-child(2),
  .product-card:nth-child(2):hover {
    transform: none;
  }
}

@media (max-width: 29.9375rem) {
  .container {
    width: 93%;
  }

  .hero-content {
    width: 93%;
  }

  .grid-2,
  .grid-3 {
    gap: var(--space-sm);
  }

  .feature-row {
    gap: var(--space-md);
  }

  .process-step {
    padding: var(--space-sm);
    gap: var(--space-sm);
  }

  .testimonial {
    padding: var(--space-sm);
  }

  .angled-section {
    margin: var(--space-lg) 0;
    padding: var(--space-xl) 0;
  }

  .page-hero::before {
    width: 70%;
    right: -25%;
  }
}

@media (min-width: 30rem) {
  .stats-bar {
    gap: var(--space-md);
  }

  .hero-actions .btn {
    width: auto;
  }
}

@media (min-width: 36rem) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-bar {
    grid-template-columns: repeat(4, 1fr);
  }

  .consent-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .asym-card.overlap-img {
    margin-left: 6%;
    width: 90%;
  }

  .asym-img-wrap {
    width: 82%;
  }
}

@media (min-width: 48rem) {
  .menu-btn {
    display: none;
  }

  .header-wrap {
    flex-wrap: nowrap;
  }

  .main-nav {
    display: flex;
    position: static;
    inset: auto;
    width: auto;
    height: auto;
    background: transparent;
    z-index: auto;
    margin-left: auto;
    padding: 0;
    overflow: visible;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav-list {
    flex-direction: row;
    align-items: center;
    gap: var(--space-lg);
    padding: 0;
    width: auto;
  }

  .main-nav-list a {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-muted);
    padding: var(--space-xs) 0;
  }

  body.menu-open {
    overflow: visible;
  }

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

  .feature-row {
    grid-template-columns: 1fr 1fr;
  }

  .feature-row.reverse {
    direction: rtl;
  }

  .feature-row.reverse > * {
    direction: ltr;
  }

  .contact-zone {
    grid-template-columns: 1fr 1.2fr;
    align-items: start;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .map-wrap iframe {
    height: 16rem;
  }

  .asym-card.overlap-img {
    margin-left: 8%;
    width: 88%;
  }

  .asym-img-wrap {
    width: 75%;
  }

  .product-card:nth-child(2) {
    transform: translateY(var(--space-md));
  }

  .product-card:nth-child(2):hover {
    transform: translateY(calc(var(--space-md) - 0.3rem)) rotate(0.3deg);
  }
}

@media (min-width: 48rem) and (max-width: 63.9375rem) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 .product-card:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
    width: 100%;
  }
}

@media (min-width: 62rem) {
  .container {
    width: 90%;
  }

  .hero-content {
    width: 90%;
  }

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

  .hero {
    min-height: clamp(24rem, 72vh, 38rem);
  }

  .map-wrap iframe {
    height: 18rem;
  }
}

@media (min-width: 64rem) {
  .process-steps {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .grid-3 .product-card:last-child {
    grid-column: auto;
    max-width: none;
    margin: 0;
  }
}

@media (min-width: 75rem) {
  html {
    font-size: 106.25%;
  }

  .main-nav-list {
    gap: var(--space-xl);
  }

  .section-head p {
    max-width: 50ch;
  }
}

@media (min-width: 90rem) {
  :root {
    --max-width: 80rem;
  }
}

@media (hover: none) and (pointer: coarse) {
  .btn:hover {
    transform: none;
  }

  .card:hover {
    transform: none;
    box-shadow: none;
  }

  .product-card:hover,
  .product-card:nth-child(2):hover {
    transform: none;
  }
}

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

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

  .hero-tag,
  .hero h1,
  .hero-desc,
  .hero-actions {
    animation: none;
  }

  .thank-icon {
    animation: none;
  }
}
