:root {
  --color-deep: #432323;
  --color-forest: #2F5755;
  --color-teal: #5A9690;
  --color-mist: #E0D9D9;
  --color-white: #fafafa;
  --color-dark: #1a1a1a;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --space-xs: 0.375rem;
  --space-sm: 0.625rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2.25rem;
  --space-2xl: 3.5rem;
  --space-3xl: 5rem;
  --radius-sm: 0.375rem;
  --radius-md: 0.75rem;
  --radius-lg: 1.25rem;
  --radius-pill: 3rem;
  --shadow-sm: 0 0.125rem 0.5rem rgba(67, 35, 35, 0.08);
  --shadow-md: 0 0.375rem 1.25rem rgba(47, 87, 85, 0.15);
  --shadow-lg: 0 0.75rem 2.5rem rgba(67, 35, 35, 0.18);
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  --text-xs: 0.75rem;
  --text-sm: 0.8125rem;
  --text-base: 0.9375rem;
  --text-md: 1.0625rem;
  --text-lg: 1.375rem;
  --text-xl: 1.75rem;
  --text-2xl: 2.25rem;
  --text-3xl: 3rem;
  --header-height: 3.5rem;
}

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

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

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-dark);
  background-color: var(--color-white);
  overflow-x: hidden;
}

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

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

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

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

h1 { font-size: clamp(var(--text-xl), 5vw, var(--text-3xl)); }
h2 { font-size: clamp(var(--text-lg), 4vw, var(--text-2xl)); }
h3 { font-size: clamp(var(--text-md), 3vw, var(--text-lg)); }

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

ul, ol { padding-left: var(--space-lg); margin-bottom: var(--space-md); }

.container {
  width: 92%;
  max-width: 72rem;
  margin: 0 auto;
}

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

.section-label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-teal);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

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

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

.btn-primary {
  background: var(--color-forest);
  color: var(--color-white);
}

.btn-primary:hover {
  background: var(--color-teal);
  color: var(--color-white);
}

.btn-outline {
  background: transparent;
  color: var(--color-forest);
  border: 0.125rem solid var(--color-forest);
}

.btn-outline:hover {
  background: var(--color-forest);
  color: var(--color-white);
}

.site-header {
  position: absolute;
  top: var(--space-md);
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  z-index: 1001;
  width: 94%;
  max-width: 52rem;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(250, 250, 250, 0.82);
  backdrop-filter: blur(0.75rem);
  border-radius: var(--radius-pill);
  padding: var(--space-sm) var(--space-md);
  box-shadow: var(--shadow-sm);
  border: 0.0625rem solid rgba(90, 150, 144, 0.2);
  position: relative;
  gap: var(--space-sm);
  min-width: 0;
}

.logo {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-deep);
  letter-spacing: -0.02em;
  flex-shrink: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.nav-desktop {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-desktop a {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-forest);
}

.nav-desktop a:hover {
  color: var(--color-teal);
}

.burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  position: relative;
  z-index: 1002;
  color: var(--color-deep);
}

.burger i {
  font-size: 1.125rem;
  line-height: 1;
  pointer-events: none;
}

.burger .icon-open {
  display: block;
}

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

.burger.active .icon-open {
  display: none;
}

.burger.active .icon-close {
  display: block;
}

.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 100dvh;
  z-index: 1000;
  background: rgba(250, 250, 250, 0.98);
  backdrop-filter: blur(1rem);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  padding: var(--space-2xl);
  margin: 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
  overflow-y: auto;
}

.nav-mobile.open {
  display: flex;
  animation: navFadeIn 0.35s ease;
}

.nav-mobile a {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-forest);
  padding: var(--space-md) var(--space-xl);
  border-bottom: none;
  width: 100%;
  max-width: 16rem;
  text-align: center;
  border-radius: var(--radius-pill);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.nav-mobile a:hover {
  background: rgba(90, 150, 144, 0.12);
  color: var(--color-teal);
}

body.nav-open {
  overflow: hidden;
}

@keyframes navFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(145deg, var(--color-deep) 0%, var(--color-forest) 45%, var(--color-teal) 100%);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.55;
}

.hero-fallback {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(90, 150, 144, 0.4) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 30%, rgba(224, 217, 217, 0.15) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: calc(var(--header-height) + var(--space-3xl)) var(--space-md) var(--space-3xl);
  width: 100%;
}

.hero-text {
  max-width: 38rem;
  color: var(--color-white);
}

.hero-text h1 {
  color: var(--color-white);
  margin-bottom: var(--space-md);
  animation: fadeUp 0.8s ease forwards;
}

.hero-text p {
  font-size: var(--text-md);
  opacity: 0.92;
  margin-bottom: var(--space-xl);
  animation: fadeUp 0.8s 0.15s ease forwards;
  opacity: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  animation: fadeUp 0.8s 0.3s ease forwards;
  opacity: 0;
}

.hero-actions .btn-outline {
  border-color: var(--color-mist);
  color: var(--color-mist);
}

.hero-actions .btn-outline:hover {
  background: var(--color-mist);
  color: var(--color-deep);
}

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

.fade-in {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

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

.grid-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 0.0625rem solid rgba(224, 217, 217, 0.6);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

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

.card-icon {
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-mist);
  border-radius: var(--radius-md);
  color: var(--color-forest);
  font-size: var(--text-md);
  margin-bottom: var(--space-md);
}

.card h3 {
  margin-bottom: var(--space-sm);
}

.card p {
  font-size: var(--text-sm);
  margin-bottom: 0;
  color: #555;
}

.feature-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  width: 100%;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.step-item {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
}

.step-num {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-forest);
  color: var(--color-white);
  border-radius: 50%;
  font-size: var(--text-sm);
  font-weight: 700;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.testimonial {
  background: var(--color-mist);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  position: relative;
}

.testimonial::before {
  content: "\201C";
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--color-teal);
  line-height: 1;
  display: block;
  margin-bottom: var(--space-sm);
}

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

.testimonial cite {
  font-size: var(--text-xs);
  font-weight: 600;
  font-style: normal;
  color: var(--color-forest);
}

.cta-band {
  background: linear-gradient(135deg, var(--color-forest), var(--color-teal));
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  color: var(--color-white);
}

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

.cta-band p {
  opacity: 0.9;
  margin-bottom: var(--space-lg);
  font-size: var(--text-sm);
}

.cta-band .btn-primary {
  background: var(--color-white);
  color: var(--color-forest);
}

.cta-band .btn-primary:hover {
  background: var(--color-mist);
}

.cta-band .btn + .btn {
  margin-left: var(--space-md);
}

.cta-band .btn-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
}

.cta-band .btn-wrap .btn + .btn {
  margin-left: 0;
}

.cta-band .btn-outline {
  border-color: var(--color-white);
  color: var(--color-white);
}

.cta-band .btn-outline:hover {
  background: var(--color-white);
  color: var(--color-forest);
}

.site-footer {
  background: var(--color-deep);
  color: var(--color-mist);
  padding: var(--space-xl) 0 var(--space-lg);
  font-size: var(--text-xs);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-lg);
  align-items: flex-start;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md) var(--space-lg);
}

.footer-links a {
  color: var(--color-mist);
  font-size: var(--text-xs);
}

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

.footer-copy {
  width: 100%;
  padding-top: var(--space-md);
  border-top: 0.0625rem solid rgba(224, 217, 217, 0.15);
  opacity: 0.7;
}

.page-hero {
  position: relative;
  padding: calc(var(--header-height) + var(--space-2xl)) 0 var(--space-2xl);
  background: linear-gradient(160deg, var(--color-mist) 0%, var(--color-white) 60%);
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  bottom: -3rem;
  right: -5%;
  width: 40%;
  height: 8rem;
  background: var(--color-teal);
  opacity: 0.12;
  transform: rotate(-4deg);
  border-radius: var(--radius-lg);
}

.page-hero h1 {
  max-width: 28rem;
}

.page-hero p {
  max-width: 32rem;
  font-size: var(--text-sm);
  color: #555;
}

.asym-layout {
  position: relative;
}

.asym-block {
  position: relative;
}

.asym-block.offset-right {
  margin-left: 8%;
  margin-right: -4%;
}

.asym-block.offset-left {
  margin-right: 10%;
  margin-left: -2%;
}

.asym-block.tilted {
  transform: rotate(-1.5deg);
}

.asym-block.tilted-reverse {
  transform: rotate(1.2deg);
}

.overlap-card {
  position: relative;
  z-index: 2;
  margin-top: -3rem;
  margin-left: 5%;
  max-width: 90%;
}

.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-mist);
  transform: skewY(-2deg);
  z-index: -1;
}

.product-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 0.0625rem solid rgba(224, 217, 217, 0.5);
  transition: transform var(--transition-smooth);
}

.product-card:hover {
  transform: scale(1.02);
}

.product-card.tilted {
  transform: rotate(-1.5deg);
}

.product-card.tilted-reverse {
  transform: rotate(1.2deg);
}

.product-card.tilted:hover,
.product-card.tilted-reverse:hover {
  transform: rotate(0deg) scale(1.02);
}

.product-card img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
}

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

.product-price {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-teal);
  font-weight: 700;
  margin: var(--space-sm) 0;
}

.product-features {
  list-style: none;
  padding: 0;
  margin: var(--space-md) 0;
}

.product-features li {
  font-size: var(--text-xs);
  padding: var(--space-xs) 0;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.product-features li i {
  color: var(--color-teal);
  font-size: 0.625rem;
}

.products-asym {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

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

.product-row:nth-child(even) {
  direction: rtl;
}

.product-row:nth-child(even) > * {
  direction: ltr;
}

.product-row:nth-child(2) {
  margin-left: 6%;
}

.product-row:nth-child(3) {
  margin-right: 4%;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-info-panel {
  background: linear-gradient(145deg, var(--color-deep), var(--color-forest));
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  position: relative;
  overflow: hidden;
}

.contact-info-panel::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -15%;
  width: 50%;
  height: 60%;
  background: rgba(90, 150, 144, 0.25);
  border-radius: 50%;
}

.contact-info-panel h2 {
  color: var(--color-white);
  margin-bottom: var(--space-lg);
  position: relative;
}

.contact-detail {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  position: relative;
  font-size: var(--text-sm);
}

.contact-detail p {
  word-break: break-word;
  overflow-wrap: anywhere;
}

.contact-detail i {
  color: var(--color-teal);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.contact-form-panel {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
  border: 0.0625rem solid var(--color-mist);
  transform: rotate(0.8deg);
}

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

.form-group label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  margin-bottom: var(--space-xs);
  color: var(--color-forest);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  border: 0.0625rem solid var(--color-mist);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  background: var(--color-white);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-teal);
  box-shadow: 0 0 0 0.1875rem rgba(90, 150, 144, 0.2);
}

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

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.checkbox-group input {
  margin-top: 0.2rem;
  accent-color: var(--color-forest);
}

.checkbox-group label {
  font-size: var(--text-xs);
  line-height: 1.5;
}

.checkbox-group a {
  text-decoration: underline;
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: var(--space-lg);
}

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

.legal-page {
  padding: calc(var(--header-height) + var(--space-2xl)) 0 var(--space-2xl);
}

.legal-page h1 {
  margin-bottom: var(--space-lg);
}

.legal-page h2 {
  font-size: var(--text-lg);
  margin: var(--space-xl) 0 var(--space-md);
}

.legal-page h3 {
  font-size: var(--text-md);
  margin: var(--space-lg) 0 var(--space-sm);
}

.legal-page p,
.legal-page li {
  font-size: var(--text-sm);
  color: #444;
}

.thank-you-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-3xl) var(--space-md);
}

.thank-you-inner {
  max-width: 32rem;
}

.thank-you-inner i {
  font-size: var(--text-3xl);
  color: var(--color-teal);
  margin-bottom: var(--space-lg);
}

.thank-you-inner h1 {
  margin-bottom: var(--space-md);
}

.error-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-3xl) var(--space-md);
}

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

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

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-xs);
  margin-top: var(--space-lg);
  min-width: 32rem;
}

.table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: var(--space-lg);
}

.table-scroll .comparison-table {
  margin-top: 0;
}

.comparison-table th,
.comparison-table td {
  padding: var(--space-sm) var(--space-md);
  text-align: left;
  border-bottom: 0.0625rem solid var(--color-mist);
}

.comparison-table th {
  background: var(--color-forest);
  color: var(--color-white);
  font-weight: 600;
}

.comparison-table tr:nth-child(even) td {
  background: rgba(224, 217, 217, 0.3);
}

.faq-item {
  border-bottom: 0.0625rem solid var(--color-mist);
  padding: var(--space-md) 0;
}

.faq-item h3 {
  font-size: var(--text-sm);
  margin-bottom: var(--space-sm);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item p {
  font-size: var(--text-xs);
  color: #555;
  margin-bottom: 0;
}

.cookie-popup {
  position: fixed;
  bottom: var(--space-md);
  left: var(--space-md);
  right: var(--space-md);
  max-width: 28rem;
  background: var(--color-deep);
  color: var(--color-mist);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  transform: translateY(calc(100% + var(--space-xl)));
  transition: transform var(--transition-smooth);
  font-size: var(--text-xs);
}

.cookie-popup.show {
  transform: translateY(0);
}

.cookie-popup p {
  margin-bottom: var(--space-md);
}

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

.cookie-actions .btn {
  font-size: var(--text-xs);
  padding: var(--space-xs) var(--space-md);
}

.cookie-popup .btn-outline {
  border-color: var(--color-mist);
  color: var(--color-mist);
}

.cookie-popup .btn-outline:hover {
  background: var(--color-mist);
  color: var(--color-deep);
}

.inner-header {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  width: 100%;
  max-width: none;
  padding: var(--space-md) 3%;
  background: var(--color-white);
  border-bottom: 0.0625rem solid var(--color-mist);
  z-index: 1001;
}

.inner-header .header-inner {
  max-width: 72rem;
  margin: 0 auto;
  background: transparent;
  box-shadow: none;
  border: none;
  padding: 0;
}

.bg-mist {
  background: rgba(224, 217, 217, 0.25);
}

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

.disclaimer-note {
  font-size: var(--text-xs);
  color: #666;
  margin-top: var(--space-md);
}

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

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

@media (max-width: 1200px) {
  .container {
    width: 94%;
  }

  .product-row:nth-child(2) {
    margin-left: 3%;
  }

  .product-row:nth-child(3) {
    margin-right: 2%;
  }

  .asym-block.offset-right {
    margin-left: 4%;
    margin-right: 0;
  }

  .asym-block.offset-left {
    margin-right: 5%;
    margin-left: 0;
  }
}

@media (max-width: 1024px) {
  :root {
    --space-2xl: 3rem;
    --space-3xl: 4rem;
  }

  .nav-desktop {
    gap: var(--space-md);
  }

  .nav-desktop a {
    font-size: 0.6875rem;
    letter-spacing: 0.05em;
  }

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

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

  .testimonial-grid .testimonial:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }

  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .contact-form-panel {
    transform: none;
  }

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

  .page-hero::after {
    width: 50%;
    height: 6rem;
  }
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .burger {
    display: flex;
    flex-shrink: 0;
  }

  .site-header {
    width: 96%;
  }

  .grid-two,
  .grid-three,
  .testimonial-grid,
  .contact-wrap,
  .product-row {
    grid-template-columns: 1fr;
  }

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

  .product-row:nth-child(even) {
    direction: ltr;
  }

  .product-row:nth-child(2),
  .product-row:nth-child(3) {
    margin-left: 0;
    margin-right: 0;
  }

  .asym-block.offset-right,
  .asym-block.offset-left {
    margin-left: 0;
    margin-right: 0;
  }

  .asym-block.tilted,
  .asym-block.tilted-reverse,
  .product-card.tilted,
  .product-card.tilted-reverse {
    transform: none;
  }

  .overlap-card {
    margin-top: var(--space-lg);
    margin-left: 0;
    max-width: 100%;
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
  }

  .hero-content {
    padding-top: calc(var(--header-height) + var(--space-2xl));
    padding-bottom: var(--space-2xl);
  }

  .hero-text p {
    font-size: var(--text-base);
  }

  .page-hero {
    padding-top: calc(var(--header-height) + var(--space-xl));
    padding-bottom: var(--space-xl);
  }

  .page-hero::after {
    display: none;
  }

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

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

  .step-item {
    gap: var(--space-md);
  }

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

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

  .cta-band .btn + .btn {
    margin-left: 0;
  }

  .cta-band .btn-wrap {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-band .btn-wrap .btn {
    width: 100%;
    justify-content: center;
  }

  .legal-page {
    padding-top: calc(var(--header-height) + var(--space-xl));
    padding-bottom: var(--space-xl);
  }

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

  .inner-header {
    padding: var(--space-sm) 3%;
  }

  .inner-header .header-inner {
    padding: var(--space-xs) 0;
  }

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

@media (max-width: 600px) {
  .container {
    width: 96%;
  }

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

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

  .product-price {
    font-size: var(--text-lg);
  }

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

  .cookie-popup {
    max-width: none;
  }

  .cookie-actions {
    flex-direction: column;
  }

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

  .faq-item h3 {
    font-size: var(--text-xs);
    gap: var(--space-sm);
  }

  .error-page .error-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .thank-you-inner .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  :root {
    --space-xl: 1.75rem;
    --space-2xl: 2.25rem;
    --space-3xl: 3rem;
    --header-height: 3.25rem;
  }

  .site-header {
    top: var(--space-sm);
    width: 97%;
  }

  .header-inner {
    border-radius: var(--radius-lg);
    padding: var(--space-xs) var(--space-sm);
  }

  .logo {
    font-size: 0.6875rem;
  }

  .hero-content {
    padding-top: calc(var(--header-height) + var(--space-xl));
    padding-left: var(--space-sm);
    padding-right: var(--space-sm);
  }

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

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

  .hero-text h1 {
    font-size: var(--text-xl);
  }

  .section-label {
    letter-spacing: 0.1em;
  }

  .btn {
    padding: var(--space-sm) var(--space-md);
    font-size: var(--text-xs);
  }

  .grid-two {
    gap: var(--space-lg);
  }

  .grid-three {
    gap: var(--space-md);
  }

  .step-num {
    width: 1.75rem;
    height: 1.75rem;
    font-size: var(--text-xs);
  }

  .contact-detail {
    font-size: var(--text-xs);
    gap: var(--space-sm);
  }

  .form-group input,
  .form-group textarea {
    font-size: 1rem;
    padding: var(--space-sm);
  }

  .footer-inner {
    flex-direction: column;
    gap: var(--space-md);
  }

  .footer-links {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .site-footer {
    padding: var(--space-lg) 0 var(--space-md);
  }

  .cookie-popup {
    left: var(--space-sm);
    right: var(--space-sm);
    bottom: var(--space-sm);
    padding: var(--space-md);
  }

  .thank-you-page,
  .error-page {
    padding: var(--space-2xl) var(--space-sm);
    min-height: 70vh;
  }

  .legal-page h2 {
    font-size: var(--text-md);
  }

  .comparison-table {
    font-size: 0.6875rem;
    min-width: 28rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: var(--space-xs) var(--space-sm);
  }

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

  .nav-mobile a {
    font-size: var(--text-md);
    max-width: 100%;
  }
}

@media (max-width: 375px) {
  :root {
    --space-lg: 1.25rem;
    --space-xl: 1.5rem;
    --space-2xl: 2rem;
    --space-3xl: 2.75rem;
  }

  .logo span {
    display: none;
  }

  .hero-text p {
    font-size: var(--text-sm);
    margin-bottom: var(--space-lg);
  }

  .card-icon {
    width: 2rem;
    height: 2rem;
    font-size: var(--text-sm);
  }

  .product-features li {
    font-size: 0.6875rem;
  }

  .cta-band h2 {
    font-size: var(--text-lg);
  }

  .page-hero h1 {
    max-width: 100%;
  }
}

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

  :root {
    --space-sm: 0.5rem;
    --space-md: 0.875rem;
    --space-lg: 1.125rem;
    --space-xl: 1.375rem;
    --space-2xl: 1.75rem;
    --space-3xl: 2.5rem;
    --header-height: 3rem;
    --radius-pill: 2rem;
  }

  body {
    font-size: var(--text-sm);
  }

  .container {
    width: 98%;
  }

  .site-header {
    width: 99%;
    top: var(--space-xs);
  }

  .header-inner {
    padding: 0.3rem var(--space-xs);
    gap: var(--space-xs);
  }

  .logo {
    font-size: 0.625rem;
    letter-spacing: -0.03em;
  }

  .burger i {
    font-size: 1rem;
  }

  .hero-content {
    padding-top: calc(var(--header-height) + var(--space-lg));
    padding-bottom: var(--space-xl);
  }

  .hero-text h1 {
    font-size: 1.375rem;
    line-height: 1.25;
    margin-bottom: var(--space-sm);
  }

  .hero-text p {
    font-size: var(--text-xs);
    line-height: 1.55;
  }

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

  .page-hero {
    padding-top: calc(var(--header-height) + var(--space-lg));
    padding-bottom: var(--space-lg);
  }

  .page-hero p {
    font-size: var(--text-xs);
  }

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

  .card p,
  .testimonial p {
    font-size: var(--text-xs);
  }

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

  .contact-info-panel h2,
  .contact-form-panel h2 {
    font-size: var(--text-md);
    margin-bottom: var(--space-md);
  }

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

  .feature-img {
    border-radius: var(--radius-md);
  }

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

  .product-price {
    font-size: var(--text-md);
  }

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

  .step-num {
    width: 1.5rem;
    height: 1.5rem;
  }

  .checkbox-group label {
    font-size: 0.6875rem;
  }

  .form-group label {
    font-size: 0.6875rem;
  }

  .cookie-popup {
    left: var(--space-xs);
    right: var(--space-xs);
    bottom: var(--space-xs);
    padding: var(--space-sm);
    border-radius: var(--radius-md);
  }

  .cookie-popup p {
    font-size: 0.6875rem;
    line-height: 1.5;
  }

  .cookie-actions .btn {
    font-size: 0.6875rem;
    padding: var(--space-xs) var(--space-sm);
  }

  .footer-brand {
    font-size: var(--text-xs);
  }

  .footer-links a {
    font-size: 0.6875rem;
  }

  .legal-page {
    padding-top: calc(var(--header-height) + var(--space-lg));
  }

  .legal-page p,
  .legal-page li {
    font-size: var(--text-xs);
  }

  .comparison-table {
    min-width: 26rem;
    font-size: 0.625rem;
  }

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

  .thank-you-inner i {
    font-size: var(--text-2xl);
  }

  .error-code {
    font-size: 3.5rem;
  }

  .nav-mobile a {
    font-size: var(--text-sm);
    padding: var(--space-sm) var(--space-md);
  }

  .inner-header {
    padding: var(--space-xs) 2%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .grid-two {
    gap: var(--space-lg);
  }
}

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

  .card:hover {
    transform: none;
    box-shadow: var(--shadow-sm);
  }

  .product-card:hover {
    transform: none;
  }

  .product-card.tilted:hover,
  .product-card.tilted-reverse:hover {
    transform: none;
  }
}

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

  html {
    scroll-behavior: auto;
  }
}
