/* ===========================
   KALENMORIX — STYLE.CSS
   Architectural Grid Theme
   =========================== */


:root {
  --primary: #1a2744;
  --secondary: #2e5d4b;
  --accent: #c8a45a;

  --primary-light: color-mix(in oklch, var(--primary), white 70%);
  --primary-mid: color-mix(in oklch, var(--primary), white 40%);
  --primary-dark: color-mix(in oklch, var(--primary), black 20%);
  --primary-xlight: color-mix(in oklch, var(--primary), white 88%);
  --primary-surface: color-mix(in oklch, var(--primary), white 94%);

  --secondary-light: color-mix(in oklch, var(--secondary), white 70%);
  --secondary-mid: color-mix(in oklch, var(--secondary), white 45%);
  --secondary-xlight: color-mix(in oklch, var(--secondary), white 88%);
  --secondary-surface: color-mix(in oklch, var(--secondary), white 94%);

  --accent-light: color-mix(in oklch, var(--accent), white 60%);
  --accent-dark: color-mix(in oklch, var(--accent), black 20%);
  --accent-surface: color-mix(in oklch, var(--accent), white 88%);

  --text-dark: color-mix(in oklch, var(--primary), black 10%);
  --text-body: color-mix(in oklch, var(--primary), white 20%);
  --text-muted: color-mix(in oklch, var(--primary), white 50%);
  --text-light: color-mix(in oklch, var(--primary), white 75%);

  --bg-canvas: color-mix(in oklch, var(--primary), white 96%);
  --bg-alt: color-mix(in oklch, var(--primary), white 91%);
  --bg-dark: var(--primary-dark);

  --border: color-mix(in oklch, var(--primary), white 80%);
  --border-strong: color-mix(in oklch, var(--primary), white 65%);

  --shadow-sm: 0 1px 3px color-mix(in oklch, var(--primary), transparent 85%),
               0 1px 2px color-mix(in oklch, var(--primary), transparent 92%);
  --shadow-md: 0 4px 6px color-mix(in oklch, var(--primary), transparent 88%),
               0 2px 4px color-mix(in oklch, var(--primary), transparent 93%);
  --shadow-lg: 0 10px 25px color-mix(in oklch, var(--primary), transparent 82%),
               0 4px 10px color-mix(in oklch, var(--primary), transparent 90%);
  --shadow-xl: 0 20px 40px color-mix(in oklch, var(--primary), transparent 78%),
               0 8px 16px color-mix(in oklch, var(--primary), transparent 88%);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --nav-height: 72px;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;
}


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

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body.canvas {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: var(--bg-canvas);
  color: var(--text-body);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

main { flex: 1; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s ease, opacity 0.2s ease; }
ul { list-style: none; }
address { font-style: normal; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }


.stage-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(color-mix(in oklch, var(--accent), transparent 88%) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in oklch, var(--accent), transparent 88%) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}


.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}


h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-dark);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  background: var(--accent-surface);
  border: 1px solid var(--accent-light);
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-xl);
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: var(--space-sm);
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
}


.section-pad { padding: var(--space-3xl) 0; }
.section-pad-sm { padding: var(--space-2xl) 0; }
.bg-alt { background-color: var(--bg-alt); }


.nav-frame {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav-frame.nav-scrolled {
  background: color-mix(in oklch, var(--primary-dark), transparent 5%);
  box-shadow: 0 1px 0 color-mix(in oklch, var(--accent), transparent 80%),
              var(--shadow-md);
  backdrop-filter: blur(12px);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.nav-logo { width: 36px; height: 36px; flex-shrink: 0; }

.nav-brand-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

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

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: color-mix(in oklch, white, transparent 20%);
  transition: color 0.2s ease;
  position: relative;
  padding-bottom: 2px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.25s ease;
  transform-origin: left;
}

.nav-link:hover, .nav-link.active { color: white; }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--accent);
  color: var(--primary-dark) !important;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta::after { display: none; }
.nav-cta:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  z-index: 101;
}

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


.drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: linear-gradient(135deg, var(--primary-dark) 0%, color-mix(in oklch, var(--primary), var(--secondary) 40%) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.drawer.drawer-open {
  opacity: 1;
  pointer-events: all;
}

.drawer-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: white;
  font-size: 1.75rem;
  padding: 0.5rem;
  line-height: 1;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.drawer-close:hover { transform: rotate(90deg); opacity: 0.7; }

.drawer-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  text-align: center;
}

.drawer-link {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.75rem, 6vw, 2.5rem);
  font-weight: 700;
  color: white;
  letter-spacing: -0.02em;
  transition: color 0.2s ease, transform 0.2s ease;
  display: block;
}

.drawer-link:hover {
  color: var(--accent);
  transform: translateX(8px);
}


.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: var(--primary-dark);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px color-mix(in oklch, var(--accent), transparent 55%);
}

.btn-primary.btn-lg { font-size: 1rem; padding: 0.9rem 2.25rem; }
.btn-primary.btn-full { width: 100%; justify-content: center; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: white;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  border: 1.5px solid color-mix(in oklch, white, transparent 50%);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
  text-decoration: none;
}

.btn-secondary:hover {
  border-color: white;
  background: color-mix(in oklch, white, transparent 90%);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--primary);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border-strong);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, color 0.2s ease;
  text-decoration: none;
}

.btn-outline:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-full);
  border: 1px solid color-mix(in oklch, white, transparent 65%);
  transition: border-color 0.2s ease, background 0.2s ease;
  text-decoration: none;
}

.btn-ghost:hover {
  border-color: white;
  background: color-mix(in oklch, white, transparent 88%);
}


.stage {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-dark) 0%, color-mix(in oklch, var(--primary), var(--secondary) 35%) 60%, var(--secondary) 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.stage-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  width: 100%;
}

.stage-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid color-mix(in oklch, var(--accent), transparent 55%);
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
}

.stage-heading {
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  font-weight: 800;
  color: white;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-md);
}

.stage-accent { color: var(--accent); }

.stage-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: color-mix(in oklch, white, transparent 25%);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: var(--space-lg);
}

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

.stage-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.stage-circle-frame {
  width: clamp(260px, 35vw, 420px);
  height: clamp(260px, 35vw, 420px);
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid color-mix(in oklch, var(--accent), transparent 50%);
  box-shadow: 0 0 0 12px color-mix(in oklch, var(--accent), transparent 88%),
              0 0 0 24px color-mix(in oklch, var(--accent), transparent 94%),
              var(--shadow-xl);
  position: relative;
}

.stage-circle-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.stage-circle-frame:hover .stage-circle-img { transform: scale(1.04); }

.stage-badge {
  position: absolute;
  bottom: -12px;
  left: -20px;
  background: var(--accent);
  color: var(--primary-dark);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.badge-text {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
}

.badge-sub {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  opacity: 0.8;
  margin-top: 2px;
}


.page-hero {
  position: relative;
  background: linear-gradient(135deg, var(--primary-dark) 0%, color-mix(in oklch, var(--primary), var(--secondary) 35%) 100%);
  padding: calc(var(--nav-height) + var(--space-3xl)) 0 var(--space-2xl);
  overflow: hidden;
}

.page-hero-sm { padding: calc(var(--nav-height) + var(--space-xl)) 0 var(--space-xl); }

.page-hero-inner { position: relative; z-index: 1; }

.page-hero-title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: white;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-sm);
}

.page-hero-sub {
  font-size: 1.05rem;
  color: color-mix(in oklch, white, transparent 30%);
  max-width: 560px;
  line-height: 1.7;
}


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

.shelf-4 { grid-template-columns: repeat(2, 1fr); }
.shelf-3 { grid-template-columns: repeat(1, 1fr); }
.shelf-2-wide { grid-template-columns: 1fr; }

.shelf-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.shelf-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-strong);
}

.shelf-card.spotlight {
  border-color: color-mix(in oklch, var(--accent), transparent 60%);
  background: linear-gradient(135deg, white 80%, var(--accent-surface) 100%);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-xlight);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: var(--space-md);
  transition: background 0.2s ease, color 0.2s ease;
}

.shelf-card:hover .card-icon {
  background: var(--primary);
  color: white;
}

.card-step {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-xlight);
  margin-bottom: var(--space-sm);
  line-height: 1;
}

.card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.card-body {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--secondary);
  margin-top: var(--space-sm);
  transition: gap 0.2s ease, color 0.2s ease;
}

.card-link:hover { gap: 0.7rem; color: var(--primary); }

.shelf-card-wide { padding: 0; overflow: hidden; }

.card-img-wrap { height: 200px; overflow: hidden; }
.card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.shelf-card-wide:hover .card-img { transform: scale(1.04); }

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


.spotlight-strip { background: var(--bg-alt); }

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

.strip-reverse { direction: ltr; }

.strip-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/3;
}

.strip-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.strip-img-wrap:hover .strip-img { transform: scale(1.03); }

.strip-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.strip-title-sm {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.strip-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}


.checklist-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xs);
}

.checklist-col { display: flex; flex-direction: column; gap: 0.75rem; }

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.9rem var(--space-md);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.check-item:hover {
  border-color: color-mix(in oklch, var(--secondary), transparent 50%);
  box-shadow: var(--shadow-sm);
}

.check-item i {
  color: var(--secondary);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.check-item span {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.5;
}


.carousel-section { background: var(--bg-alt); }

.slide-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow-md);
}

.slide-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.slide-caption {
  padding: 0.85rem var(--space-md);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  background: white;
}

.splide__arrow {
  background: var(--primary) !important;
  opacity: 1 !important;
}

.splide__arrow svg { fill: white !important; }
.splide__arrow:hover { background: var(--accent) !important; }

.splide__pagination__page.is-active { background: var(--primary) !important; }
.splide__pagination__page { background: var(--border-strong) !important; }


.faq-list { display: flex; flex-direction: column; gap: 0.75rem; max-width: 800px; margin: 0 auto; }

.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease;
}

.faq-item:hover { box-shadow: var(--shadow-md); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: color 0.2s ease;
}

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

.faq-icon {
  flex-shrink: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: transform 0.3s ease, color 0.2s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer.faq-answer-open {
  max-height: 400px;
  padding-bottom: var(--space-md);
}

.faq-answer p {
  padding: 0 var(--space-lg);
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
}


.spotlight-cta {
  background: linear-gradient(135deg, var(--primary-dark) 0%, color-mix(in oklch, var(--primary), var(--secondary) 40%) 100%);
  position: relative;
  overflow: hidden;
}

.spotlight-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(color-mix(in oklch, var(--accent), transparent 90%) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in oklch, var(--accent), transparent 90%) 1px, transparent 1px);
  background-size: 48px 48px;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  align-items: flex-start;
}

.cta-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
}

.cta-text {
  font-size: 1rem;
  color: color-mix(in oklch, white, transparent 30%);
  line-height: 1.75;
  max-width: 520px;
}

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


.service-block {
  background: white;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.service-block-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg) var(--space-xl);
  border-bottom: 1px solid var(--border);
  background: var(--primary-surface);
}

.service-icon-lg {
  width: 56px;
  height: 56px;
  background: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.service-title {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.service-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  padding: var(--space-xl);
}

.service-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: var(--space-sm);
}

.service-text p:last-child { margin-bottom: 0; }

.service-sidebar { display: flex; flex-direction: column; gap: var(--space-sm); }

.service-detail-card {
  background: var(--primary-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
}

.service-detail-card h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.service-detail-card ul { display: flex; flex-direction: column; gap: 0.4rem; }

.service-detail-card li {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding-left: 1rem;
  position: relative;
  line-height: 1.5;
}

.service-detail-card li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--accent-dark);
  font-weight: 700;
}


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

.form-card {
  background: white;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  padding: var(--space-xl);
}

.form-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: var(--space-lg);
  letter-spacing: -0.02em;
}

.form-progress {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: var(--space-xl);
}

.progress-step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--border);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  transition: background 0.3s ease, color 0.3s ease;
}

.progress-step.active .step-num {
  background: var(--primary);
  color: white;
}

.step-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.progress-step.active .step-label { color: var(--text-dark); }

.progress-line {
  flex: 1;
  height: 1px;
  background: var(--border);
  margin: 0 var(--space-sm);
}

.form-step { display: flex; flex-direction: column; gap: var(--space-md); }
.form-step-hidden { display: none; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}

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

.form-input:focus, .form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px color-mix(in oklch, var(--primary), transparent 88%);
}

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

.form-check {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-checkbox {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--primary);
  cursor: pointer;
}

.form-check-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  cursor: pointer;
}

.form-check-label a { color: var(--primary); text-decoration: underline; }

.form-actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: space-between;
  flex-wrap: wrap;
}

.contact-info-card {
  background: white;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  padding: var(--space-lg);
  margin-bottom: var(--space-md);
}

.contact-info-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--border);
}

.contact-info-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  margin-bottom: var(--space-md);
}

.contact-info-item:last-child { margin-bottom: 0; }

.contact-info-item i {
  color: var(--primary);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

.contact-info-item strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}

.contact-info-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-info-item a { color: var(--primary); }
.contact-info-item a:hover { text-decoration: underline; }

.accessibility-note {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.accessibility-icon {
  font-size: 1.5rem;
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 2px;
}

.accessibility-note p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.accessibility-note a { color: var(--primary); }

.map-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
}


.thanks-stage {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--nav-height) - 300px);
  padding: var(--space-3xl) var(--space-md);
  text-align: center;
}

.thanks-dot {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--secondary);
  animation: dotPulse 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  opacity: 0;
  transform: scale(0);
}

@keyframes dotPulse {
  0% { opacity: 0; transform: scale(0); }
  100% { opacity: 1; transform: scale(1); }
}

.thanks-heading {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-top: var(--space-lg);
  letter-spacing: -0.02em;
  opacity: 0;
  animation: fadeInUp 0.6s ease 0.9s forwards;
}

.thanks-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: var(--space-lg);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
  opacity: 0;
  animation: fadeInUp 0.6s ease 1.5s forwards;
  transition: gap 0.2s ease, color 0.2s ease;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.thanks-link:hover { gap: 0.8rem; color: var(--secondary); }

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


.legal-container {
  max-width: 840px;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.legal-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
}

.legal-card h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--space-md);
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--primary-xlight);
}

.legal-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: var(--space-md) 0 0.5rem;
}

.legal-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 0.75rem;
}

.legal-card p:last-child { margin-bottom: 0; }

.legal-card a { color: var(--primary); text-decoration: underline; }
.legal-card a:hover { color: var(--secondary); }

.legal-card-intro {
  background: var(--primary-surface);
  border-color: var(--primary-xlight);
}

.legal-card-intro p {
  font-size: 0.95rem;
  font-style: italic;
}

.legal-card-highlight {
  background: linear-gradient(135deg, var(--primary-surface) 0%, var(--secondary-surface) 100%);
  border-color: var(--secondary-xlight);
  text-align: center;
}

.cookie-intro-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: var(--space-md);
}

.cookie-category-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: var(--text-dark) !important;
  margin-top: var(--space-md) !important;
  margin-bottom: 0.5rem !important;
  border-bottom: none !important;
  padding-bottom: 0 !important;
}

.cookie-category-title i { color: var(--primary); font-size: 0.9rem; }

.cookie-table-wrap { overflow-x: auto; margin-top: 0.75rem; }

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.cookie-table th {
  background: var(--primary-surface);
  color: var(--text-dark);
  font-weight: 600;
  padding: 0.6rem 0.9rem;
  text-align: left;
  border: 1px solid var(--border);
}

.cookie-table td {
  padding: 0.6rem 0.9rem;
  border: 1px solid var(--border);
  color: var(--text-muted);
  vertical-align: top;
}

.cookie-browser-list {
  list-style: disc;
  padding-left: 1.5rem;
  margin: 0.75rem 0;
}

.cookie-browser-list li {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.cookie-browser-list code {
  font-size: 0.8rem;
  background: var(--bg-alt);
  padding: 1px 5px;
  border-radius: 3px;
}


.footer-frame {
  background: var(--primary-dark);
  color: color-mix(in oklch, white, transparent 30%);
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-logo { width: 40px; height: 40px; margin-bottom: var(--space-sm); }

.footer-tagline {
  font-size: 0.875rem;
  color: color-mix(in oklch, white, transparent 45%);
  line-height: 1.6;
  margin-bottom: var(--space-md);
  max-width: 240px;
}

.footer-address {
  font-size: 0.85rem;
  color: color-mix(in oklch, white, transparent 40%);
  line-height: 1.8;
}

.footer-address a {
  color: color-mix(in oklch, white, transparent 35%);
  transition: color 0.2s ease;
}

.footer-address a:hover { color: var(--accent); }

.footer-col-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: color-mix(in oklch, white, transparent 20%);
  margin-bottom: var(--space-md);
}

.footer-nav-list { display: flex; flex-direction: column; gap: 0.6rem; }

.footer-nav-list a {
  font-size: 0.875rem;
  color: color-mix(in oklch, white, transparent 45%);
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-nav-list a:hover { color: var(--accent); padding-left: 4px; }

.footer-legal-info {
  margin-top: var(--space-md);
  padding-top: var(--space-sm);
  border-top: 1px solid color-mix(in oklch, white, transparent 85%);
}

.footer-legal-info p {
  font-size: 0.75rem;
  color: color-mix(in oklch, white, transparent 60%);
  margin-bottom: 0.2rem;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  text-align: center;
  padding: var(--space-md) 0;
  border-top: 1px solid color-mix(in oklch, white, transparent 88%);
}

.footer-copy {
  font-size: 0.8rem;
  color: color-mix(in oklch, white, transparent 55%);
}

.footer-legal-mini {
  font-size: 0.8rem;
  color: color-mix(in oklch, white, transparent 55%);
}

.footer-legal-mini a {
  color: color-mix(in oklch, white, transparent 45%);
  transition: color 0.2s ease;
}

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


.stage-curtain {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  width: 320px;
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 32px color-mix(in oklch, var(--primary), transparent 70%),
              0 2px 8px color-mix(in oklch, var(--primary), transparent 85%);
  border: 1px solid var(--border);
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
  overflow: hidden;
}

.stage-curtain.curtain-visible {
  transform: translateY(0);
  opacity: 1;
}

.curtain-header {
  padding: var(--space-md) var(--space-md) 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.curtain-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-xlight);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
}

.curtain-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
}

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

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

.curtain-text a { color: var(--primary); text-decoration: underline; }

.curtain-actions {
  padding: 0 var(--space-md) var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.curtain-btn-accept {
  width: 100%;
  padding: 0.7rem;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: var(--radius-full);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.curtain-btn-accept:hover {
  background: var(--accent);
  color: var(--primary-dark);
  transform: translateY(-1px);
}

.curtain-btn-reject {
  width: 100%;
  padding: 0.65rem;
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.curtain-btn-reject:hover { border-color: var(--border-strong); color: var(--text-dark); }

.curtain-btn-customize {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  padding: 0.3rem;
  transition: color 0.2s ease;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.curtain-btn-customize:hover { color: var(--secondary); }

.curtain-toggles {
  padding: 0 var(--space-md);
  display: none;
  flex-direction: column;
  gap: 0.6rem;
  border-top: 1px solid var(--border);
  padding-top: var(--space-sm);
  margin-top: 0;
}

.curtain-toggles.toggles-open { display: flex; }

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.toggle-label {
  font-size: 0.8rem;
  color: var(--text-body);
  font-weight: 500;
}

.toggle-switch {
  position: relative;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
}

.toggle-switch input { opacity: 0; width: 0; height: 0; }

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

.toggle-slider::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  left: 3px;
  top: 3px;
  background: white;
  border-radius: 50%;
  transition: transform 0.2s ease;
}

.toggle-switch input:checked + .toggle-slider { background: var(--secondary); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(18px); }
.toggle-switch input:disabled + .toggle-slider { opacity: 0.7; cursor: not-allowed; }


@media (min-width: 640px) {
  .shelf-3 { grid-template-columns: repeat(2, 1fr); }
  .checklist-grid { grid-template-columns: repeat(2, 1fr); }
  .strip-inner { grid-template-columns: 1fr 1fr; }
  .shelf-2-wide { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-hamburger { display: none; }
  .shelf-4 { grid-template-columns: repeat(4, 1fr); }
  .shelf-3 { grid-template-columns: repeat(3, 1fr); }
  .service-body { grid-template-columns: 1fr 320px; }
  .contact-grid { grid-template-columns: 1fr 380px; }
  .cta-inner { flex-direction: row; align-items: center; justify-content: space-between; }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .strip-reverse { direction: rtl; }
  .strip-reverse > * { direction: ltr; }
}

@media (max-width: 767px) {
  .stage-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: var(--space-xl) var(--space-md);
  }

  .stage-heading { font-size: clamp(2rem, 8vw, 3rem); }
  .stage-sub { margin: 0 auto var(--space-lg); }
  .stage-actions { justify-content: center; }
  .stage-visual { order: -1; }

  .stage-circle-frame {
    width: 240px;
    height: 240px;
  }

  .stage-badge {
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
  }

  .stage-curtain {
    width: calc(100vw - 2rem);
    right: 1rem;
    left: 1rem;
  }

  .service-block-header { flex-direction: column; align-items: flex-start; }
  .form-actions { flex-direction: column; }
  .form-actions .btn-outline { order: 2; }
  .form-actions .btn-primary { order: 1; }
}

@media (max-width: 480px) {
  :root { --space-xl: 2.5rem; --space-2xl: 4rem; --space-3xl: 5rem; }
  .legal-card { padding: var(--space-md); }
  .service-body { padding: var(--space-md); }
  .form-card { padding: var(--space-md); }
}