:root {
  --bg: #f6f4ee;
  --bg-soft: #ece6da;
  --ink: #171717;
  --ink-soft: #4d4c47;
  --brand: #0e8f71;
  --brand-strong: #066a53;
  --accent: #e8a53b;
  --surface: #fffdf8;
  --surface-strong: #ffffff;
  --line: #d9d2c4;
  --shadow: 0 18px 48px rgba(23, 23, 23, 0.09);
  --radius-lg: 22px;
  --radius-md: 14px;
  --container: min(1120px, 92vw);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: "IBM Plex Sans", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 12% 0%, #fff8e5 0%, transparent 28%),
              radial-gradient(circle at 88% 16%, #d9f7ed 0%, transparent 24%),
              var(--bg);
  line-height: 1.6;
}

.page-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}

.shape {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  opacity: 0.45;
}

.shape-a {
  width: 260px;
  height: 260px;
  background: #ffd992;
  top: 9vh;
  left: -70px;
  animation: driftA 14s ease-in-out infinite;
}

.shape-b {
  width: 340px;
  height: 340px;
  background: #9be5cf;
  right: -120px;
  top: 30vh;
  animation: driftB 18s ease-in-out infinite;
}

.shape-c {
  width: 220px;
  height: 220px;
  background: #f9b2a8;
  bottom: -50px;
  left: 28vw;
  animation: driftC 16s ease-in-out infinite;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  border-bottom: 1px solid rgba(217, 210, 196, 0.65);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Syne", sans-serif;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  aspect-ratio: 1;
  border-radius: 9px;
  background: linear-gradient(145deg, var(--brand), var(--brand-strong));
  color: #fff;
}

.site-nav {
  display: flex;
  gap: 10px;
  align-items: center;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 600;
  transition: background-color 160ms ease, color 160ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--ink);
  background: rgba(14, 143, 113, 0.14);
}

.nav-cta {
  border: 1px solid var(--line);
  background: var(--surface);
}

.lang-switch {
  border: 1px dashed var(--line);
  background: rgba(255, 255, 255, 0.66);
  font-weight: 700;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 10px;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  margin: 4px 0;
}

.section {
  padding: clamp(56px, 8vw, 90px) 0;
}

.hero {
  padding-top: clamp(56px, 9vw, 110px);
}

.page-hero {
  padding-top: clamp(52px, 7.5vw, 92px);
  padding-bottom: clamp(28px, 5vw, 46px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
}

.kicker {
  margin: 0 0 10px;
  color: var(--brand-strong);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1,
h2,
h3 {
  font-family: "Syne", sans-serif;
  margin: 0;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.1rem, 5.5vw, 4rem);
  max-width: 15ch;
}

h2 {
  font-size: clamp(1.6rem, 3.7vw, 2.6rem);
  max-width: 22ch;
  margin-bottom: 14px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.hero-text,
.section-lead {
  max-width: 62ch;
  color: var(--ink-soft);
  margin: 16px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 11px;
  padding: 0 16px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-strong) 100%);
}

.btn-secondary {
  color: var(--ink);
  background: var(--surface);
  border-color: var(--line);
}

.hero-points {
  margin: 0;
  padding-left: 20px;
  color: var(--ink-soft);
}

.hero-card,
.card,
.address-card {
  border-radius: var(--radius-lg);
  background: color-mix(in srgb, var(--surface-strong) 90%, #f7efe0);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 24px;
}

.hero-card p {
  margin: 10px 0;
}

.mini-metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 14px;
}

.metric {
  display: block;
  font-family: "Syne", sans-serif;
  font-size: 1.5rem;
  color: var(--brand-strong);
}

.cards {
  margin-top: 26px;
  display: grid;
  gap: 18px;
}

.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.card {
  padding: 22px;
}

.card p {
  margin: 0 0 10px;
  color: var(--ink-soft);
}

.card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--ink-soft);
}

.card-highlight {
  background: linear-gradient(180deg, #fffdfa, #f8fff9);
  border-color: #cbe6da;
}

.section-alt {
  background: linear-gradient(180deg, transparent 0%, rgba(232, 165, 59, 0.08) 100%);
}

.faq-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-wide {
  display: grid;
  gap: 12px;
}

.flow-list {
  margin: 10px 0 0;
  padding-left: 20px;
  color: var(--ink-soft);
}

.table-wrap {
  padding: 10px;
  overflow-x: auto;
}

.feature-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.feature-table th,
.feature-table td {
  border: 1px solid var(--line);
  padding: 12px;
  text-align: left;
}

.feature-table th {
  font-family: "Syne", sans-serif;
  background: #f5f0e5;
}

.email-link {
  font-size: 1.15rem;
  font-weight: 700;
}

.form-card {
  padding: 24px;
}

.form-lead {
  margin-bottom: 18px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
  color: var(--ink);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 11px 12px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(14, 143, 113, 0.24);
  border-color: var(--brand);
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 500;
  color: var(--ink-soft);
}

.checkbox-row input {
  width: 16px;
  height: 16px;
  margin-top: 3px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  background: var(--surface-strong);
  border-radius: var(--radius-md);
  padding: 12px 14px;
}

summary {
  cursor: pointer;
  font-weight: 700;
}

details p {
  margin: 10px 0 4px;
  color: var(--ink-soft);
}

.section-contact {
  padding-bottom: clamp(62px, 9vw, 110px);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}

.address-card {
  padding: 22px;
  font-style: normal;
}

.address-card p {
  margin: 12px 0;
}

a {
  color: var(--brand-strong);
}

.site-footer {
  border-top: 1px solid rgba(217, 210, 196, 0.9);
  background: rgba(255, 255, 255, 0.5);
}

.footer-wrap {
  min-height: 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 540ms ease, transform 540ms ease;
}

.reveal-delay-1 {
  transition-delay: 120ms;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid,
  .split-grid,
  .form-grid,
  .faq-wrap,
  .contact-grid,
  .cards-2,
  .cards-3 {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 18ch;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 4vw;
    right: 4vw;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    background: color-mix(in srgb, var(--surface-strong) 92%, #f8ecda);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .lang-switch {
    text-align: center;
  }

  .feature-table {
    min-width: 560px;
  }

  .footer-wrap {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 14px 0;
  }
}

@keyframes driftA {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(18px) rotate(8deg); }
}

@keyframes driftB {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@keyframes driftC {
  0%, 100% { transform: translateX(0) scale(1); }
  50% { transform: translateX(18px) scale(1.05); }
}
