:root {
  --color-bg: #F5F2EE;
  --color-surface: #FDFBF8;
  --color-dark: #1A1612;
  --color-dark-muted: #2E2822;
  --color-primary: #8B4513;
  --color-primary-light: #A0522D;
  --color-accent: #C8860A;
  --color-accent-light: #E8A020;
  --color-text: #2E2822;
  --color-text-muted: #6B5E52;
  --color-border: #D4C8BC;
  --color-inset: #EDE8E2;
  --shadow-xs: 0 1px 2px rgba(26,22,18,0.06), 0 1px 3px rgba(26,22,18,0.04);
  --shadow-sm: 0 2px 4px rgba(26,22,18,0.08), 0 4px 8px rgba(26,22,18,0.04);
  --shadow-md: 0 4px 8px rgba(26,22,18,0.08), 0 8px 24px rgba(26,22,18,0.06), 0 2px 4px rgba(26,22,18,0.04);
  --shadow-lg: 0 8px 16px rgba(26,22,18,0.10), 0 16px 48px rgba(26,22,18,0.08), 0 4px 8px rgba(26,22,18,0.04);
  --shadow-xl: 0 16px 32px rgba(26,22,18,0.12), 0 32px 64px rgba(26,22,18,0.08), 0 8px 16px rgba(26,22,18,0.06);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  transition: color 0.2s ease;
}


.surface {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
}

.surface-raised {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(212,200,188,0.6);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.surface-raised:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.surface-inset {
  background: var(--color-inset);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}


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

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


.text-display {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #FDFBF8;
}

.text-heading {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.text-subheading {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-text);
}

.text-body {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--color-text);
}

.text-caption {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}


.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 1px;
}

.section-label--light {
  color: rgba(200,134,10,0.9);
}

.section-label--light::before {
  background: rgba(200,134,10,0.7);
}


.action-primary {
  display: inline-flex;
  align-items: center;
  background: var(--color-primary);
  color: #fff;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: var(--shadow-sm);
  border: none;
  cursor: pointer;
}

.action-primary:hover {
  background: var(--color-primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: #fff;
}

.action-ghost {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--color-text);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid var(--color-border);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

.action-ghost:hover {
  border-color: var(--color-text);
  background: rgba(46,40,34,0.05);
}

.action-ghost--light {
  color: rgba(253,251,248,0.85);
  border-color: rgba(253,251,248,0.3);
}

.action-ghost--light:hover {
  border-color: rgba(253,251,248,0.7);
  background: rgba(253,251,248,0.1);
  color: #FDFBF8;
}


.hero-section {
  display: flex;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: var(--color-dark);
}

.hero-left {
  position: sticky;
  top: 0;
  width: 50%;
  height: 100vh;
  overflow: hidden;
  flex-shrink: 0;
}

.hero-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 4rem 6rem;
  position: relative;
  z-index: 2;
}


.text-display .word {
  overflow: hidden;
  display: inline-block;
}

.text-display .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.text-display.is-visible .char {
  opacity: 1;
  transform: translateY(0);
}


.feature-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-icon-wrap {
  width: 48px;
  height: 48px;
  background: rgba(139,69,19,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--color-primary);
  transition: background 0.2s ease;
}

.feature-card:hover .feature-icon-wrap {
  background: rgba(139,69,19,0.18);
}


.tabs-wrapper {
  background: var(--color-bg);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

.tabs-nav {
  display: flex;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-inset);
  overflow-x: auto;
  scrollbar-width: none;
}

.tabs-nav::-webkit-scrollbar {
  display: none;
}

.tab-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-muted);
  background: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease;
  position: relative;
  border-bottom: 3px solid transparent;
}

.tab-btn:hover {
  color: var(--color-text);
  background: rgba(253,251,248,0.6);
}

.tab-btn.active {
  color: var(--color-primary);
  background: var(--color-surface);
  border-bottom-color: var(--color-primary);
}

.tab-panels {
  padding: 2.5rem;
}

.tab-panel {
  display: none;
  animation: fadeInPanel 0.3s ease;
}

.tab-panel.active {
  display: block;
}

@keyframes fadeInPanel {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}


.tag-chip {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--color-inset);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-text-muted);
  cursor: default;
  transition: background 0.2s ease, color 0.2s ease;
}

.tag-chip:hover {
  background: var(--color-border);
  color: var(--color-text);
}


.comparison-table-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.comparison-table thead tr {
  background: var(--color-dark);
}

.comparison-table thead th {
  padding: 1.25rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-align: center;
  color: rgba(253,251,248,0.85);
  border-right: 1px solid rgba(255,255,255,0.06);
}

.comparison-table thead th:first-child {
  text-align: left;
}

.comparison-table thead th span {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(253,251,248,0.45);
  margin-top: 0.25rem;
}

.comparison-table tbody tr {
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface);
  transition: background 0.15s ease;
}

.comparison-table tbody tr:nth-child(even) {
  background: var(--color-bg);
}

.comparison-table tbody tr:hover {
  background: var(--color-inset);
}

.comparison-table tbody td {
  padding: 1rem 1.5rem;
  text-align: center;
  color: var(--color-text-muted);
}

.col-feature {
  text-align: left !important;
  font-weight: 600;
  color: var(--color-text) !important;
  width: 40%;
}

.col-recommended {
  background: rgba(139,69,19,0.04);
  position: relative;
}

.check-yes {
  color: #16a34a;
  font-size: 1rem;
}

.check-no {
  color: var(--color-border);
  font-size: 0.875rem;
}


.site-footer {
  background: var(--color-dark);
  padding: 4rem 2rem 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(253,251,248,0.08);
}

.footer-brand {}

.footer-links-group h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(253,251,248,0.4);
  margin-bottom: 1rem;
}

.footer-links-group a {
  display: block;
  font-size: 0.875rem;
  color: rgba(253,251,248,0.6);
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.2s ease;
}

.footer-links-group a:hover {
  color: rgba(253,251,248,0.9);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(253,251,248,0.35);
}


.geo-dot-grid {
  background-image: radial-gradient(circle, rgba(253,251,248,0.3) 1px, transparent 1px);
  background-size: 24px 24px;
}


.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-family: 'Inter', sans-serif;
  color: var(--color-text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.form-input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(139,69,19,0.12);
}

.form-input::placeholder {
  color: var(--color-text-muted);
  opacity: 0.6;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}


.faq-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-xs);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: var(--color-surface);
  border: none;
  cursor: pointer;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s ease;
}

.faq-question:hover {
  background: var(--color-inset);
}

.faq-icon {
  color: var(--color-accent);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: var(--color-surface);
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}


.guide-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.guide-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.guide-card-img {
  position: relative;
  overflow: hidden;
}

.guide-card-img img {
  transition: transform 0.4s ease;
}

.guide-card:hover .guide-card-img img {
  transform: scale(1.04);
}

.guide-card-tag {
  position: absolute;
  top: 0.875rem;
  left: 0.875rem;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-full);
}

.guide-card-tag--chem {
  background: var(--color-accent);
}

.guide-card-tag--scan {
  background: #2563eb;
}

.guide-card-tag--kol {
  background: #059669;
}

.guide-card-body {
  padding: 1.25rem;
  background: var(--color-surface);
}

.guide-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.guide-card-excerpt {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 0.875rem;
}

.guide-card-meta {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  display: flex;
  gap: 0.5rem;
}

.guide-card-meta i {
  color: var(--color-accent);
  margin-right: 0.25rem;
}


.guide-filter {
  padding: 0.5rem 1.125rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  border: 1.5px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Inter', sans-serif;
}

.guide-filter:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.guide-filter.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}


.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

body.menu-open .hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.menu-open .hamburger span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

body.menu-open .hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }


#cookieBanner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--color-dark-muted);
  border-bottom: 1px solid rgba(253,251,248,0.1);
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

#cookieBanner.is-visible {
  transform: translateY(0);
}

.cookie-banner-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.875rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-banner-text {
  flex: 1;
  font-size: 0.8125rem;
  color: rgba(253,251,248,0.7);
  min-width: 200px;
  line-height: 1.5;
}

.cookie-banner-text a {
  color: rgba(200,134,10,0.9);
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  gap: 0.625rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookie-btn-accept {
  padding: 0.5rem 1.125rem;
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
  font-family: 'Inter', sans-serif;
}

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

.cookie-btn-reject {
  padding: 0.5rem 1.125rem;
  background: transparent;
  color: rgba(253,251,248,0.6);
  border: 1px solid rgba(253,251,248,0.2);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Inter', sans-serif;
}

.cookie-btn-reject:hover {
  border-color: rgba(253,251,248,0.5);
  color: rgba(253,251,248,0.9);
}

.cookie-btn-customize {
  padding: 0.5rem 1.125rem;
  background: transparent;
  color: rgba(253,251,248,0.5);
  border: none;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.2s ease;
  font-family: 'Inter', sans-serif;
}

.cookie-btn-customize:hover {
  color: rgba(253,251,248,0.8);
}


#cookieModal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(26,22,18,0.75);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

#cookieModal.is-open {
  display: flex;
}

.cookie-modal-panel {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  max-width: 540px;
  width: 100%;
  box-shadow: var(--shadow-xl);
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal-panel h2 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.cookie-modal-panel p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.cookie-toggle-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
  gap: 1rem;
}

.cookie-toggle-row:last-of-type {
  border-bottom: none;
}

.cookie-toggle-label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.cookie-toggle-desc {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.cookie-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.cookie-toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--color-border);
  border-radius: 24px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.cookie-toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  left: 3px;
  top: 3px;
  transition: transform 0.2s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background: var(--color-accent);
}

.cookie-toggle input:checked + .cookie-toggle-slider::before {
  transform: translateX(20px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-modal-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}


@media (max-width: 1024px) {
  .hero-section {
    flex-direction: column;
    min-height: auto;
  }
  .hero-left {
    position: relative;
    width: 100%;
    height: 50vw;
    max-height: 400px;
  }
  .hero-right {
    padding: 4rem 2rem;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex !important;
  }
  #navLinks {
    display: none !important;
  }
  .hero-right {
    padding: 3rem 1.5rem;
  }
  .hero-left {
    height: 40vw;
    min-height: 240px;
  }
  .space-section {
    padding: 4rem 1.25rem;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .tab-panels {
    padding: 1.5rem;
  }
  .tab-panel > div {
    grid-template
-columns: 1fr !important;
  }
  .comparison-table {
    font-size: 0.8125rem;
  }
  .comparison-table thead th,
  .comparison-table tbody td {
    padding: 0.75rem 0.75rem;
  }
  .col-feature {
    width: 35%;
  }
}

@media (max-width: 640px) {
  .text-display {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  .text-heading {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
  .hero-left {
    height: 56vw;
  }
  .hero-right {
    padding: 2.5rem 1.25rem 3rem;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .cookie-banner-inner {
    padding: 1rem 1.25rem;
    gap: 1rem;
  }
  .cookie-banner-actions {
    width: 100%;
    justify-content: flex-start;
  }
  .action-primary,
  .action-ghost {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
  }
  .tabs-nav {
    gap: 0;
  }
  .tab-btn {
    padding: 0.875rem 1rem;
    font-size: 0.8125rem;
  }
  .guide-card-body {
    padding: 1rem;
  }
  #guidesGrid {
    grid-template-columns: 1fr !important;
  }
  .comparison-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .comparison-table {
    min-width: 560px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    min-height: auto;
  }
  .space-card {
    padding: 1rem;
  }
  .tabs-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
  }
}


@media (max-width: 900px) {
  #intro > div > div:first-child {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  #intro > div > div:last-child {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 640px) {
  #intro > div > div:last-child {
    grid-template-columns: 1fr !important;
  }
}


nav.site-nav {
  transition: background 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}


::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-inset);
}
::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-text-muted);
}


::selection {
  background: rgba(200,134,10,0.2);
  color: var(--color-text);
}


@media print {
  .site-nav,
  #cookieBanner,
  #cookieModal,
  .mobile-menu-panel,
  .mobile-menu-overlay {
    display: none !important;
  }
  body {
    background: #fff;
    color: #000;
  }
}