* {
  box-sizing: border-box;
}

:root {
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  --color-bg: #f7f5f1;
  --color-bg-soft: #efece4;
  --color-surface: #fffefb;
  --color-surface-tint: #f2efe7;
  --color-border: #e1ddd0;
  --color-text: #2b2925;
  --color-text-muted: #6c665b;
  --color-dark: #201e1a;
  --color-dark-soft: #2b2924;
  --color-accent: #1f8f66;
  --color-accent-dark: #146b4c;
  --color-accent-light: #e3f4ec;
  --color-accent-contrast: #ffffff;

  --shadow-sm: 0 1px 2px rgba(32,30,27,0.07), 0 1px 1px rgba(32,30,27,0.05);
  --shadow-md: 0 8px 20px -6px rgba(32,30,27,0.14), 0 3px 8px rgba(32,30,27,0.08);
  --shadow-lg: 0 24px 48px -14px rgba(32,30,27,0.24), 0 10px 20px -10px rgba(32,30,27,0.14);
  --shadow-xl: 0 36px 72px -22px rgba(32,30,27,0.32), 0 14px 28px -10px rgba(32,30,27,0.18);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-xl: 34px;
  --radius-pill: 999px;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.75rem;
  --space-xl: 4.5rem;
  --space-2xl: 6.5rem;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-text);
  line-height: 1.25;
  margin: 0 0 var(--space-sm);
  font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); font-weight: 600; }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 600; }

p { margin: 0 0 var(--space-sm); color: var(--color-text-muted); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-accent-dark);
  margin-bottom: var(--space-xs);
}

.lead {
  font-size: 1.1rem;
  max-width: 720px;
  color: var(--color-text-muted);
}


.content-inner { max-width: 1180px; margin: 0 auto; padding: 0 var(--space-md); }
.content-block { padding: var(--space-2xl) 0; }
.surface-base { background: var(--color-bg); }
.surface-alt { background: var(--color-bg-soft); }
.surface-accent { background: var(--color-accent-light); }
.surface-dark { background: var(--color-dark); color: #ece8e0; }
.surface-dark h2, .surface-dark h3 { color: #fdfcf9; }
.surface-dark p { color: #c9c4ba; }

.section-heading { max-width: 720px; margin-bottom: var(--space-lg); }
.section-heading p { margin-top: var(--space-xs); }


.primary-action {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--color-accent);
  color: #fff;
  padding: 0.95rem 1.9rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.98rem;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  min-height: 48px;
}
.primary-action:hover {
  background: var(--color-accent-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.secondary-action {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: transparent;
  color: var(--color-text);
  padding: 0.9rem 1.85rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--color-border);
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 48px;
}
.secondary-action:hover {
  border-color: var(--color-accent);
  color: var(--color-accent-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}


.page-shell {
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: left center;
  background: var(--color-bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.page-shell.shifted { transform: translateX(-260px) scale(0.95); }
main { flex: 1; }

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow 0.2s ease;
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.85rem var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-md);
}
.brand-mark { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.brand-logo { width: 40px; height: 40px; }
.brand-name { font-family: var(--font-heading); font-weight: 700; font-size: 1.15rem; color: var(--color-text); }

.nav-pills { display: flex; gap: 0.35rem; flex: 1; flex-wrap: wrap; }
.nav-pill {
  padding: 0.55rem 1.05rem;
  border-radius: var(--radius-pill);
  color: var(--color-text-muted);
  font-weight: 500;
  font-size: 0.92rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.nav-pill:hover { background: var(--color-surface-tint); color: var(--color-text); }
.nav-pill.active { background: var(--color-accent); color: #fff; box-shadow: var(--shadow-sm); }

.nav-cta { flex-shrink: 0; padding: 0.75rem 1.5rem; font-size: 0.9rem; }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: var(--color-surface-tint);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  flex-shrink: 0;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}


.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 300px;
  max-width: 85vw;
  background: var(--color-dark);
  color: #ece8e0;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 300;
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  padding: var(--space-md);
}
.mobile-drawer.open { transform: translateX(0); }
.drawer-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--space-lg); }
.drawer-header .brand-name { color: #fff; }
.drawer-close {
  background: rgba(255,255,255,0.08);
  border: none;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  transition: background 0.3s ease;
}
.drawer-close:hover { background: rgba(255,255,255,0.18); }
.drawer-links { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: auto; }
.drawer-links a {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  color: #d8d3c8;
  font-weight: 500;
  transition: background 0.3s ease, color 0.3s ease;
}
.drawer-links a:hover, .drawer-links a.active { background: rgba(255,255,255,0.08); color: #fff; }
.drawer-contact { display: flex; flex-direction: column; gap: 0.7rem; padding-top: var(--space-md); border-top: 1px solid rgba(255,255,255,0.12); font-size: 0.9rem; }
.drawer-contact a, .drawer-contact span { display: flex; align-items: center; gap: 0.5rem; color: #cfc9bd; }

.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 250;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  background: rgba(15,14,12,0.35);
}
.drawer-overlay.active { opacity: 1; pointer-events: auto; }


.hero-comparison {
  position: relative;
  display: flex;
  min-height: 620px;
}
.hero-half { flex: 1; position: relative; overflow: hidden; min-height: 320px; }
.hero-image { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.hero-before .hero-image { filter: grayscale(55%) brightness(0.75); }
.hero-after .hero-image { filter: saturate(1.05) brightness(1.02); }
.hero-tag {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  background: rgba(20,18,16,0.55);
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  z-index: 2;
}
.hero-tag-accent { background: var(--color-accent); left: auto; right: 1.5rem; }

.hero-content-float {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--color-surface);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  max-width: 640px;
  width: 90%;
  text-align: center;
  z-index: 5;
}
.hero-content-float p { color: var(--color-text-muted); }
.hero-actions { display: flex; gap: var(--space-sm); justify-content: center; flex-wrap: wrap; margin-top: var(--space-md); }


.intro-block { display: flex; align-items: center; gap: var(--space-xl); }
.intro-text { flex: 1.2; }
.intro-visual { flex: 1; }
.rounded-image { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; height: auto; object-fit: cover; }


.service-grid {
  container-type: inline-size;
  container-name: services;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
}
.service-card {
  container-type: inline-size;
  container-name: card;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: var(--space-md);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card-inner { display: flex; flex-direction: column; gap: var(--space-sm); text-align: left; }
.card-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: var(--color-accent-light);
  color: var(--color-accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
@container card (min-width: 320px) {
  .service-card-inner { flex-direction: row; align-items: flex-start; }
}
.card-copy h3 { margin-bottom: 0.4rem; }
.card-copy p { margin: 0; font-size: 0.95rem; }


.info-grid {
  container-type: inline-size;
  container-name: features;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-md);
}
.info-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.35s ease, transform 0.35s ease, border-color 0.35s ease;
}
.info-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--color-accent); }
.info-card .card-icon { margin-bottom: var(--space-sm); }
.info-card h3 { margin-bottom: 0.4rem; }
.info-card p { margin: 0; font-size: 0.95rem; }


.process-layout { display: flex; align-items: center; gap: var(--space-xl); }
.process-visual { flex: 1; position: relative; min-height: 340px; }
.process-image-main { width: 85%; }
.process-image-small {
  width: 55%;
  position: absolute;
  bottom: -2.5rem;
  right: 0;
  border: 6px solid var(--color-bg-soft);
}
.process-copy { flex: 1.1; }
.process-steps { list-style: none; margin: var(--space-md) 0 0; padding: 0; display: flex; flex-direction: column; gap: var(--space-md); }
.process-steps li { display: flex; gap: var(--space-sm); align-items: flex-start; }
.step-number {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--color-accent);
  flex-shrink: 0;
}
.process-steps h3 { margin-bottom: 0.25rem; }
.process-steps p { margin: 0; font-size: 0.95rem; }


.highlight-text {
  position: relative;
  background: var(--color-accent);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}
.highlight-text::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 11rem;
  position: absolute;
  top: -2.5rem;
  left: 1rem;
  opacity: 0.18;
  line-height: 1;
}
.highlight-text blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  font-weight: 600;
  line-height: 1.45;
  position: relative;
  z-index: 1;
  margin: 0;
}
.highlight-text cite {
  display: block;
  margin-top: var(--space-md);
  font-style: normal;
  font-weight: 500;
  opacity: 0.9;
  font-size: 0.98rem;
  position: relative;
  z-index: 1;
}


.visual-break { position: relative; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: var(--space-md); }
.gallery-grid figure { margin: 0; background: var(--color-surface); border-radius: var(--radius-md); box-shadow: var(--shadow-md); overflow: hidden; }
.gallery-grid img { width: 100%; height: 220px; object-fit: cover; }
.gallery-grid figcaption { padding: var(--space-sm); font-size: 0.9rem; color: var(--color-text-muted); }


.faq-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--space-md); }
.faq-item { background: var(--color-surface-tint); border-radius: var(--radius-md); padding: var(--space-md); }
.faq-item h3 { margin-bottom: 0.4rem; font-size: 1.05rem; }
.faq-item p { margin: 0; font-size: 0.95rem; }


.cta-block { text-align: center; }
.cta-inner { display: flex; flex-direction: column; align-items: center; gap: var(--space-sm); max-width: 600px; }


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


.compare-block { display: flex; align-items: center; gap: var(--space-xl); }
.compare-reverse { flex-direction: row-reverse; }
.compare-images { flex: 1.1; display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-sm); }
.compare-images figure { margin: 0; }
.compare-images img { border-radius: var(--radius-md); box-shadow: var(--shadow-lg); width: 100%; height: 240px; object-fit: cover; }
.compare-images figcaption { font-size: 0.85rem; color: var(--color-text-muted); margin-top: 0.5rem; }
.compare-copy { flex: 1; }


.contact-layout { display: flex; align-items: flex-start; gap: var(--space-xl); }
.contact-info { flex: 1; }
.contact-office-image { margin: var(--space-md) 0; }
.contact-details { display: flex; flex-direction: column; gap: var(--space-sm); margin: var(--space-md) 0; }
.contact-details > div { display: flex; align-items: flex-start; gap: 0.75rem; }
.contact-details i { color: var(--color-accent); margin-top: 0.25rem; }
.contact-details strong { display: block; font-size: 0.9rem; }
.contact-details span { font-size: 0.95rem; color: var(--color-text-muted); }
.map-frame { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); }

.contact-form-card {
  flex: 1;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-xl);
  min-width: 320px;
}


.step-indicator { display: flex; gap: 0.6rem; margin-bottom: var(--space-md); }
.step-dot {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--color-border);
  color: var(--color-text-muted);
  font-weight: 600;
  transition: all 0.3s ease;
}
.step-dot.active { border-color: var(--color-accent); background: var(--color-accent); color: #fff; }
.step-dot.complete { border-color: var(--color-accent); color: var(--color-accent); }

.wizard-steps-wrap { overflow: hidden; }
.wizard-track { display: flex; width: 300%; transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
.wizard-step { width: 33.3333%; display: flex; flex-direction: column; gap: 0.5rem; padding-right: 4px; }
.wizard-step label { font-weight: 600; font-size: 0.92rem; margin-top: var(--space-xs); }
.wizard-step label span { color: var(--color-accent); }
.wizard-step input[type="text"],
.wizard-step input[type="email"],
.wizard-step input[type="tel"],
.wizard-step select,
.wizard-step textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--color-border);
  font-family: var(--font-body);
  font-size: 0.98rem;
  background: var(--color-surface-tint);
  color: var(--color-text);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  min-height: 48px;
}
.wizard-step textarea { min-height: 120px; resize: vertical; }
.wizard-step input:focus, .wizard-step select:focus, .wizard-step textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px var(--color-accent-light);
}
.checkbox-row { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.88rem; color: var(--color-text-muted); font-weight: 400; }
.checkbox-row input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--color-accent); flex-shrink: 0; }
.checkbox-row a { color: var(--color-accent-dark); text-decoration: underline; }
.wizard-nav-buttons { display: flex; justify-content: space-between; align-items: center; margin-top: var(--space-sm); gap: var(--space-sm); }


.legal-block { padding: var(--space-xl) 0 var(--space-2xl); }
.legal-inner { max-width: 780px; }
.legal-inner h2 { margin-top: var(--space-lg); }
.legal-inner p { font-size: 0.98rem; }
.cookie-table { display: flex; flex-direction: column; gap: 0.5rem; margin: var(--space-sm) 0 var(--space-md); }
.cookie-row { display: grid; grid-template-columns: 1fr 2fr 1fr; gap: var(--space-sm); padding: 0.85rem 1rem; background: var(--color-surface-tint); border-radius: var(--radius-sm); font-size: 0.9rem; }
.cookie-row-head { background: var(--color-accent-light); font-weight: 700; color: var(--color-accent-dark); }


.thanks-block { min-height: 60vh; display: flex; align-items: center; }
.thanks-inner { text-align: center; display: flex; flex-direction: column; align-items: center; gap: var(--space-md); }
.thanks-dot {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--color-accent);
  transform: scale(0);
  animation: dot-pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  box-shadow: var(--shadow-lg);
}
@keyframes dot-pop { to { transform: scale(1); } }
.thanks-heading { opacity: 0; transform: translateY(14px); animation: fade-up 0.7s ease forwards; animation-delay: 0.55s; }
.thanks-text { opacity: 0; transform: translateY(14px); animation: fade-up 0.7s ease forwards; animation-delay: 0.85s; max-width: 480px; }
.thanks-link {
  opacity: 0;
  animation: fade-up 0.7s ease forwards;
  animation-delay: 1.3s;
  color: var(--color-accent-dark);
  font-weight: 600;
  border-bottom: 2px solid var(--color-accent);
  padding-bottom: 2px;
}
@keyframes fade-up { to { opacity: 1; transform: none; } }


.site-footer { background: var(--color-dark); color: #c9c4b9; padding-top: var(--space-xl); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--space-lg); padding-bottom: var(--space-lg); }
.footer-brand .brand-name { color: #fff; }
.footer-brand p { margin-top: var(--space-sm); font-size: 0.92rem; max-width: 280px; }
.footer-column h4 { color: #fdfcf9; font-family: var(--font-heading); font-size: 1.05rem; margin-bottom: var(--space-sm); }
.footer-column { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-column a, .footer-column span { color: #c9c4b9; font-size: 0.92rem; transition: color 0.3s ease; display: flex; align-items: center; gap: 0.45rem; }
.footer-column a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: var(--space-sm) var(--space-md);
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.85rem;
}
.footer-legal { display: flex; gap: var(--space-sm); }
.footer-legal a:hover { color: #fff; }


.scroll-reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.scroll-reveal.visible { opacity: 1; transform: none; }


.cookie-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 500;
  background: var(--color-dark);
  color: #ece8e0;
  box-shadow: var(--shadow-xl);
  padding: 1rem var(--space-md);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner-inner { max-width: 1180px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: var(--space-md); flex-wrap: wrap; }
.cookie-banner-text { font-size: 0.92rem; flex: 1; min-width: 240px; color: #d3cfc4; }
.cookie-banner-text a { color: #fff; text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.cookie-btn {
  padding: 0.65rem 1.2rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  border: 1.5px solid rgba(255,255,255,0.25);
  background: transparent;
  color: #fff;
  transition: all 0.3s ease;
  min-height: 44px;
}
.cookie-btn.accept { background: var(--color-accent); border-color: var(--color-accent); }
.cookie-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20,18,16,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 600;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: var(--space-md);
}
.cookie-modal-overlay.active { opacity: 1; pointer-events: auto; }
.cookie-modal {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  max-width: 560px;
  width: 100%;
  padding: var(--space-lg);
  box-shadow: var(--shadow-xl);
  max-height: 85vh;
  overflow-y: auto;
}
.cookie-modal h2 { margin-bottom: var(--space-xs); }
.cookie-category { display: flex; justify-content: space-between; align-items: center; gap: var(--space-sm); padding: 0.9rem 0; border-bottom: 1px solid var(--color-border); }
.cookie-category:last-of-type { border-bottom: none; }
.cookie-category-info h3 { font-size: 1rem; margin-bottom: 0.2rem; }
.cookie-category-info p { font-size: 0.87rem; margin: 0; }
.switch { position: relative; width: 46px; height: 26px; flex-shrink: 0; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch-track {
  position: absolute; inset: 0; background: var(--color-border);
  border-radius: var(--radius-pill); cursor: pointer; transition: background 0.3s ease;
}
.switch-track::before {
  content: ''; position: absolute; top: 3px; left: 3px;
  width: 20px; height: 20px; background: #fff; border-radius: 50%;
  transition: transform 0.3s ease; box-shadow: var(--shadow-sm);
}
.switch input:checked + .switch-track { background: var(--color-accent); }
.switch input:checked + .switch-track::before { transform: translateX(20px); }
.switch input:disabled + .switch-track { opacity: 0.6; cursor: not-allowed; }
.cookie-modal-actions { display: flex; justify-content: flex-end; gap: 0.6rem; margin-top: var(--space-md); }


@media (max-width: 900px) {
  .nav-pills, .nav-cta { display: none; }
  .menu-toggle { display: flex; }
  .intro-block, .process-layout, .compare-block, .contact-layout { flex-direction: column; }
  .compare-reverse { flex-direction: column; }
  .hero-comparison { flex-direction: column; min-height: auto; }
  .hero-half { min-height: 260px; }
  .hero-content-float { position: static; transform: none; width: 100%; margin: -3rem auto 0; max-width: 92%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .compare-images { grid-template-columns: 1fr; }
  .cookie-row { grid-template-columns: 1fr; }
  .content-block { padding: var(--space-xl) 0; }
  .process-image-small { position: static; width: 100%; margin-top: var(--space-sm); }
}