@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700&display=swap');

:root {
  --primary: oklch(38% 0.12 240);
  --secondary: oklch(55% 0.14 200);
  --accent: oklch(65% 0.18 170);

  --primary-light: color-mix(in oklch, var(--primary), white 60%);
  --primary-xlight: color-mix(in oklch, var(--primary), white 88%);
  --primary-dark: color-mix(in oklch, var(--primary), black 20%);
  --primary-xdark: color-mix(in oklch, var(--primary), black 40%);

  --secondary-light: color-mix(in oklch, var(--secondary), white 60%);
  --secondary-xlight: color-mix(in oklch, var(--secondary), white 85%);

  --accent-light: color-mix(in oklch, var(--accent), white 55%);
  --accent-xlight: color-mix(in oklch, var(--accent), white 82%);
  --accent-dark: color-mix(in oklch, var(--accent), black 20%);

  --surface: oklch(98% 0.005 240);
  --surface-2: oklch(95% 0.01 240);
  --surface-3: oklch(92% 0.015 240);

  --text-primary: oklch(18% 0.04 240);
  --text-secondary: oklch(42% 0.05 240);
  --text-muted: oklch(58% 0.04 240);
  --text-on-dark: oklch(97% 0.005 240);

  --border: oklch(88% 0.02 240);
  --border-strong: oklch(75% 0.04 240);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px color-mix(in oklch, var(--primary), transparent 88%), 0 1px 2px color-mix(in oklch, var(--primary), transparent 94%);
  --shadow-md: 0 4px 12px color-mix(in oklch, var(--primary), transparent 82%), 0 2px 4px color-mix(in oklch, var(--primary), transparent 90%);
  --shadow-lg: 0 12px 32px color-mix(in oklch, var(--primary), transparent 78%), 0 4px 8px color-mix(in oklch, var(--primary), transparent 88%);
  --shadow-xl: 0 24px 48px color-mix(in oklch, var(--primary), transparent 72%), 0 8px 16px color-mix(in oklch, var(--primary), transparent 84%);

  --nav-h: 72px;
  --section-pad: clamp(64px, 8vw, 120px);
  --container-max: 1200px;
  --container-pad: clamp(20px, 5vw, 60px);
}

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

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

body {
  font-family: 'Rubik', sans-serif;
  background-color: var(--surface);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  padding-bottom: 64px;
}

@media (min-width: 768px) { body { padding-bottom: 0; } }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.22s ease; }
ul { list-style: none; }
address { font-style: normal; }

.section-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  background: var(--accent-xlight);
  border: 1px solid color-mix(in oklch, var(--accent), transparent 60%);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

.section-tag--light {
  color: var(--text-on-dark);
  background: color-mix(in oklch, white, transparent 80%);
  border-color: color-mix(in oklch, white, transparent 70%);
}

.section-heading {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.22;
  margin-bottom: 0.6em;
}

.highlight-text {
  color: var(--accent);
  position: relative;
}

.content-block {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.primary-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--text-on-dark);
  font-family: 'Rubik', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: background 0.22s ease, transform 0.18s ease, box-shadow 0.22s ease;
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.primary-action:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--text-on-dark);
}

.primary-action--large { padding: 18px 36px; font-size: 1.05rem; border-radius: var(--radius-lg); }

.secondary-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--primary);
  font-family: 'Rubik', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 13px 27px;
  border-radius: var(--radius-md);
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease, transform 0.18s ease;
  text-decoration: none;
}

.secondary-action:hover {
  background: var(--primary-xlight);
  transform: translateY(-2px);
}



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

.primary-nav.nav-scrolled {
  background: var(--surface);
  box-shadow: 0 2px 16px color-mix(in oklch, var(--primary), transparent 88%), 0 1px 4px color-mix(in oklch, var(--primary), transparent 92%);
}

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

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

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

.nav-brand-text {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.nav-links {
  display: none;
  gap: 4px;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
    align-items: center;
  }
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color 0.2s ease, background 0.2s ease;
  position: relative;
}

.nav-link:hover { color: var(--primary); background: var(--primary-xlight); }

.nav-link.active {
  color: var(--primary);
  font-weight: 600;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease;
}

.nav-toggle:hover { background: var(--primary-xlight); }

@media (min-width: 768px) { .nav-toggle { display: none; } }

.toggle-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}



.mobile-curtain {
  position: fixed;
  inset: 0;
  background: var(--primary-dark);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-100%);
  transition: transform 0.45s cubic-bezier(0.77, 0, 0.18, 1);
  pointer-events: none;
}

.mobile-curtain.curtain-open {
  transform: translateY(0);
  pointer-events: all;
}

.curtain-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 40px 24px;
}

.curtain-links { display: flex; flex-direction: column; align-items: center; gap: 4px; width: 100%; }

.curtain-item {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  width: 100%;
  text-align: center;
}

.mobile-curtain.curtain-open .curtain-item:nth-child(1) { transition-delay: 0.08s; opacity: 1; transform: none; }
.mobile-curtain.curtain-open .curtain-item:nth-child(2) { transition-delay: 0.14s; opacity: 1; transform: none; }
.mobile-curtain.curtain-open .curtain-item:nth-child(3) { transition-delay: 0.20s; opacity: 1; transform: none; }
.mobile-curtain.curtain-open .curtain-item:nth-child(4) { transition-delay: 0.26s; opacity: 1; transform: none; }
.mobile-curtain.curtain-open .curtain-item:nth-child(5) { transition-delay: 0.32s; opacity: 1; transform: none; }

.curtain-link {
  display: block;
  font-size: clamp(1.4rem, 5vw, 2rem);
  font-weight: 600;
  color: var(--text-on-dark);
  padding: 14px 24px;
  border-radius: var(--radius-md);
  transition: background 0.2s ease, color 0.2s ease;
  text-decoration: none;
}

.curtain-link:hover {
  background: color-mix(in oklch, white, transparent 85%);
  color: var(--accent-light);
}

.curtain-close {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: color-mix(in oklch, white, transparent 85%);
  color: var(--text-on-dark);
  border: 1px solid color-mix(in oklch, white, transparent 75%);
  font-family: 'Rubik', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background 0.2s ease;
  min-height: 44px;
}

.curtain-close:hover { background: color-mix(in oklch, white, transparent 75%); }



.mobile-bottom-nav {
  display: flex;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 64px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  z-index: 900;
  box-shadow: 0 -4px 16px color-mix(in oklch, var(--primary), transparent 90%);
}

@media (min-width: 768px) { .mobile-bottom-nav { display: none; } }

.bottom-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: var(--text-muted);
  font-size: 0.68rem;
  font-weight: 500;
  text-decoration: none;
  min-height: 44px;
  transition: color 0.2s ease;
}

.bottom-nav-item i { font-size: 1.15rem; }

.bottom-nav-item.active { color: var(--primary); }
.bottom-nav-item:hover { color: var(--primary); }



.hero-section {
  min-height: 100vh;
  padding-top: var(--nav-h);
  background: linear-gradient(135deg, var(--primary-xdark) 0%, var(--primary) 55%, var(--secondary) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-geo-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid color-mix(in oklch, white, transparent 80%);
  pointer-events: none;
}

.hero-geo-1 {
  width: 600px; height: 600px;
  top: -200px; right: -150px;
  background: color-mix(in oklch, white, transparent 95%);
}

.hero-geo-2 {
  width: 300px; height: 300px;
  bottom: -80px; left: 10%;
  background: color-mix(in oklch, var(--accent), transparent 85%);
}

.hero-geo-dots {
  position: absolute;
  top: 30%; left: 5%;
  width: 160px; height: 160px;
  background-image: radial-gradient(circle, color-mix(in oklch, white, transparent 70%) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  pointer-events: none;
  opacity: 0.4;
}

.hero-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: clamp(40px, 8vh, 100px) var(--container-pad);
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  position: relative;
  z-index: 1;
  width: 100%;
}

@media (min-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 64px;
  }
}

.hero-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 20px;
}

.hero-headline {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--text-on-dark);
  line-height: 1.12;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-headline .highlight-text { color: var(--accent-light); }

.hero-subtext {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: color-mix(in oklch, var(--text-on-dark), transparent 25%);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-actions .primary-action {
  background: var(--accent);
  color: var(--text-primary);
  box-shadow: 0 8px 24px color-mix(in oklch, var(--accent), transparent 55%);
}

.hero-actions .primary-action:hover {
  background: var(--accent-dark);
  color: var(--text-on-dark);
}

.hero-actions .secondary-action {
  border-color: color-mix(in oklch, white, transparent 60%);
  color: var(--text-on-dark);
}

.hero-actions .secondary-action:hover {
  background: color-mix(in oklch, white, transparent 85%);
}

.hero-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.bento-card {
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  backdrop-filter: blur(10px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: default;
}

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

.bento-card--large {
  grid-column: span 2;
  background: color-mix(in oklch, white, transparent 88%);
  border: 1px solid color-mix(in oklch, white, transparent 75%);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.bento-card--accent {
  background: var(--accent);
  border: 1px solid var(--accent-dark);
}

.bento-card--light {
  background: color-mix(in oklch, white, transparent 85%);
  border: 1px solid color-mix(in oklch, white, transparent 70%);
}

.bento-card--outline {
  background: transparent;
  border: 1px solid color-mix(in oklch, white, transparent 70%);
}

.bento-card-icon {
  font-size: 1.4rem;
  color: var(--text-on-dark);
  flex-shrink: 0;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: color-mix(in oklch, white, transparent 80%);
  border-radius: var(--radius-sm);
}

.bento-card--accent .bento-card-icon { background: color-mix(in oklch, white, transparent 75%); }

.bento-card-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-on-dark);
  margin-bottom: 4px;
}

.bento-card-desc {
  font-size: 0.78rem;
  color: color-mix(in oklch, var(--text-on-dark), transparent 25%);
  line-height: 1.5;
}



.intro-section {
  padding: var(--section-pad) 0;
  background: var(--surface);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 768px) {
  .intro-grid { grid-template-columns: 1fr 1fr; gap: 72px; }
}

.intro-img-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.intro-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.intro-img-frame:hover .intro-img { transform: scale(1.03); }

.intro-img-accent {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: var(--accent-xlight);
  border: 3px solid var(--accent-light);
  z-index: -1;
}

.intro-feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.feature-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}



.categories-section {
  padding: var(--section-pad) 0;
  background: var(--surface-2);
  position: relative;
}

.section-header-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .section-header-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}

.section-intro-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  max-width: 360px;
  line-height: 1.6;
}

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

@media (min-width: 600px) {
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 900px) {
  .categories-grid { grid-template-columns: repeat(6, 1fr); }
}

.category-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  cursor: default;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-light);
}

.category-icon-wrap {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: var(--accent-xlight);
  color: var(--accent-dark);
  font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  transition: background 0.25s ease, color 0.25s ease;
}

.category-card:hover .category-icon-wrap {
  background: var(--accent);
  color: var(--text-on-dark);
}

.category-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.category-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}



.sticky-section {
  padding: 0;
  background: var(--surface);
}

.sticky-layout {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .sticky-layout {
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
  }
}

.sticky-visual-col {
  position: relative;
  background: var(--primary-xdark);
  overflow: hidden;
  min-height: 50vh;
}

@media (min-width: 900px) {
  .sticky-visual-col {
    position: sticky;
    top: 0;
    height: 100vh;
  }
}

.sticky-visual-inner {
  position: relative;
  width: 100%; height: 100%;
  min-height: 50vh;
}

.sticky-main-img {
  width: 100%; height: 100%;
  min-height: 50vh;
  object-fit: cover;
  opacity: 0.7;
}

.sticky-geo-accent {
  position: absolute;
  top: 20%; right: 10%;
  width: 200px; height: 200px;
  border: 2px solid color-mix(in oklch, var(--accent), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.sticky-counter-badge {
  position: absolute;
  bottom: 32px; left: 32px;
  background: var(--accent);
  color: var(--text-primary);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  display: flex; align-items: center; gap: 8px;
  box-shadow: var(--shadow-lg);
}

.sticky-scroll-col {
  padding: clamp(40px, 6vw, 80px) clamp(24px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sticky-scroll-item {
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}

.sticky-scroll-item:last-child { border-bottom: none; }

.sticky-step-num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 12px;
}

.sticky-step-title {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.sticky-step-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 24px;
}

.sticky-step-img {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 16/9;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}



.tabs-section {
  padding: var(--section-pad) 0;
  background: var(--surface-2);
}

.section-header-center {
  text-align: center;
  margin-bottom: 48px;
}

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

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

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

.tab-btn {
  flex-shrink: 0;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  font-family: 'Rubik', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 16px 24px;
  cursor: pointer;
  transition: color 0.22s ease, border-color 0.22s ease;
  min-height: 44px;
}

.tab-btn:hover { color: var(--primary); }

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

.tabs-content { padding: 0; }

.tab-panel {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.tab-panel-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 40px;
  align-items: center;
}

@media (min-width: 768px) {
  .tab-panel-inner { grid-template-columns: 1fr 1fr; gap: 48px; }
}

.tab-panel-heading {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.tab-panel-text p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 12px;
}

.tab-img {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}



.gallery-section {
  padding: var(--section-pad) 0;
  background: var(--surface);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 32px;
}

@media (min-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: block;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.gallery-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: color-mix(in oklch, var(--primary-xdark), transparent 55%);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-on-dark);
  font-size: 1.4rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }



.cta-split-section {
  padding: var(--section-pad) 0;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  position: relative;
  overflow: hidden;
}

.cta-split-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .cta-split-inner { grid-template-columns: 1fr auto; gap: 64px; }
}

.cta-split-geo {
  position: absolute;
  top: -60px; right: -60px;
  width: 280px; height: 280px;
  border: 1px solid color-mix(in oklch, white, transparent 82%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-split-heading {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text-on-dark);
  line-height: 1.25;
  margin-bottom: 12px;
}

.cta-split-sub {
  font-size: 0.95rem;
  color: color-mix(in oklch, var(--text-on-dark), transparent 25%);
  line-height: 1.65;
}

.cta-split-action-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .cta-split-action-col { align-items: flex-end; }
}

.cta-split-action-col .primary-action {
  background: var(--accent);
  color: var(--text-primary);
}

.cta-split-action-col .primary-action:hover {
  background: var(--accent-dark);
  color: var(--text-on-dark);
}

.cta-action-note {
  font-size: 0.78rem;
  color: color-mix(in oklch, var(--text-on-dark), transparent 35%);
  max-width: 260px;
  line-height: 1.5;
}



.page-hero-section {
  padding-top: calc(var(--nav-h) + clamp(48px, 6vw, 80px));
  padding-bottom: clamp(48px, 6vw, 80px);
  background: linear-gradient(160deg, var(--primary-xdark) 0%, var(--primary) 100%);
  position: relative;
  overflow: hidden;
}

.page-hero-geo {
  position: absolute;
  top: -80px; right: -80px;
  width: 360px; height: 360px;
  border: 1px solid color-mix(in oklch, white, transparent 80%);
  border-radius: 50%;
  pointer-events: none;
}

.page-hero-content {
  max-width: 680px;
  position: relative;
  z-index: 1;
}

.page-hero-heading {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--text-on-dark);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.page-hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: color-mix(in oklch, var(--text-on-dark), transparent 25%);
  line-height: 1.7;
}



.mission-section { padding: var(--section-pad) 0; }

.mission-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: start;
}

@media (min-width: 900px) {
  .mission-grid { grid-template-columns: 1.1fr 1fr; }
}

.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 24px 24px 24px 20px;
  margin-bottom: 16px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.value-card-num {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.value-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.value-card-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.visual-break-section {
  position: relative;
  height: 360px;
  overflow: hidden;
}

.visual-break-img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.visual-break-overlay {
  position: absolute;
  inset: 0;
  background: color-mix(in oklch, var(--primary-xdark), transparent 45%);
  display: flex; align-items: center;
}

.visual-break-quote p {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 300;
  color: var(--text-on-dark);
  font-style: italic;
  line-height: 1.4;
  max-width: 600px;
  border-left: 3px solid var(--accent-light);
  padding-left: 24px;
}

.approach-section {
  padding: var(--section-pad) 0;
  background: var(--surface-2);
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .approach-grid { grid-template-columns: repeat(4, 1fr); }
}

.approach-item {
  text-align: center;
}

.approach-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-lg);
  background: var(--primary-xlight);
  color: var(--primary);
  font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  transition: background 0.22s ease, color 0.22s ease;
}

.approach-item:hover .approach-icon {
  background: var(--primary);
  color: var(--text-on-dark);
}

.approach-item h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.approach-item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}



.pricing-section { padding: var(--section-pad) 0; }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); align-items: start; }
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.pricing-card--featured {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px color-mix(in oklch, var(--primary), transparent 80%), var(--shadow-lg);
}

.pricing-featured-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--primary);
  color: var(--text-on-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.pricing-card-header {
  padding: 32px 28px 24px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}

.pricing-card--featured .pricing-card-header {
  background: var(--primary-xlight);
}

.pricing-tier-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.pricing-amount {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.pricing-period {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-left: 4px;
}

.pricing-card-body { padding: 28px; }

.pricing-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.pricing-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.pricing-feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.pricing-feature-list .fa-check { color: var(--accent-dark); }
.pricing-feature-list .fa-minus { color: var(--border-strong); }

.pricing-action {
  display: block;
  text-align: center;
  font-family: 'Rubik', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  transition: background 0.22s ease, color 0.22s ease, transform 0.18s ease, box-shadow 0.22s ease;
  min-height: 44px;
}

.pricing-action--primary {
  background: var(--primary);
  color: var(--text-on-dark);
  border: none;
}

.pricing-action--primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--text-on-dark);
}

.pricing-action--outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.pricing-action--outline:hover {
  background: var(--primary-xlight);
  transform: translateY(-2px);
}

.pricing-note-box {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-left: 4px solid var(--secondary);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.pricing-note-box .fa-circle-info {
  color: var(--secondary);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}



.faq-section {
  padding: var(--section-pad) 0;
  background: var(--surface-2);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 40px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.22s ease;
}

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

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: 100%;
  background: none;
  border: none;
  font-family: 'Rubik', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  padding: 20px 24px;
  cursor: pointer;
  text-align: left;
  min-height: 44px;
  transition: color 0.2s ease;
}

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

.faq-icon {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.3s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}

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

.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}



.how-steps-section { padding: var(--section-pad) 0; }

.how-steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .how-steps-grid { grid-template-columns: repeat(4, 1fr); }
}

.how-step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.how-step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.how-step-num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 16px;
}

.how-step-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-lg);
  background: var(--primary-xlight);
  color: var(--primary);
  font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  transition: background 0.22s ease, color 0.22s ease;
}

.how-step-card:hover .how-step-icon {
  background: var(--primary);
  color: var(--text-on-dark);
}

.how-step-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.how-step-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.65;
}



.profile-anatomy-section {
  padding: var(--section-pad) 0;
  background: var(--surface-2);
}

.profile-anatomy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-top: 40px;
  align-items: start;
}

@media (min-width: 768px) {
  .profile-anatomy-grid { grid-template-columns: 1fr 1fr; }
}

.profile-mock {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.profile-mock-header {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
}

.profile-mock-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--primary-light);
}

.profile-mock-name {
  height: 14px;
  background: var(--border-strong);
  border-radius: var(--radius-sm);
  width: 120px;
  margin-bottom: 8px;
}

.profile-mock-cat {
  height: 10px;
  background: var(--border);
  border-radius: var(--radius-sm);
  width: 80px;
}

.profile-mock-line {
  height: 10px;
  background: var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
}

.profile-mock-line--short { width: 65%; }

.profile-mock-tags {
  display: flex;
  gap: 8px;
  margin: 16px 0;
}

.profile-mock-tag {
  height: 24px;
  width: 70px;
  border-radius: var(--radius-full);
  background: var(--accent-xlight);
  border: 1px solid var(--accent-light);
}

.profile-mock-map {
  height: 80px;
  background: var(--surface-2);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  margin-top: 16px;
}

.profile-mock-geo-accent {
  position: absolute;
  bottom: -30px; right: -30px;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: var(--accent-xlight);
  border: 2px solid var(--accent-light);
}

.profile-anatomy-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.anatomy-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

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

.anatomy-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.anatomy-text p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}



.disclaimer-section { padding: var(--section-pad) 0; }

.disclaimer-box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: color-mix(in oklch, oklch(75% 0.15 60), white 85%);
  border: 1px solid color-mix(in oklch, oklch(75% 0.15 60), white 65%);
  border-left: 4px solid oklch(65% 0.18 60);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
}

.disclaimer-icon {
  font-size: 1.4rem;
  color: oklch(55% 0.18 60);
  flex-shrink: 0;
  margin-top: 2px;
}

.disclaimer-heading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.disclaimer-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 10px;
}

.disclaimer-content p:last-child { margin-bottom: 0; }



.contact-section { padding: var(--section-pad) 0; }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 900px) {
  .contact-layout { grid-template-columns: 1fr 1.4fr; gap: 56px; }
}

.contact-info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
  margin-bottom: 24px;
}

.contact-info-heading {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 28px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

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

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

.contact-info-item strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-info-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.contact-info-item a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

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

.contact-form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
}

.form-progress {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
}

.form-progress-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.form-progress-step.active { color: var(--primary); }

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

.form-progress-step.active .progress-num {
  background: var(--primary);
  color: var(--text-on-dark);
}

.form-progress-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  border-radius: 2px;
}

.form-step { display: none; }
.form-step.active { display: block; }

.form-step-heading {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
}

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

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  background: var(--surface-2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-family: 'Rubik', sans-serif;
  font-size: 0.95rem;
  color: var(--text-primary);
  padding: 13px 16px;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
  outline: none;
  min-height: 44px;
}

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

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

.form-checkbox-field {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

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

.form-checkbox-label {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.55;
  cursor: pointer;
}

.form-checkbox-label a {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-color: color-mix(in oklch, var(--primary), transparent 60%);
}

.form-next-btn { width: 100%; justify-content: center; margin-top: 8px; }

.form-btn-row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
}

.form-back-btn { flex-shrink: 0; }



.office-gallery-section {
  padding: var(--section-pad) 0;
  background: var(--surface-2);
}

.office-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 32px;
}

@media (min-width: 768px) {
  .office-gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

.office-gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: block;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.office-gallery-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.office-gallery-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.office-gallery-item:hover img { transform: scale(1.05); }
.office-gallery-item .gallery-overlay { font-size: 1.4rem; }
.office-gallery-item:hover .gallery-overlay { opacity: 1; }



.thanks-main {
  min-height: calc(100vh - var(--nav-h) - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 40px) var(--container-pad) 40px;
  position: relative;
  overflow: hidden;
}

.thanks-container {
  max-width: 600px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.thanks-geo-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.thanks-geo-1 {
  width: 400px; height: 400px;
  top: -150px; right: -150px;
  border: 1px solid var(--border);
}

.thanks-geo-2 {
  width: 200px; height: 200px;
  bottom: -60px; left: -60px;
  background: var(--accent-xlight);
  border: 2px solid var(--accent-light);
}

.thanks-content {
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(40px, 6vw, 72px);
  box-shadow: var(--shadow-xl);
}

.thanks-icon-wrap {
  margin-bottom: 24px;
}

.thanks-icon {
  font-size: 3.5rem;
  color: var(--accent-dark);
}

.thanks-heading {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.thanks-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

.thanks-countdown-wrap { margin-bottom: 32px; }

.thanks-redirect-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.thanks-countdown-bar {
  height: 4px;
  background: var(--border);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.thanks-countdown-fill {
  height: 100%;
  background: var(--primary);
  border-radius: var(--radius-full);
  transition: width 1s linear;
}

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



.legal-hero-section {
  padding-top: calc(var(--nav-h) + 48px);
  padding-bottom: 48px;
  background: linear-gradient(160deg, var(--primary-xdark) 0%, var(--primary) 100%);
  position: relative;
}

.legal-hero-section--terms { background: linear-gradient(160deg, var(--primary-dark) 0%, color-mix(in oklch, var(--primary), var(--secondary) 40%) 100%); }
.legal-hero-section--cookies { background: linear-gradient(160deg, color-mix(in oklch, var(--primary), var(--secondary) 30%) 0%, var(--secondary) 100%); }

.legal-hero-heading {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text-on-dark);
  margin-bottom: 12px;
}

.legal-hero-sub {
  font-size: 0.9rem;
  color: color-mix(in oklch, var(--text-on-dark), transparent 30%);
}


.legal-timeline-section { padding: var(--section-pad) 0; }

.legal-timeline {
  position: relative;
  padding-left: clamp(24px, 5vw, 64px);
}

.legal-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary-light), var(--accent-light));
  border-radius: 2px;
}

.timeline-entry {
  position: relative;
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 600px) {
  .timeline-entry { grid-template-columns: auto 1fr; gap: 32px; }
}

.timeline-marker {
  position: relative;
  flex-shrink: 0;
}

.timeline-marker::before {
  content: '';
  position: absolute;
  left: calc(-1 * clamp(24px, 5vw, 64px));
  top: 8px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--primary);
  border: 2px solid var(--surface);
  box-shadow: 0 0 0 2px var(--primary-light);
}

.timeline-date {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--primary);
  background: var(--primary-xlight);
  border: 1px solid var(--primary-light);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.timeline-body h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.timeline-body p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 10px;
}

.timeline-body p:last-child { margin-bottom: 0; }

.timeline-body ul {
  list-style: disc;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
}

.timeline-body ul li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

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


.legal-cards-section { padding: var(--section-pad) 0; }

.terms-preamble {
  background: var(--primary-xlight);
  border: 1px solid var(--primary-light);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-bottom: 40px;
}

.terms-preamble p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.terms-section-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

@media (min-width: 600px) {
  .terms-section-block { grid-template-columns: 56px 1fr; gap: 32px; align-items: start; }
}

.terms-section-letter {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: var(--primary);
  color: var(--text-on-dark);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.terms-section-content h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.terms-section-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 10px;
}

.terms-section-content p:last-child { margin-bottom: 0; }

.terms-section-content ul {
  list-style: disc;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
}

.terms-section-content ul li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}


.cookies-content-section { padding: var(--section-pad) 0; }

.cookies-intro-block {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-bottom: 40px;
}

.cookies-intro-block p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.cookies-what-block,
.cookies-manage-block,
.cookies-rights-block {
  margin-bottom: 40px;
}

.cookies-what-block h2,
.cookies-manage-block h2,
.cookies-rights-block h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent-xlight);
}

.cookies-what-block p,
.cookies-manage-block p,
.cookies-rights-block p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 10px;
}

.cookies-manage-block ul {
  list-style: disc;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
}

.cookies-manage-block ul li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.cookies-table-section { margin-bottom: 40px; }

.cookies-table-section h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.cookie-category-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-bottom: 20px;
}

.cookie-category-card--necessary { border-left: 4px solid var(--primary); }
.cookie-category-card--analytics { border-left: 4px solid var(--secondary); }
.cookie-category-card--functional { border-left: 4px solid var(--accent); }

.cookie-cat-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.cookie-cat-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-md);
  background: var(--surface-2);
  color: var(--text-muted);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
}

.cookie-cat-header h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.cookie-cat-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  background: var(--surface-3);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.cookie-cat-badge--required {
  background: var(--primary-xlight);
  color: var(--primary-dark);
  border-color: var(--primary-light);
}

.cookie-category-card > p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 16px;
}

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

.cookie-table th {
  text-align: left;
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 12px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}

.cookie-table td {
  padding: 10px 12px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

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



.site-footer {
  background: var(--primary-xdark);
  color: var(--text-on-dark);
  position: relative;
  overflow: hidden;
}

.footer-geo-line {
  height: 3px;
  background: linear-gradient(to right, var(--accent), var(--secondary), var(--primary-light));
}

.footer-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: 56px 0 40px;
  border-bottom: 1px solid color-mix(in oklch, white, transparent 85%);
}

@media (min-width: 768px) {
  .footer-top { grid-template-columns: 1.5fr 1fr 1fr; }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 16px;
}

.footer-logo { width: 32px; height: 32px; }

.footer-brand span {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-on-dark);
}

.footer-tagline {
  font-size: 0.85rem;
  color: color-mix(in oklch, var(--text-on-dark), transparent 35%);
  line-height: 1.65;
  margin-bottom: 20px;
  max-width: 300px;
}

.footer-address {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: color-mix(in oklch, var(--text-on-dark), transparent 30%);
  margin-bottom: 10px;
}

.footer-address i { color: var(--accent-light); flex-shrink: 0; margin-top: 3px; }

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: color-mix(in oklch, var(--text-on-dark), transparent 30%);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s ease;
}

.footer-contact-link i { color: var(--accent-light); }
.footer-contact-link:hover { color: var(--text-on-dark); }

.footer-nav-heading {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: color-mix(in oklch, var(--text-on-dark), transparent 40%);
  margin-bottom: 16px;
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-list a {
  font-size: 0.88rem;
  color: color-mix(in oklch, var(--text-on-dark), transparent 30%);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav-list a:hover { color: var(--text-on-dark); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}

.footer-copy {
  font-size: 0.82rem;
  color: color-mix(in oklch, var(--text-on-dark), transparent 45%);
}

.footer-disclaimer {
  font-size: 0.78rem;
  color: color-mix(in oklch, var(--text-on-dark), transparent 55%);
  max-width: 480px;
  line-height: 1.5;
}



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

.scroll-reveal.revealed {
  opacity: 1;
  transform: none;
}



.cookie-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--primary-xdark);
  border-top: 2px solid var(--accent);
  padding: 16px var(--container-pad);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 -8px 32px color-mix(in oklch, var(--primary), transparent 70%);
}

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

.cookie-bar.cookie-bar--expanded {
  padding-bottom: 24px;
}

.cookie-bar-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .cookie-bar-row { flex-direction: row; align-items: center; justify-content: space-between; }
}

.cookie-bar-text {
  font-size: 0.85rem;
  color: color-mix(in oklch, var(--text-on-dark), transparent 20%);
  line-height: 1.55;
  max-width: 560px;
}

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

.cookie-bar-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.cookie-btn {
  font-family: 'Rubik', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
  border: none;
  min-height: 44px;
}

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

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

.cookie-btn--reject {
  background: color-mix(in oklch, white, transparent 85%);
  color: var(--text-on-dark);
}

.cookie-btn--reject:hover {
  background: color-mix(in oklch, white, transparent 75%);
  transform: translateY(-1px);
}

.cookie-btn--customize {
  background: transparent;
  color: color-mix(in oklch, var(--text-on-dark), transparent 30%);
  border: 1px solid color-mix(in oklch, white, transparent 75%);
}

.cookie-btn--customize:hover {
  background: color-mix(in oklch, white, transparent 90%);
  color: var(--text-on-dark);
}

.cookie-categories {
  display: none;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid color-mix(in oklch, white, transparent 82%);
}

.cookie-categories.cookie-cats--visible { display: flex; }

.cookie-cat-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  background: color-mix(in oklch, white, transparent 90%);
  border: 1px solid color-mix(in oklch, white, transparent 80%);
  border-radius: var(--radius-md);
  padding: 8px 14px;
  color: var(--text-on-dark);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
}

.cookie-cat-toggle input[type="checkbox"] {
  accent-color: var(--accent);
  width: 16px; height: 16px;
}

.cookie-save-btn {
  margin-top: 12px;
  font-family: 'Rubik', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  background: var(--accent);
  color: var(--text-primary);
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
  min-height: 44px;
}

.cookie-save-btn:hover {
  background: var(--accent-dark);
  color: var(--text-on-dark);
}

@media (min-width: 768px) {
  body { padding-bottom: 0; }
  .cookie-bar { bottom: 0; }
}