:root {
  --bg: #f8faf9;
  --surface: #ffffff;
  --surface-soft: #f3f6f4;
  --text: #23302a;
  --muted: #63706a;
  --accent: #88a495;
  --accent-dark: #5f7968;
  --border: #dde5e0;
  --danger: #bf4141;
  --radius: 0;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  width: min(1120px, calc(100% - 5rem));
  margin: 0 auto;
}

.section {
  padding: 3.5rem 0;
}

.hero {
  padding-top: 2rem;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.hero:before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -5rem;
  width: min(70vw, 780px);
  height: clamp(260px, 42vw, 410px);
  background: radial-gradient(circle at 50% 40%, #dbe8df 0%, #eef4f0 43%, transparent 78%);
  z-index: 0;
  border-radius: 50%;
}

.hero .container {
  position: relative;
  z-index: 1;
  max-width: min(980px, calc(100% - 2rem));
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1.05fr) minmax(220px, 0.75fr);
  justify-content: center;
  align-items: center;
  gap: clamp(1.2rem, 3vw, 2.5rem);
  max-width: 980px;
}

.hero-copy {
  max-width: 58ch;
  padding-right: clamp(0.2rem, 2vw, 1.2rem);
}

.hero-ky {
  margin: 0 0 .45rem;
  display: inline-flex;
  gap: .6rem;
  align-items: center;
  color: var(--accent-dark);
  font-weight: 600;
  letter-spacing: .015em;
  text-transform: uppercase;
  font-size: .79rem;
}

.hero-actions {
  display: flex;
  gap: .7rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.hero-copy h1 {
  margin: 0.1rem 0 0.8rem;
  font-size: clamp(1.9rem, 4.7vw, 2.7rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.section-title {
  margin: 0 0 1rem;
  font-size: 2rem;
}

.lead {
  color: var(--muted);
  max-width: 72ch;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(248, 250, 249, 0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.topbar {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-weight: 700;
  letter-spacing: .2px;
  font-size: 1.15rem;
  color: var(--text);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav a {
  color: var(--text);
  font-weight: 500;
}

.nav a.btn,
.nav a.btn:hover {
  color: #fff;
  text-decoration: none;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .35rem .6rem;
  background: var(--surface);
}

.lang-switcher {
  display: inline-flex;
  gap: .4rem;
  align-items: center;
}

.lang-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  padding: .25rem .45rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: .875rem;
  color: var(--text);
  text-decoration: none;
}

.lang-switcher .active {
  border-color: var(--accent);
  background: #ecf2ee;
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-services { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: 0 4px 16px rgba(23, 34, 24, 0.05);
}

.hero-media img {
  border-radius: var(--radius);
}

ul {
  margin: 0;
  padding-left: 1.1rem;
}

.price-card {
  border-top: 6px solid var(--accent);
  display: flex;
  flex-direction: column;
  gap: .9rem;
}

.price-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border: 1px solid var(--border);
}

.price-title { margin: 0; font-size: 1.25rem; }
.price-value { margin: 0; font-size: 1.5rem; font-weight: 700; color: #2d3a33; }
.price-list { padding-left: 1.1rem; margin: 0; }
.price-list li { margin-bottom: .35rem; }

.btn {
  appearance: none;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  border-radius: var(--radius);
  padding: .66rem 1rem;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn-outline {
  text-decoration: none;
  color: var(--text);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: .66rem 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  background: transparent;
}

.btn:hover { filter: brightness(0.96); }

.btn-secondary {
  background: #1f2a24;
  color: #fff;
}

.nav .btn-secondary {
  padding: .72rem 1.2rem;
  min-width: 118px;
}

.form-wrap {
  display: grid;
  gap: .9rem;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: .35rem;
}

input, textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .75rem .85rem;
  font: inherit;
  background: #fff;
}

.checkbox {
  display: flex;
  align-items: start;
  gap: .45rem;
}

.checkbox input { width: auto; margin-top: .25rem; }

.site-footer {
  border-top: 1px solid var(--border);
  margin-top: 2rem;
  padding: 1.2rem 0 2rem;
  color: #4c5a54;
}

.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; gap: 1rem; flex-wrap: wrap; }

.site-footer li { margin: 0; }

.form-note {
  font-size: .95rem;
  color: var(--muted);
}

.how-grid {
  margin-top: 1rem;
}

.how-grid ol {
  margin: 0;
  padding-left: 1.2rem;
}

.how-grid li + li {
  margin-top: .55rem;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: min(500px, calc(100% - 40px));
  z-index: 100;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(16, 36, 22, 0.18);
  padding: 1rem;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-actions { display: flex; gap: .5rem; margin-top: .9rem; flex-wrap: wrap; }

.cookie-actions button { background: var(--accent-dark); color: #fff; border: 0; border-radius: var(--radius); padding: .55rem .85rem; }
.cookie-actions button.outline { background: transparent; color: var(--accent-dark); border: 1px solid var(--border); }

.content article {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
}

.content h1, .content h2, .content h3 { line-height: 1.35; }

.legal-text {
  white-space: pre-wrap;
  font-size: 0.98rem;
}

.site-hero-image {
  width: min(280px, 100%);
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  border: 6px solid #f8faf9;
  box-shadow: 0 20px 55px rgba(18, 34, 22, 0.16);
}

.hero-media {
  display: flex;
  justify-content: center;
}

@media (max-width: 860px) {
  .container {
    width: min(1120px, calc(100% - 2rem));
  }

  .nav {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: .7rem 1rem 1rem;
    display: none;
  }

  .nav.show {
    display: flex;
  }

  .nav .btn-secondary {
    width: 100%;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero-media {
    margin-top: 1rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: none;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-media {
    display: flex;
    justify-content: center;
  }
}

details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .85rem;
  background: var(--surface);
}

details + details {
  margin-top: .65rem;
}

details summary {
  cursor: pointer;
  font-weight: 600;
}
