:root {
  --color-deep: #0C2B4E;
  --color-mid: #1A3D64;
  --color-accent: #1D546C;
  --color-light: #F4F4F4;
  --color-white: #ffffff;
  --color-overlay: rgba(12, 43, 78, 0.92);
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Instrument Sans', sans-serif;
  --space-xs: 0.375rem;
  --space-sm: 0.75rem;
  --space-md: 1.25rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4.5rem;
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --shadow-sm: 0 0.125rem 0.5rem rgba(12, 43, 78, 0.08);
  --shadow-md: 0 0.25rem 1.25rem rgba(12, 43, 78, 0.12);
  --shadow-lg: 0 0.5rem 2rem rgba(12, 43, 78, 0.18);
  --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);
  --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: 2.75rem;
  --max-width: 72rem;
  --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-deep);
  background: var(--color-light);
  overflow-x: hidden;
}

body.nav-open {
  overflow: 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-mid);
}

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

h1 { font-size: var(--text-3xl); }
h2 { font-size: var(--text-2xl); }
h3 { font-size: var(--text-lg); }

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

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

.topbar {
  position: relative;
  width: 100%;
  background: var(--color-white);
  border-bottom: 0.0625rem solid rgba(12, 43, 78, 0.1);
  box-shadow: var(--shadow-sm);
  z-index: 100;
}

.topbar-wrap {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  min-height: var(--header-height);
}

.topbar-logo {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 800;
  color: var(--color-deep);
  letter-spacing: -0.02em;
  flex-shrink: 1;
  min-width: 0;
  max-width: calc(100% - 3rem);
  overflow-wrap: anywhere;
  transition: color var(--transition-fast);
}

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

.topbar-toggle {
  display: none;
  width: 2.25rem;
  height: 2.25rem;
  border: 0.0625rem solid rgba(12, 43, 78, 0.15);
  background: var(--color-light);
  color: var(--color-deep);
  border-radius: var(--radius-sm);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  transition: background var(--transition-fast), border-color var(--transition-fast);
  flex-shrink: 0;
}

.topbar-toggle:hover {
  background: var(--color-deep);
  color: var(--color-light);
  border-color: var(--color-deep);
}

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

.topbar-toggle.is-active .nav-icon-open {
  display: none;
}

.topbar-toggle.is-active .nav-icon-close {
  display: block;
}

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

.topbar-link {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-mid);
  padding: var(--space-xs) 0;
  transition: color var(--transition-fast);
}

.topbar-link:hover {
  color: var(--color-accent);
}

.hero-section {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-deep);
  overflow: hidden;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-2xl) var(--space-md);
  max-width: 40rem;
}

.hero-tag {
  display: inline-block;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-light);
  opacity: 0.7;
  margin-bottom: var(--space-sm);
  animation: fadeUp 0.8s ease forwards;
}

.hero-title {
  font-size: clamp(var(--text-xl), 5vw, var(--text-3xl));
  color: var(--color-light);
  margin-bottom: var(--space-md);
  animation: fadeUp 0.8s 0.15s ease forwards;
  opacity: 0;
}

.hero-desc {
  font-size: var(--text-sm);
  color: rgba(244, 244, 244, 0.85);
  margin-bottom: var(--space-lg);
  animation: fadeUp 0.8s 0.3s ease forwards;
  opacity: 0;
}

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

.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: var(--text-sm);
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

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

.btn-primary {
  background: var(--color-accent);
  color: var(--color-light);
  animation: fadeUp 0.8s 0.45s ease forwards;
  opacity: 0;
}

.btn-primary:hover {
  background: var(--color-mid);
  color: var(--color-light);
}

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

.btn-outline:hover {
  background: var(--color-deep);
  color: var(--color-light);
}

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

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

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

.section-title {
  margin-bottom: var(--space-md);
  color: var(--color-deep);
}

.section-intro {
  font-size: var(--text-sm);
  color: var(--color-mid);
  max-width: 36rem;
  margin-bottom: var(--space-lg);
}

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

.section-inner,
.grid-two > *,
.features-row > *,
.contact-wrap > *,
.product-grid > * {
  min-width: 0;
}

.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.card-icon {
  font-size: var(--text-lg);
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.card-title {
  font-size: var(--text-md);
  margin-bottom: var(--space-xs);
}

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

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

.stat-block {
  text-align: center;
  padding: var(--space-md);
}

.stat-number {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--color-accent);
  font-weight: 800;
}

.stat-label {
  font-size: var(--text-xs);
  color: var(--color-mid);
}

.image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.image-frame img {
  width: 100%;
  object-fit: cover;
}

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

.review-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  color: var(--color-accent);
  opacity: 0.3;
  position: absolute;
  top: var(--space-xs);
  left: var(--space-sm);
  line-height: 1;
}

.review-text {
  font-size: var(--text-sm);
  font-style: italic;
  padding-top: var(--space-md);
  margin-bottom: var(--space-sm);
}

.review-author {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-accent);
}

.review-disclaimer {
  font-size: var(--text-xs);
  color: var(--color-mid);
  margin-top: var(--space-md);
  margin-bottom: 0;
  max-width: 40rem;
  line-height: 1.5;
  opacity: 0.85;
}

.contact-section {
  background: var(--color-deep);
  color: var(--color-light);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 50%;
  height: 160%;
  background: var(--color-accent);
  transform: rotate(-8deg);
  opacity: 0.15;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-xl);
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact-info h2 {
  color: var(--color-light);
}

.contact-info p {
  font-size: var(--text-sm);
  opacity: 0.85;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  font-size: var(--text-sm);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-detail i {
  color: var(--color-accent);
  margin-top: 0.2rem;
}

.contact-form-box {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  color: var(--color-deep);
  box-shadow: var(--shadow-lg);
  transform: rotate(1deg);
}

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

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

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

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 0.125rem rgba(29, 84, 108, 0.2);
}

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

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

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

.form-check label {
  font-size: var(--text-xs);
  line-height: 1.4;
}

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

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

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

.site-footer {
  background: var(--color-mid);
  color: var(--color-light);
  padding: var(--space-md);
  font-size: var(--text-xs);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
}

.footer-disclaimer {
  width: 100%;
  font-size: 0.625rem;
  color: rgba(244, 244, 244, 0.65);
  line-height: 1.4;
  margin: 0;
  text-align: center;
}

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

.footer-links a {
  color: rgba(244, 244, 244, 0.8);
  font-size: var(--text-xs);
}

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

.page-hero {
  background: var(--color-deep);
  padding: var(--space-2xl) var(--space-md) var(--space-xl);
  position: relative;
  overflow: hidden;
}



.page-hero h1 {
  color: var(--color-light);
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  font-size: clamp(var(--text-xl), 4vw, var(--text-2xl));
}

.page-hero p {
  color: rgba(244, 244, 244, 0.8);
  font-size: var(--text-sm);
  max-width: 32rem;
  margin: var(--space-sm) auto 0;
  position: relative;
  z-index: 1;
}

.asym-block {
  position: relative;
  padding: var(--space-xl) var(--space-md);
}

.asym-layout {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
}

.asym-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-lg);
}

.asym-card:nth-child(odd) {
  transform: rotate(-1deg);
  margin-right: 10%;
}

.asym-card:nth-child(even) {
  transform: rotate(0.8deg);
  margin-left: 12%;
  margin-top: -1.5rem;
}

.asym-float-img {
  width: 35%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.asym-float-img.right {
  right: 0;
  top: 20%;
  transform: rotate(3deg);
}

.asym-float-img.left {
  left: -2%;
  top: 40%;
  transform: rotate(-4deg);
}

.asym-offset {
  margin-left: 38%;
}

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

.asym-tilt-alt {
  transform: rotate(2deg);
  margin: 0;
}

.table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.step-list {
  list-style: none;
  padding: 0;
  counter-reset: steps;
}

.step-item {
  counter-increment: steps;
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  position: relative;
}

.step-item::before {
  content: counter(steps);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--color-light);
  background: var(--color-accent);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: var(--text-md);
  margin-bottom: var(--space-xs);
}

.step-content p {
  font-size: var(--text-sm);
  color: var(--color-mid);
}

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

.product-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base);
  display: flex;
  flex-direction: column;
}

.product-card:nth-child(2) {
  transform: translateY(-1rem);
}

.product-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: var(--shadow-lg);
}

.product-card:nth-child(2):hover {
  transform: translateY(-1.5rem);
}

.product-body {
  padding: var(--space-md);
  flex: 1;
  display: flex;
  flex-direction: column;
}

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

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

.product-features li {
  font-size: var(--text-xs);
  padding: var(--space-xs) 0;
  border-bottom: 0.0625rem solid rgba(26, 61, 100, 0.1);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

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

.angled-section {
  background: var(--color-mid);
  color: var(--color-light);
  padding: var(--space-xl) var(--space-md);
  clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
  margin: var(--space-lg) 0;
}

.angled-section h2 {
  color: var(--color-light);
}

.angled-section p {
  font-size: var(--text-sm);
  opacity: 0.9;
}

.legal-page {
  padding: var(--space-2xl) var(--space-md) var(--space-xl);
  max-width: 48rem;
  margin: 0 auto;
}

.legal-page h1 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-md);
}

.legal-page h2 {
  font-size: var(--text-lg);
  margin: var(--space-lg) 0 var(--space-sm);
  color: var(--color-mid);
}

.legal-page p,
.legal-page li {
  font-size: var(--text-sm);
  color: var(--color-mid);
  margin-bottom: var(--space-sm);
}

.legal-page ul {
  margin-bottom: var(--space-md);
}

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

.thanks-box {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
  max-width: 28rem;
}

.thanks-icon {
  font-size: var(--text-3xl);
  color: var(--color-accent);
  margin-bottom: var(--space-md);
}

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

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-deep);
  color: var(--color-light);
  padding: var(--space-md);
  z-index: 300;
  transform: translateY(100%);
  transition: transform var(--transition-base);
  box-shadow: var(--shadow-lg);
}

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

.cookie-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.cookie-text {
  font-size: var(--text-xs);
  flex: 1;
  min-width: 12rem;
  opacity: 0.9;
}

.cookie-text a {
  color: var(--color-light);
  text-decoration: underline;
}

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

.btn-cookie {
  padding: var(--space-xs) var(--space-md);
  font-size: var(--text-xs);
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  transition: background var(--transition-fast);
}

.btn-cookie-accept {
  background: var(--color-accent);
  color: var(--color-light);
}

.btn-cookie-accept:hover {
  background: var(--color-mid);
}

.btn-cookie-decline {
  background: transparent;
  color: var(--color-light);
  border: 0.0625rem solid rgba(244, 244, 244, 0.3);
}

.fade-in {
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

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

.cta-strip {
  background: linear-gradient(135deg, var(--color-accent), var(--color-mid));
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  color: var(--color-light);
}

.cta-strip h2 {
  color: var(--color-light);
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
}

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

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-xs);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  min-width: 32rem;
}
.comparison-table th,
.comparison-table td {
  padding: var(--space-sm);
  text-align: left;
  border-bottom: 0.0625rem solid rgba(26, 61, 100, 0.1);
}

.comparison-table th {
  background: var(--color-deep);
  color: var(--color-light);
  font-family: var(--font-display);
  font-size: var(--text-xs);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.faq-item {
  border-bottom: 0.0625rem solid rgba(26, 61, 100, 0.1);
  padding: var(--space-md) 0;
}

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

.faq-item h3 span {
  flex: 1;
}

.faq-icon {
  font-size: var(--text-xs);
  color: var(--color-accent);
  transition: transform var(--transition-base);
  flex-shrink: 0;
}

.faq-item.is-open .faq-icon {
  transform: rotate(180deg);
}

.faq-item p {
  font-size: var(--text-xs);
  color: var(--color-mid);
  display: none;
  padding-right: var(--space-lg);
}

.faq-item.is-open p {
  display: block;
}

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

  .asym-float-img {
    width: 40%;
  }

  .asym-offset {
    margin-left: 28%;
  }
}

@media (max-width: 992px) {
  .features-row {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

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

  .product-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 28rem;
    margin: 0 auto;
    width: 100%;
  }

  .asym-float-img {
    position: relative;
    width: 100%;
    margin-bottom: var(--space-md);
    transform: none !important;
    left: auto;
    right: auto;
    top: auto;
  }

  .asym-offset {
    margin-left: 0;
  }

  .asym-card:nth-child(odd),
  .asym-card:nth-child(even) {
    transform: none;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
  }

  .asym-tilt {
    transform: none;
  }

  .asym-tilt-alt {
    transform: none;
    margin: 0;
  }

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

@media (max-width: 768px) {
  .topbar {
    z-index: 300;
  }

  .topbar-toggle {
    display: flex;
    position: relative;
    z-index: 302;
  }

  .topbar-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    height: 100dvh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    background: var(--color-deep);
    z-index: 301;
    padding: var(--space-xl) var(--space-md);
    padding-top: calc(var(--header-height) + var(--space-lg));
  }

  .topbar-menu.is-open {
    display: flex;
  }

  .topbar-link {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    color: var(--color-light);
    padding: var(--space-md) var(--space-lg);
    border-bottom: none;
    text-align: center;
    width: 100%;
    max-width: 16rem;
  }

  .topbar-link:hover {
    color: rgba(244, 244, 244, 0.75);
  }

  .features-row,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card:nth-child(3) {
    grid-column: auto;
    max-width: none;
  }

  .hero-content {
    padding: var(--space-xl) var(--space-md);
  }

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

  .page-hero::after {
    height: 3rem;
    bottom: -1.5rem;
  }

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

  .angled-section {
    clip-path: polygon(0 2%, 100% 0, 100% 98%, 0 100%);
    padding: var(--space-lg) var(--space-md);
  }

  .legal-page {
    padding: var(--space-xl) var(--space-md);
  }

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

  .step-item::before {
    width: 2rem;
    height: 2rem;
    font-size: var(--text-md);
  }

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

  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .cookie-actions {
    justify-content: center;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  :root {
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 2.75rem;
    --header-height: 3.25rem;
  }

  h1 { font-size: var(--text-xl); }
  h2 { font-size: var(--text-lg); }
  h3 { font-size: var(--text-md); }

  .topbar-wrap {
    padding: 0 var(--space-sm);
    gap: var(--space-sm);
  }

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

  .hero-section {
    min-height: auto;
    padding: var(--space-lg) 0;
  }

  .hero-content {
    padding: var(--space-lg) var(--space-sm);
  }

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

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

  .cta-strip .btn,
  .contact-form .btn,
  .product-body .btn {
    width: 100%;
  }

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

  .contact-form-box {
    padding: var(--space-md);
    border-radius: var(--radius-lg);
  }

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

  .stat-number {
    font-size: var(--text-xl);
  }

  .thanks-box {
    padding: var(--space-lg);
    margin: 0 var(--space-sm);
  }

  .thanks-section,
  .error-section {
    padding: var(--space-xl) var(--space-sm);
    min-height: 70vh;
  }

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

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

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

@media (max-width: 480px) {
  :root {
    --text-md: 1rem;
    --text-lg: 1.25rem;
    --text-xl: 1.5rem;
    --text-2xl: 1.875rem;
    --text-3xl: 2.125rem;
  }

  .topbar-logo {
    font-size: 0.75rem;
    line-height: 1.25;
  }

  .section-intro {
    margin-bottom: var(--space-md);
  }

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

  .features-row {
    gap: var(--space-sm);
  }

  .contact-section::before {
    width: 70%;
    right: -20%;
  }

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

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

  .btn-cookie {
    width: 100%;
    padding: var(--space-sm);
  }

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

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

@media (max-width: 360px) {
  :root {
    --space-sm: 0.625rem;
    --space-md: 0.875rem;
    --space-lg: 1.25rem;
    --header-height: 3rem;
  }

  .topbar-logo {
    font-size: 0.6875rem;
    max-width: calc(100% - 2.75rem);
  }

  .topbar-toggle {
    width: 2rem;
    height: 2rem;
    font-size: 0.75rem;
    flex-shrink: 0;
  }

  .hero-title {
    font-size: var(--text-lg);
  }

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

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

  .card-icon {
    font-size: var(--text-md);
  }

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

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

@media (max-width: 320px) {
  :root {
    --text-base: 0.8125rem;
    --text-sm: 0.6875rem;
    --text-xs: 0.625rem;
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 0.75rem;
    --space-lg: 1rem;
    --space-xl: 1.5rem;
    --space-2xl: 2rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
  }

  html {
    font-size: 93.75%;
  }

  .topbar-wrap {
    padding: 0 var(--space-xs);
    min-height: 2.75rem;
  }

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

  .topbar-menu {
    padding: var(--space-xs) var(--space-sm);
  }

  .topbar-link {
    font-size: var(--text-xs);
    padding: var(--space-xs) 0;
  }

  .hero-content {
    padding: var(--space-md) var(--space-xs);
  }

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

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

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

  .angled-section {
    padding: var(--space-md) var(--space-xs);
    margin: var(--space-md) 0;
  }

  .contact-form-box {
    padding: var(--space-sm);
  }

  .form-check label {
    font-size: 0.625rem;
  }

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

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

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

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

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

  .legal-page {
    padding: var(--space-lg) var(--space-xs);
  }

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

  .step-item::before {
    width: 1.75rem;
    height: 1.75rem;
    font-size: var(--text-sm);
  }

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

@media (min-width: 769px) {
  .topbar-menu {
    display: flex !important;
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    padding: 0;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    z-index: auto;
  }

  .nav-icon-close {
    display: none !important;
  }
}

