
:root {
  --c-teal-950: #0B211F;
  --c-teal-900: #12302C;
  --c-teal-800: #1B453F;
  --c-teal-700: #235850;
  --c-teal-600: #2C6B60;
  --c-teal-500: #397F72;
  --c-teal-300: #7FA89E;
  --c-cream-50: #FCF8F1;
  --c-cream-100: #F5EDDD;
  --c-cream-200: #ECE0C8;
  --c-coral-600: #E2502F;
  --c-coral-500: #F26A43;
  --c-coral-400: #FF8560;
  --c-ink: #16211F;
  --c-ink-soft: #3A4744;
  --c-white: #FFFEFB;

  --font-head: "Bitter", serif;
  --font-body: "Plus Jakarta Sans", sans-serif;

  --r-xs: 10px;
  --r-sm: 16px;
  --r-md: 24px;
  --r-lg: 36px;
  --r-blob-1: 60% 40% 30% 70% / 50% 60% 40% 50%;
  --r-blob-2: 40% 60% 70% 30% / 40% 50% 60% 50%;
  --r-blob-3: 30% 70% 70% 30% / 30% 30% 70% 70%;
  --r-blob-4: 55% 45% 65% 35% / 40% 55% 45% 60%;

  --shadow-sm: 0 1px 2px rgba(15,40,35,.08), 0 1px 1px rgba(15,40,35,.06);
  --shadow-md: 0 8px 20px -6px rgba(15,40,35,.20), 0 3px 8px -3px rgba(15,40,35,.12);
  --shadow-lg: 0 24px 48px -14px rgba(15,40,35,.30), 0 10px 20px -8px rgba(15,40,35,.18);
  --shadow-coral: 0 14px 28px -10px rgba(226,80,47,.40);

  --space-1: clamp(0.5rem, 0.5rem + 0.2vw, 0.75rem);
  --space-2: clamp(1rem, 0.9rem + 0.4vw, 1.5rem);
  --space-3: clamp(1.5rem, 1.3rem + 0.8vw, 2.5rem);
  --space-4: clamp(2.5rem, 2rem + 2vw, 5rem);
  --space-5: clamp(4rem, 3rem + 4vw, 8rem);

  --transition: 0.35s cubic-bezier(.4,0,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--c-ink);
  background: var(--c-cream-50);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4 { font-family: var(--font-head); color: var(--c-teal-900); line-height: 1.2; margin: 0 0 0.6em; }
p { margin: 0 0 1em; }
a { color: var(--c-teal-700); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--c-coral-600); }
img { max-width: 100%; height: auto; display: block; }
figure { margin: 0; }
mark { background: var(--c-coral-400); color: var(--c-teal-950); padding: 0.05em 0.35em; border-radius: 6px; }
small { color: var(--c-ink-soft); }
abbr { text-decoration: underline dotted; cursor: help; }
ul { padding: 0; margin: 0; list-style: none; }

.section__title { font-size: clamp(1.6rem, 1.3rem + 1.6vw, 2.6rem); margin-bottom: 0.4em; }
.section__subtitle { color: var(--c-ink-soft); max-width: 60ch; font-size: 1.05rem; }


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-weight: 600;
  border: none;
  border-radius: var(--r-sm);
  padding: 0.9em 1.6em;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  min-height: 44px;
  font-size: 0.98rem;
}
.btn--primary { background: var(--c-coral-500); color: var(--c-white); box-shadow: var(--shadow-coral); }
.btn--primary:hover { background: var(--c-coral-600); transform: translateY(-2px); box-shadow: 0 18px 34px -10px rgba(226,80,47,.5); color: var(--c-white); }
.btn--ghost { background: transparent; color: var(--c-teal-800); border: 2px solid var(--c-teal-700); }
.btn--ghost:hover { background: var(--c-teal-800); color: var(--c-white); }
.btn--lg { padding: 1.05em 2.1em; font-size: 1.05rem; }
.btn--sm { padding: 0.6em 1.1em; font-size: 0.88rem; }


.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(252,248,241,0.7);
  backdrop-filter: blur(10px);
  transition: padding var(--transition), background var(--transition), box-shadow var(--transition);
  padding: 1.4rem 0;
}
.site-header--scrolled {
  padding: 0.6rem 0;
  background: rgba(252,248,241,0.95);
  box-shadow: var(--shadow-sm);
}
.site-header__inner {
  max-width: 1280px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
.site-header__logo { display: flex; align-items: center; gap: 0.6rem; }
.site-header__logo-img { width: 44px; height: 44px; transition: width var(--transition), height var(--transition); }
.site-header--scrolled .site-header__logo-img { width: 34px; height: 34px; }
.site-header__logo-text { font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; color: var(--c-teal-900); }

.nav--desktop { display: flex; align-items: center; gap: 2rem; }
.nav__list { display: flex; gap: 1.6rem; }
.nav__link { font-weight: 500; color: var(--c-ink); position: relative; padding: 0.3rem 0; }
.nav__link::after { content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--c-coral-500); transition: width var(--transition); }
.nav__link:hover::after, .nav__link--active::after { width: 100%; }
.nav__link--active { color: var(--c-teal-800); }
.nav__cta { white-space: nowrap; }

.nav__toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 10px;
  width: 44px; height: 44px; align-items: center; justify-content: center;
}
.nav__toggle-bar { width: 24px; height: 2.5px; background: var(--c-teal-900); border-radius: 2px; transition: transform var(--transition), opacity var(--transition); }

@media (max-width: 900px) {
  .nav--desktop { display: none; }
  .nav__toggle { display: flex; }
}


.mobile-menu {
  position: fixed; inset: 0; z-index: 500;
  background: linear-gradient(135deg, var(--c-teal-900), var(--c-teal-950));
  clip-path: polygon(100% 0%, 100% 0%, 100% 0%, 100% 0%);
  transition: clip-path 0.7s cubic-bezier(.65,0,.35,1);
  display: flex; align-items: center; justify-content: center;
  visibility: hidden;
}
.mobile-menu--open {
  clip-path: polygon(-10% -10%, 110% -10%, 110% 110%, -10% 110%);
  visibility: visible;
}
.mobile-menu__close {
  position: absolute; top: 1.6rem; right: 1.6rem;
  background: rgba(255,255,255,0.1); border: none; color: var(--c-white);
  width: 48px; height: 48px; border-radius: 50%; font-size: 1.3rem; cursor: pointer;
}
.mobile-menu__list { display: flex; flex-direction: column; gap: 1.4rem; text-align: center; }
.mobile-menu__list li { opacity: 0; transform: translateY(14px); transition: opacity 0.4s ease, transform 0.4s ease; }
.mobile-menu__list--visible li { opacity: 1; transform: translateY(0); }
.mobile-menu__list--visible li:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu__list--visible li:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu__list--visible li:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu__list--visible li:nth-child(4) { transition-delay: 0.2s; }
.mobile-menu__list--visible li:nth-child(5) { transition-delay: 0.25s; }
.mobile-menu__list--visible li:nth-child(6) { transition-delay: 0.3s; }
.mobile-menu__list a { font-family: var(--font-head); font-size: 1.6rem; color: var(--c-cream-50); font-weight: 600; }
.mobile-menu__list a:hover { color: var(--c-coral-400); }
.mobile-menu__divider { margin-top: 0.8rem; padding-top: 0.8rem; border-top: 1px solid rgba(255,255,255,0.15); }


.tab-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 300;
  background: var(--c-white);
  box-shadow: 0 -6px 20px rgba(15,40,35,0.12);
  justify-content: space-around; align-items: center;
  padding: 0.4rem 0.2rem calc(0.4rem + env(safe-area-inset-bottom));
}
.tab-bar__link {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  font-size: 0.65rem; color: var(--c-ink-soft); background: none; border: none; cursor: pointer;
  min-width: 44px; min-height: 44px; justify-content: center;
  transition: color var(--transition);
}
.tab-bar__link i { font-size: 1.2rem; }
.tab-bar__link--active, .tab-bar__link:hover { color: var(--c-coral-500); }

@media (max-width: 640px) {
  .tab-bar { display: flex; }
  body { padding-bottom: 68px; }
}


.hero {
  position: relative;
  padding: var(--space-4) 1.5rem var(--space-5);
  overflow: hidden;
}
.hero__blob { position: absolute; z-index: 0; filter: blur(0); }
.hero__blob--one {
  width: 620px; height: 620px; top: -180px; right: -160px;
  background: var(--c-teal-800); border-radius: var(--r-blob-1); opacity: 0.95;
}
.hero__blob--two {
  width: 340px; height: 340px; bottom: -120px; left: -100px;
  background: var(--c-coral-500); border-radius: var(--r-blob-3); opacity: 0.85;
}
.hero__inner {
  position: relative; z-index: 1;
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--space-4);
  align-items: center;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-weight: 600; color: var(--c-coral-600); margin-bottom: 1em;
  font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.04em;
}
.hero__title { font-size: clamp(2.2rem, 1.6rem + 3.2vw, 3.8rem); color: var(--c-white); margin-bottom: 0.5em; }
.hero__subtitle { color: rgba(255,255,255,0.88); font-size: 1.15rem; max-width: 52ch; margin-bottom: 1.6em; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.4em; }
.hero__note { color: rgba(255,255,255,0.7); max-width: 50ch; }
.hero__figure {
  border-radius: var(--r-blob-2);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid rgba(255,255,255,0.15);
}
.hero__figure img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.hero__figcaption { display: none; }

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__figure { max-width: 420px; margin: 0 auto; }
}


.intro { padding: var(--space-4) 1.5rem; background: var(--c-cream-100); }
.intro__inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: var(--space-4); align-items: center;
}
.intro__figure {
  border-radius: var(--r-blob-4);
  overflow: hidden; box-shadow: var(--shadow-md);
}
.intro__figure img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.intro__figcaption { padding: 0.6rem 0; font-size: 0.85rem; color: var(--c-ink-soft); }
.intro__facts { display: grid; gap: 1rem; margin-top: 1.5rem; }
.intro__fact { background: var(--c-white); border-radius: var(--r-sm); padding: 1rem 1.2rem; box-shadow: var(--shadow-sm); }
.intro__fact dt { font-weight: 700; color: var(--c-teal-800); margin-bottom: 0.2em; }
.intro__fact dd { margin: 0; color: var(--c-ink-soft); }

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


.steps { padding: var(--space-5) 1.5rem; max-width: 1280px; margin: 0 auto; }
.steps__header { text-align: center; max-width: 700px; margin: 0 auto var(--space-4); }
.steps__header .section__subtitle { margin: 0 auto; }
.steps__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; align-items: start; }
.step-card {
  background: var(--c-white); border-radius: var(--r-md);
  padding: 2.2rem 1.8rem; box-shadow: var(--shadow-md);
  position: relative; border-top: 5px solid var(--c-teal-700);
  transition: transform var(--transition), box-shadow var(--transition);
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.step-card--mid { margin-top: 2rem; border-top-color: var(--c-coral-500); }
.step-card__number {
  font-family: var(--font-head); font-size: 2.4rem; font-weight: 700;
  color: var(--c-cream-200); position: absolute; top: 1rem; right: 1.4rem;
}
.step-card__icon {
  width: 56px; height: 56px; border-radius: var(--r-blob-3);
  background: var(--c-teal-800); color: var(--c-white);
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 1.2rem;
}
.step-card__title { font-size: 1.3rem; margin-bottom: 0.8rem; }
.step-card__list dt { font-weight: 700; color: var(--c-teal-800); margin-top: 0.8rem; }
.step-card__list dt:first-child { margin-top: 0; }
.step-card__list dd { margin: 0.2rem 0 0; color: var(--c-ink-soft); font-size: 0.95rem; }

@media (max-width: 900px) {
  .steps__grid { grid-template-columns: 1fr; }
  .step-card--mid { margin-top: 0; }
}


.masonry-section { padding: var(--space-5) 1.5rem; background: var(--c-teal-950); }
.masonry-section__header { max-width: 1280px; margin: 0 auto var(--space-4); text-align: center; }
.masonry-section__header .section__title { color: var(--c-white); }
.masonry-section__header .section__subtitle { color: rgba(255,255,255,0.7); margin: 0 auto; }
.masonry { max-width: 1280px; margin: 0 auto; column-count: 3; column-gap: 1.6rem; }
.m-card {
  break-inside: avoid; margin-bottom: 1.6rem;
  background: var(--c-cream-50); border-radius: var(--r-md);
  padding: 1.8rem; box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}
.m-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.m-card__icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--c-coral-500); color: var(--c-white);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 1rem;
}
.m-card__title { font-size: 1.2rem; margin-bottom: 0.6rem; }
.m-card p { font-size: 0.95rem; color: var(--c-ink-soft); }
.m-card__dl dt { font-weight: 700; color: var(--c-teal-800); font-size: 0.92rem; margin-top: 0.7rem; }
.m-card__dl dt:first-child { margin-top: 0.3rem; }
.m-card__dl dd { margin: 0.15rem 0 0; font-size: 0.9rem; color: var(--c-ink-soft); }
.m-card meter { width: 100%; height: 12px; margin: 0.6rem 0 0.3rem; }

@media (max-width: 900px) { .masonry { column-count: 2; } }
@media (max-width: 600px) { .masonry { column-count: 1; } }


.split-section {
  padding: var(--space-5) 1.5rem; max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: var(--space-4); align-items: center;
}
.split-section__figure { border-radius: var(--r-blob-1); overflow: hidden; box-shadow: var(--shadow-md); }
.split-section__figure img { width: 100%; aspect-ratio: 5/4; object-fit: cover; }
.split-section__figcaption { padding: 0.6rem 0.2rem; font-size: 0.85rem; color: var(--c-ink-soft); }
.target-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-top: 1.5rem; }
.target-list__item { background: var(--c-cream-100); border-radius: var(--r-sm); padding: 1.1rem 1.3rem; box-shadow: var(--shadow-sm); }
.target-list__item dt { font-weight: 700; color: var(--c-teal-800); display: flex; align-items: center; gap: 0.5em; margin-bottom: 0.3em; }
.target-list__item dd { margin: 0; color: var(--c-ink-soft); font-size: 0.92rem; }

@media (max-width: 860px) {
  .split-section { grid-template-columns: 1fr; }
  .target-list { grid-template-columns: 1fr; }
}


.disclaimer-section { padding: var(--space-4) 1.5rem; }
.disclaimer-section__inner {
  max-width: 980px; margin: 0 auto;
  background: var(--c-cream-100); border-radius: var(--r-lg);
  padding: 2.4rem; display: flex; gap: 1.5rem;
  box-shadow: var(--shadow-sm); border: 1px solid var(--c-cream-200);
}
.disclaimer-section__icon {
  flex-shrink: 0; width: 52px; height: 52px; border-radius: 50%;
  background: var(--c-teal-800); color: var(--c-white);
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.disclaimer-section__title { font-size: 1.3rem; margin-bottom: 0.5rem; }

@media (max-width: 600px) { .disclaimer-section__inner { flex-direction: column; } }


.cta-band { padding: var(--space-4) 1.5rem; }
.cta-band__inner {
  max-width: 900px; margin: 0 auto; text-align: center;
  background: linear-gradient(135deg, var(--c-teal-800), var(--c-teal-950));
  border-radius: var(--r-blob-4);
  padding: var(--space-4) var(--space-3);
  box-shadow: var(--shadow-lg);
}
.cta-band__title { color: var(--c-white); font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.2rem); }
.cta-band__text { color: rgba(255,255,255,0.82); max-width: 60ch; margin: 0 auto 1.6rem; }


.page-hero { position: relative; padding: var(--space-4) 1.5rem var(--space-3); overflow: hidden; }
.page-hero__blob {
  position: absolute; z-index: 0; top: -160px; right: -140px;
  width: 480px; height: 480px; background: var(--c-teal-800); border-radius: var(--r-blob-2); opacity: 0.95;
}
.page-hero--about .page-hero__blob { background: var(--c-teal-700); border-radius: var(--r-blob-1); }
.page-hero--themen .page-hero__blob { background: var(--c-coral-500); border-radius: var(--r-blob-3); opacity: 0.9; }
.page-hero--contact .page-hero__blob { background: var(--c-teal-900); border-radius: var(--r-blob-4); }
.page-hero__inner { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; text-align: center; }
.page-hero__title { color: var(--c-white); font-size: clamp(1.9rem, 1.5rem + 2vw, 3rem); margin-bottom: 0.5em; }
.page-hero__subtitle { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 60ch; margin: 0 auto; }


.about-intro { padding: var(--space-4) 1.5rem; max-width: 1200px; margin: 0 auto; }
.about-intro__inner { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: var(--space-4); align-items: center; }
.about-intro__figure { border-radius: var(--r-blob-3); overflow: hidden; box-shadow: var(--shadow-md); }
.about-intro__figure img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about-intro__figcaption { padding: 0.6rem 0.2rem; font-size: 0.85rem; color: var(--c-ink-soft); }

.method-section { padding: var(--space-4) 1.5rem; background: var(--c-cream-100); }
.method-section__title { text-align: center; max-width: 900px; margin: 0 auto var(--space-3); }
.method-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; }
.method-card { background: var(--c-white); border-radius: var(--r-md); padding: 1.8rem; box-shadow: var(--shadow-sm); transition: transform var(--transition), box-shadow var(--transition); }
.method-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.method-card__icon { width: 46px; height: 46px; border-radius: 14px; background: var(--c-teal-800); color: var(--c-white); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; font-size: 1.1rem; }
.method-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.method-card p { font-size: 0.9rem; color: var(--c-ink-soft); }

@media (max-width: 900px) { .method-grid { grid-template-columns: repeat(2, 1fr); } .about-intro__inner { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .method-grid { grid-template-columns: 1fr; } }

.about-split { padding: var(--space-4) 1.5rem; max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--space-4); align-items: center; }
.about-split__dl { display: grid; gap: 1rem; margin-top: 1.4rem; }
.about-split__dl dt { font-weight: 700; color: var(--c-teal-800); }
.about-split__dl dd { margin: 0.2rem 0 0; color: var(--c-ink-soft); }
.about-split__figure { border-radius: var(--r-blob-1); overflow: hidden; box-shadow: var(--shadow-md); }
.about-split__figure img { width: 100%; aspect-ratio: 5/4; object-fit: cover; }
.about-split__figcaption { padding: 0.6rem 0.2rem; font-size: 0.85rem; color: var(--c-ink-soft); }

@media (max-width: 900px) { .about-split { grid-template-columns: 1fr; } }

.quote-block { padding: var(--space-4) 1.5rem var(--space-5); }
.quote-block__inner { max-width: 820px; margin: 0 auto; text-align: center; }
.quote-block__text { font-family: var(--font-head); font-size: clamp(1.3rem, 1.1rem + 1vw, 1.8rem); color: var(--c-teal-900); font-weight: 600; }


.topic-detail {
  padding: var(--space-4) 1.5rem; max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: var(--space-4); align-items: center;
}
.topic-detail--alt { grid-template-columns: 1.1fr 0.9fr; }
.topic-detail--alt .topic-detail__content { order: 1; }
.topic-detail--alt .topic-detail__figure { order: 2; }
.topic-detail__figure { border-radius: var(--r-blob-2); overflow: hidden; box-shadow: var(--shadow-md); }
.topic-detail__figure--right { border-radius: var(--r-blob-3); }
.topic-detail__figure img { width: 100%; aspect-ratio: 5/4; object-fit: cover; }
.topic-detail__figcaption { padding: 0.6rem 0.2rem; font-size: 0.85rem; color: var(--c-ink-soft); }
.topic-detail__index { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--c-coral-600); letter-spacing: 0.1em; }
.topic-detail__dl { display: grid; gap: 0.9rem; margin-top: 1.2rem; }
.topic-detail__dl dt { font-weight: 700; color: var(--c-teal-800); }
.topic-detail__dl dd { margin: 0.15rem 0 0; color: var(--c-ink-soft); }

@media (max-width: 900px) {
  .topic-detail, .topic-detail--alt { grid-template-columns: 1fr; }
  .topic-detail--alt .topic-detail__content, .topic-detail--alt .topic-detail__figure { order: initial; }
}

.compare-table { border-radius: var(--r-sm); overflow: hidden; box-shadow: var(--shadow-sm); margin-top: 1rem; }
.compare-table__row { display: grid; grid-template-columns: 1.2fr 1fr 1fr; }
.compare-table__row > span { padding: 0.8rem 1rem; background: var(--c-white); font-size: 0.9rem; border-bottom: 1px solid var(--c-cream-200); }
.compare-table__row--head > span { background: var(--c-teal-800); color: var(--c-white); font-weight: 700; }
.compare-table__row:last-child > span { border-bottom: none; }

@media (max-width: 560px) {
  .compare-table__row { grid-template-columns: 1fr; }
  .compare-table__row > span:first-child { font-weight: 700; background: var(--c-cream-100); }
}


.contact-section { padding: var(--space-4) 1.5rem var(--space-5); max-width: 1280px; margin: 0 auto; }
.contact-section__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--space-4); align-items: start; }
.contact-card { background: var(--c-white); border-radius: var(--r-lg); padding: 2.4rem; box-shadow: var(--shadow-lg); }

.contact-form__progress { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 2rem; }
.contact-form__step-indicator { display: flex; flex-direction: column; align-items: center; gap: 0.3rem; opacity: 0.4; }
.contact-form__step-indicator--active { opacity: 1; }
.contact-form__step-indicator span { width: 34px; height: 34px; border-radius: 50%; background: var(--c-teal-800); color: var(--c-white); display: flex; align-items: center; justify-content: center; font-weight: 700; }
.contact-form__step-indicator small { font-size: 0.75rem; color: var(--c-ink-soft); }
.contact-form__step-line { flex: 1; height: 2px; background: var(--c-cream-200); }

.contact-form__step { display: none; }
.contact-form__step--active { display: block; animation: fadeStep 0.4s ease; }
@keyframes fadeStep { from { opacity: 0; transform: translateX(10px);} to { opacity: 1; transform: translateX(0);} }

.field-group { margin-bottom: 1.4rem; display: flex; flex-direction: column; gap: 0.4rem; }
.field-group label { font-weight: 600; font-size: 0.92rem; color: var(--c-teal-900); }
.field-group input[type=text], .field-group input[type=email], .field-group textarea {
  border: 2px solid var(--c-cream-200); border-radius: var(--r-xs);
  padding: 0.8rem 1rem; font-family: var(--font-body); font-size: 0.98rem;
  background: var(--c-cream-50); transition: border-color var(--transition);
  min-height: 44px;
}
.field-group input:focus, .field-group textarea:focus { outline: none; border-color: var(--c-teal-600); }
.field-hint { font-size: 0.8rem; color: var(--c-ink-soft); }
.field-group--checkbox { flex-direction: row; align-items: flex-start; gap: 0.7rem; }
.field-group--checkbox input { margin-top: 0.3rem; width: 20px; height: 20px; }
.field-group--checkbox label { font-weight: 400; font-size: 0.88rem; }
.field-error { color: var(--c-coral-600); font-size: 0.88rem; min-height: 1.2em; margin-bottom: 0.8rem; }

.contact-form__actions { display: flex; justify-content: flex-end; margin-top: 1rem; }
.contact-form__actions--split { justify-content: space-between; }

.contact-info { display: grid; gap: 1.6rem; }
.contact-info__block { background: var(--c-cream-100); border-radius: var(--r-md); padding: 1.8rem; box-shadow: var(--shadow-sm); }
.contact-info__block h2 { font-size: 1.15rem; margin-bottom: 0.8rem; }
.contact-info__list { display: grid; gap: 0.7rem; }
.contact-info__list li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.95rem; }
.contact-info__dl { display: grid; gap: 0.7rem; margin-top: 1rem; }
.contact-info__dl dt { font-weight: 700; color: var(--c-teal-800); font-size: 0.9rem; }
.contact-info__dl dd { margin: 0.1rem 0 0; color: var(--c-ink-soft); font-size: 0.88rem; }
.contact-info__figure { border-radius: var(--r-blob-4); overflow: hidden; box-shadow: var(--shadow-md); }
.contact-info__figure img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.contact-info__figure figcaption { padding: 0.5rem 0.9rem; font-size: 0.8rem; color: var(--c-ink-soft); background: var(--c-white); }
.contact-info__map { border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-sm); }

@media (max-width: 960px) { .contact-section__grid { grid-template-columns: 1fr; } }


.thanks-section { padding: var(--space-5) 1.5rem; display: flex; justify-content: center; }
.thanks-card {
  max-width: 560px; text-align: center; background: var(--c-white);
  border-radius: var(--r-lg); padding: var(--space-4) 2rem; box-shadow: var(--shadow-lg);
}
.thanks-check { margin-bottom: 1.4rem; }
.thanks-check__circle {
  stroke: var(--c-teal-700);
  stroke-dasharray: 327; stroke-dashoffset: 327;
  animation: drawCircle 0.8s ease forwards;
}
.thanks-check__mark {
  stroke: var(--c-coral-500);
  stroke-dasharray: 70; stroke-dashoffset: 70;
  animation: drawCheck 0.5s ease forwards 0.7s;
}
@keyframes drawCircle { to { stroke-dashoffset: 0; } }
@keyframes drawCheck { to { stroke-dashoffset: 0; } }
.thanks-card__title { opacity: 0; animation: fadeUp 0.6s ease forwards 1.2s; }
.thanks-card__text { opacity: 0; animation: fadeUp 0.6s ease forwards 1.4s; color: var(--c-ink-soft); }
.thanks-card .btn { opacity: 0; animation: fadeUp 0.6s ease forwards 1.6s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px);} to { opacity: 1; transform: translateY(0);} }


.breadcrumb { max-width: 1000px; margin: 1.5rem auto 0; padding: 0 1.5rem; }
.breadcrumb ol { display: flex; gap: 0.5rem; font-size: 0.85rem; color: var(--c-ink-soft); }
.breadcrumb li:not(:last-child)::after { content: '/'; margin-left: 0.5rem; }

.legal-hero { max-width: 1000px; margin: 0 auto; padding: var(--space-3) 1.5rem 1rem; }
.legal-hero h1 { font-size: clamp(1.8rem, 1.5rem + 1.5vw, 2.6rem); }

.legal-cards { max-width: 1000px; margin: 0 auto; padding: 1rem 1.5rem var(--space-5); display: grid; gap: 1.6rem; }
.legal-card { background: var(--c-white); border-radius: var(--r-md); padding: 2rem 2.2rem; box-shadow: var(--shadow-md); }
.legal-card h2 { font-size: 1.25rem; }
.legal-table { width: 100%; border-collapse: collapse; margin-top: 0.8rem; }
.legal-table th, .legal-table td { text-align: left; padding: 0.6rem 0.8rem; border-bottom: 1px solid var(--c-cream-200); font-size: 0.92rem; }
.legal-table th { color: var(--c-teal-800); width: 40%; font-weight: 700; }


.site-footer { background: var(--c-teal-950); color: rgba(255,255,255,0.85); padding: 2.2rem 1.5rem 1.2rem; }
.site-footer__row {
  max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem; padding-bottom: 1.6rem; border-bottom: 1px solid rgba(255,255,255,0.12);
}
.site-footer__brand { display: flex; align-items: center; gap: 0.6rem; font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; color: var(--c-white); }
.site-footer__nav ul { display: flex; flex-wrap: wrap; gap: 1.2rem; justify-content: center; }
.site-footer__nav a { color: rgba(255,255,255,0.75); font-size: 0.9rem; }
.site-footer__nav a:hover { color: var(--c-coral-400); }
.site-footer__contact { display: flex; flex-direction: column; gap: 0.4rem; font-size: 0.88rem; }
.site-footer__contact a, .site-footer__contact span { color: rgba(255,255,255,0.75); display: flex; align-items: center; gap: 0.5em; }
.site-footer__bottom { max-width: 1280px; margin: 0 auto; padding-top: 1rem; text-align: center; }
.site-footer__bottom small { color: rgba(255,255,255,0.55); }

@media (max-width: 800px) {
  .site-footer__row { flex-direction: column; text-align: center; }
  .site-footer__contact { align-items: center; }
}


.cookie-consent { position: fixed; bottom: 1.2rem; left: 50%; transform: translateX(-50%); z-index: 900; width: min(94vw, 460px); }
.tab-bar ~ .cookie-consent, body:has(.tab-bar) .cookie-consent { bottom: 5.4rem; }
.cookie-consent__card {
  background: var(--c-white); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); padding: 1.4rem 1.6rem;
  transition: all var(--transition);
  overflow: hidden;
}
.cookie-consent__text { font-size: 0.9rem; margin-bottom: 1rem; color: var(--c-ink-soft); }
.cookie-consent__actions { display: flex; gap: 0.8rem; justify-content: flex-end; }
.cookie-consent__panel h3 { font-size: 1.1rem; margin-bottom: 1rem; }
.cookie-consent__category { margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--c-cream-200); }
.cookie-consent__category:last-of-type { border-bottom: none; }
.cookie-consent__category-head { display: flex; justify-content: space-between; align-items: center; font-weight: 600; margin-bottom: 0.3rem; }
.cookie-consent__category-head input { width: 40px; height: 22px; }


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

.pace { z-index: 9999; }
.pace .pace-progress { background: var(--c-coral-500); height: 3px; }
.pace .pace-progress-inner { box-shadow: 0 0 10px var(--c-coral-500), 0 0 5px var(--c-coral-500); }
.pace .pace-activity { display: none; }