/* ===== Design Tokens ===== */
:root {
  --color-sage: #8EA376;
  --color-sage-dark: #6a7d5a;
  --color-sage-light: #edf2ea;
  --color-cream: #f5f0e8;
  --color-charcoal: #2d2d2d;
  --color-white: #ffffff;
  --color-gray-100: #f7f7f7;
  --color-gray-200: #e8e8e8;
  --color-gray-400: #999999;
  --color-gray-600: #666666;
  --color-error: #d64545;
  --color-success: #2e7d32;

  --font-body: 'Heebo', sans-serif;
  --font-display: 'Playfair Display', serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);

  --container: 1200px;
  --header-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-charcoal);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--color-sage-dark);
  text-decoration: none;
  transition: color 0.2s;
}

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

ul {
  list-style: none;
}

/* ===== Utilities ===== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100%;
  right: 16px;
  z-index: 9999;
  padding: 12px 24px;
  background: var(--color-charcoal);
  color: var(--color-white);
  border-radius: var(--radius-sm);
  font-weight: 500;
}

.skip-link:focus {
  top: 16px;
  color: var(--color-white);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

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

.btn-primary:hover {
  background: var(--color-sage-dark);
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--color-sage-dark);
  border: 2px solid var(--color-sage);
}

.btn-secondary:hover {
  background: var(--color-sage-light);
  color: var(--color-sage-dark);
}

.btn-nav {
  padding: 10px 24px;
  background: var(--color-sage);
  color: var(--color-white);
  border-radius: var(--radius-sm);
}

.btn-nav:hover {
  background: var(--color-sage-dark);
  color: var(--color-white);
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.site-header.scrolled {
  border-bottom-color: var(--color-gray-200);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo img {
  height: 40px;
  width: auto;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-list a {
  color: var(--color-charcoal);
  font-weight: 400;
  font-size: 0.95rem;
  transition: color 0.2s;
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-charcoal);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== Hero ===== */
.hero {
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 80px;
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-white) 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.hero h1 {
  font-family: var(--font-body);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--color-charcoal);
}

.hero h1 em {
  font-style: normal;
  color: var(--color-sage);
}

.hero-sub {
  margin-top: 20px;
  font-size: 1.15rem;
  color: var(--color-gray-600);
  max-width: 520px;
}

.hero-ctas {
  margin-top: 32px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-badges {
  margin-top: 32px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--color-gray-600);
}

.hero-image img {
  width: 100%;
  max-width: 550px;
  margin: 0 auto;
}

/* ===== Section Shared ===== */
section {
  padding: 100px 0;
}

section h2 {
  font-family: var(--font-body);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
}

.section-sub {
  text-align: center;
  color: var(--color-gray-600);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 48px;
}

/* ===== Answer Blocks ===== */
.answers {
  background: var(--color-white);
}

.answers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.answer-card {
  padding: 24px;
  background: var(--color-gray-100);
  border-right: 4px solid var(--color-sage);
  border-radius: var(--radius-sm);
}

.answer-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.answer-card p {
  font-size: 0.92rem;
  color: var(--color-gray-600);
  line-height: 1.75;
}

/* ===== Why / Tables ===== */
.why {
  background: var(--color-cream);
}

.comparison-table,
.spec-table {
  overflow-x: auto;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  background: var(--color-white);
}

.comparison-table table,
.spec-table table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 0.94rem;
}

.comparison-table th,
.comparison-table td,
.spec-table th,
.spec-table td {
  padding: 16px 18px;
  text-align: right;
  border-bottom: 1px solid var(--color-gray-200);
  vertical-align: top;
}

.comparison-table thead th,
.spec-table thead th {
  background: var(--color-gray-100);
  color: var(--color-gray-600);
  font-weight: 700;
}

.comparison-table thead th.highlight-col,
.comparison-table td.highlight-col {
  background: var(--color-sage-light);
  color: var(--color-sage-dark);
  font-weight: 700;
}

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

/* ===== Use Cases ===== */
.use-cases {
  background: var(--color-white);
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.use-case-card {
  background: var(--color-gray-100);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.use-case-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.06);
}

.use-case-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--color-sage);
  opacity: 0;
  transition: opacity 0.3s;
}

.use-case-card:hover::before {
  opacity: 1;
}

.use-case-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center center;
  display: block;
  border-radius: 4px 4px 0 0;
}

.use-case-card-cosmetic img,
.use-case-card-food img {
  object-position: center 72%;
}

.use-case-card-body {
  padding: 32px 32px 36px;
}

.use-case-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--color-sage);
  margin-bottom: 16px;
}

.use-case-card h3 {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 1.35;
  font-family: var(--font-display, inherit);
}

.use-case-card p {
  font-size: 0.92rem;
  color: var(--color-gray-600);
  line-height: 1.75;
}

/* ===== Why / Comparison table — hidden for later stage =====
.why { background: var(--color-white); }
.comparison-table { overflow-x: auto; margin-top: 32px; border-radius: var(--radius-md); box-shadow: var(--shadow-md); }
.comparison-table table { width: 100%; min-width: 600px; border-collapse: collapse; font-size: 0.95rem; }
.comparison-table th, .comparison-table td { padding: 16px 20px; text-align: right; border-bottom: 1px solid var(--color-gray-200); }
.comparison-table thead th { background: var(--color-gray-100); font-weight: 600; font-size: 0.9rem; color: var(--color-gray-600); }
.comparison-table thead th.highlight-col { background: var(--color-sage); color: var(--color-white); }
.comparison-table td.highlight-col { background: var(--color-sage-light); font-weight: 500; color: var(--color-sage-dark); }
.comparison-table tbody tr:last-child td { border-bottom: none; }
===== end comparison table ===== */

/* ===== Products ===== */
.products {
  background: var(--color-gray-100);
}

.product-category {
  margin-bottom: 60px;
}

.product-category h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.category-desc {
  color: var(--color-gray-600);
  margin-bottom: 24px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.product-images {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--color-cream);
}

.product-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  padding: 20px;
}

.product-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.product-dims {
  font-size: 0.9rem;
  color: var(--color-sage-dark);
  font-weight: 500;
  margin-bottom: 4px;
}

.product-use {
  font-size: 0.85rem;
  color: var(--color-gray-600);
}

.products-note {
  margin-top: 40px;
  padding: 24px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  text-align: center;
  border: 1px dashed var(--color-sage);
}

.products-note p {
  margin-bottom: 8px;
}

.products-note p:last-child {
  margin-bottom: 0;
  color: var(--color-gray-600);
  font-size: 0.9rem;
}

.spec-table {
  margin-top: 40px;
}

.spec-table h3 {
  padding: 20px 20px 0;
  font-size: 1.2rem;
  font-weight: 700;
}

/* ===== How It Works ===== */
.how {
  background: var(--color-white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.step {
  text-align: center;
  padding: 32px 20px;
  background: var(--color-gray-100);
  border-radius: var(--radius-md);
  position: relative;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--color-sage);
  color: var(--color-white);
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 16px;
}

.step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step p {
  font-size: 0.9rem;
  color: var(--color-gray-600);
  line-height: 1.6;
}

/* ===== FAQ ===== */
.faq {
  background: var(--color-cream);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-list details {
  background: var(--color-white);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-list summary {
  padding: 20px 24px;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--color-sage);
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-right: 16px;
}

.faq-list details[open] summary::after {
  content: '−';
}

.faq-list details p {
  padding: 0 24px 20px;
  color: var(--color-gray-600);
  line-height: 1.7;
}

/* ===== Contact ===== */
.contact {
  background: var(--color-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form {
  background: var(--color-gray-100);
  padding: 40px;
  border-radius: var(--radius-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--color-charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--color-white);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-sage);
  box-shadow: 0 0 0 3px var(--color-sage-light);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.file-label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1px dashed var(--color-gray-400);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.2s;
}

.file-label:hover {
  border-color: var(--color-sage);
}

.file-label input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}

.file-text {
  font-size: 0.9rem;
  color: var(--color-gray-600);
}

.file-name {
  font-size: 0.85rem;
  color: var(--color-sage-dark);
  margin-top: 8px;
  display: block;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  font-size: 1.05rem;
}

.turnstile-wrap {
  display: flex;
  justify-content: center;
  margin: 4px 0 20px;
  min-height: 65px;
}

.form-note {
  text-align: center;
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--color-gray-600);
}

.contact-info {
  padding-top: 20px;
}

.contact-info h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.contact-details li {
  margin-bottom: 20px;
}

.contact-details strong {
  display: block;
  font-size: 0.85rem;
  color: var(--color-gray-600);
  font-weight: 400;
  margin-bottom: 2px;
}

.contact-details a,
.contact-details span {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-charcoal);
}

.contact-cta {
  margin-top: 40px;
  padding: 24px;
  background: var(--color-sage-light);
  border-radius: var(--radius-md);
  text-align: center;
}

.contact-cta p {
  margin-bottom: 12px;
  font-weight: 500;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--color-charcoal);
  color: var(--color-white);
  padding: 60px 0 40px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer-brand p {
  margin-top: 16px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

.footer-brand img {
  height: 36px;
  width: auto;
  filter: brightness(10);
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}

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

.footer-legal ul {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
}

.footer-legal a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

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

.copyright {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* ===== Modal ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: var(--color-gray-100);
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.modal-close:hover {
  background: var(--color-gray-200);
}

.modal h2 {
  text-align: right;
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.modal > p {
  color: var(--color-gray-600);
  margin-bottom: 24px;
}

.file-upload-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  border: 2px dashed var(--color-gray-400);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  text-align: center;
}

.file-upload-area:hover,
.file-upload-area.drag-over {
  border-color: var(--color-sage);
  background: var(--color-sage-light);
}

.file-upload-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.file-upload-text {
  font-weight: 500;
  color: var(--color-charcoal);
}

.file-upload-hint {
  font-size: 0.85rem;
  color: var(--color-gray-600);
  margin-top: 4px;
}

.vis-preview {
  width: 100%;
  max-height: 200px;
  object-fit: contain;
  margin-top: 16px;
  border-radius: var(--radius-sm);
}

.vis-result {
  margin-top: 24px;
  text-align: center;
}

.vis-result img {
  max-width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.vis-loading {
  text-align: center;
  padding: 40px 0;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--color-gray-200);
  border-top-color: var(--color-sage);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 16px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.vis-error {
  text-align: center;
  padding: 20px;
  color: var(--color-error);
}

.visualiser-form .btn {
  width: 100%;
  margin-top: 16px;
}

.visualiser-form .btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ===== Legal Pages ===== */
.legal-page {
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 80px;
}

.legal-page h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 8px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 0.9rem;
  color: var(--color-gray-600);
}

.breadcrumb a {
  color: var(--color-sage-dark);
}

.legal-date {
  color: var(--color-gray-600);
  font-size: 0.9rem;
  margin-bottom: 40px;
}

.legal-page section {
  padding: 0;
  margin-bottom: 32px;
}

.legal-page section h2 {
  text-align: right;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.legal-page section p,
.legal-page section li {
  color: var(--color-gray-600);
  line-height: 1.8;
}

.legal-page section ul {
  padding-right: 20px;
  list-style: disc;
  margin-top: 8px;
}

.legal-page section li {
  margin-bottom: 8px;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    order: 1;
  }

  .hero-image {
    order: 0;
    max-width: 400px;
    margin: 0 auto;
  }

  .hero-sub {
    margin-inline: auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-badges {
    justify-content: center;
  }

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

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

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

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    bottom: 0;
    background: var(--color-white);
    padding: 32px 24px;
    transform: translateX(100%);
    transition: transform 0.3s;
    z-index: 999;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-list li {
    border-bottom: 1px solid var(--color-gray-200);
  }

  .nav-list a {
    display: block;
    padding: 16px 0;
    font-size: 1.1rem;
  }

  .nav-list .btn-nav {
    margin-top: 16px;
    text-align: center;
    border-bottom: none;
  }

  .hero {
    padding-top: calc(var(--header-height) + 32px);
    padding-bottom: 48px;
  }

  section {
    padding: 64px 0;
  }

  .use-cases-grid {
    grid-template-columns: 1fr;
  }

  .answers-grid {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .contact-form {
    padding: 24px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-nav ul {
    align-items: center;
  }

  .footer-legal ul {
    justify-content: center;
  }

  .modal {
    padding: 24px;
    margin: 16px;
  }

  .comparison-table {
    margin-inline: -24px;
    border-radius: 0;
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
  }
}
