﻿:root {
  --bg: #f7f7f2;
  --surface: #fffef9;
  --surface-2: #f1efe6;
  --text: #1f2a24;
  --muted: #5f6b64;
  --line: #d8d4c8;
  --accent: #1f8a70;
  --accent-strong: #166a56;
  --radius-lg: 20px;
  --radius-md: 12px;
  --shadow-soft: 0 18px 45px rgba(24, 36, 30, 0.08);
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 12% 18%, #ece9da 0%, transparent 32%),
    radial-gradient(circle at 88% 22%, #dfebe5 0%, transparent 36%),
    var(--bg);
  min-height: 100vh;
  line-height: 1.55;
  position: relative;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  letter-spacing: -0.02em;
}

p {
  margin: 0;
}

a {
  color: inherit;
}

.bg-orb {
  position: fixed;
  z-index: -1;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  filter: blur(60px);
  opacity: 0.22;
}

.orb-a {
  background: #9ad9c4;
  top: -120px;
  right: -100px;
}

.orb-b {
  background: #b8c7f5;
  bottom: -140px;
  left: -80px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
  background: rgba(247, 247, 242, 0.82);
  border-bottom: 1px solid rgba(216, 212, 200, 0.9);
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.brand img {
  height: 64px;
  width: auto;
  display: block;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-btn {
  border: 1px solid var(--line);
  background: #ffffffcc;
  color: var(--muted);
  border-radius: 999px;
  font: 600 13px/1 "Manrope", sans-serif;
  min-width: 40px;
  height: 36px;
  cursor: pointer;
}

.lang-btn[aria-pressed="true"] {
  color: var(--text);
  border-color: var(--text);
  background: #ffffff;
}

main {
  width: min(var(--max-width), calc(100% - 28px));
  margin: 0 auto;
  padding: 34px 0 28px;
}

.section {
  margin: 20px 0;
  border-radius: var(--radius-lg);
  padding: 42px clamp(18px, 4.2vw, 46px);
  border: 1px solid transparent;
}

.section h2 {
  font-size: clamp(28px, 4.2vw, 43px);
  margin-bottom: 18px;
}

.section-surface {
  background: var(--surface);
  border-color: var(--line);
  box-shadow: var(--shadow-soft);
}

.hero {
  background: linear-gradient(135deg, #f6f3e9, #f9faf7);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.hero h1 {
  font-size: clamp(34px, 6vw, 64px);
  line-height: 0.98;
  max-width: 12ch;
}

.hero-copy {
  margin-top: 18px;
  max-width: 63ch;
  color: var(--muted);
  font-size: clamp(16px, 2.2vw, 20px);
}

.hero-cta {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 20px rgba(31, 138, 112, 0.23);
}

.btn-primary:hover {
  background: var(--accent-strong);
}

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--text);
  background: #ffffffbf;
}

.hero-stats {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero-stats article {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 13px;
  background: #ffffffe0;
}

.hero-stats strong {
  display: block;
  font-size: 20px;
}

.hero-stats span {
  color: var(--muted);
  font-size: 14px;
}

.steps-grid,
.cards-grid,
.trust-grid {
  display: grid;
  gap: 12px;
}

.steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-card,
.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px;
}

.step-number {
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 10px;
}

.step-card h3,
.feature-card h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.step-card p,
.feature-card p,
.trust-grid p,
.faq-section p,
.final-cta p {
  color: var(--muted);
}

.cards-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.trust-grid p {
  margin: 0;
  border-left: 3px solid var(--accent);
  padding: 6px 0 6px 12px;
}

.caps-section {
  text-align: center;
}

.caps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin-top: 2rem;
}

.cap-chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-size: 0.875rem;
  background: var(--surface);
  white-space: nowrap;
  color: var(--text);
  font-weight: 500;
}

.faq-section details {
  border-top: 1px solid var(--line);
  padding: 16px 0;
}

.faq-section details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-section summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  font-size: 18px;
}

.faq-section summary::-webkit-details-marker {
  display: none;
}

.faq-section details p {
  margin-top: 9px;
}

.final-cta {
  text-align: center;
  background: linear-gradient(135deg, #f1efe6, #eceadb);
  border: 1px solid var(--line);
}

.final-cta p {
  font-size: 18px;
  margin-top: 9px;
}

.final-cta .hero-cta {
  justify-content: center;
}

.legal-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding-top: 0;
  padding-bottom: 8px;
}

.legal-links a {
  color: var(--muted);
  font-weight: 600;
}

.legal-links a:hover {
  color: var(--text);
}

@media (max-width: 960px) {
  .steps-grid,
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 14px;
  }

  .brand {
    min-height: 76px;
  }

  .brand img {
    height: 52px;
  }

  .header-actions {
    gap: 6px;
  }

  main {
    width: calc(100% - 16px);
    padding-top: 16px;
  }

  .section {
    padding: 26px 16px;
    border-radius: 15px;
  }

  .hero h1 {
    max-width: none;
  }

  .legal-links {
    flex-direction: column;
    align-items: center;
  }
}
