:root {
  --bg: #f7f4ef;
  --bg-deep: #efe8de;
  --ink: #1f2a2e;
  --muted: #5b6a70;
  --accent: #127c78;
  --accent-strong: #0f6662;
  --accent-soft: #e0f2f1;
  --sun: #f2b84b;
  --card: #ffffff;
  --border: #e2dad1;
  --shadow: 0 20px 50px rgba(31, 42, 46, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top right, #f7ead0 0%, var(--bg) 40%, #f4f1ea 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(247, 244, 239, 0.8);
  border-bottom: 1px solid rgba(226, 218, 209, 0.7);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-badge {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: var(--accent);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 800;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: var(--muted);
}

.nav-link {
  padding: 6px 10px;
  border-radius: 999px;
  transition: all 0.2s ease;
}

.nav-link:hover {
  color: var(--accent);
  background: var(--accent-soft);
}

.hero {
  position: relative;
  padding: 70px 0 40px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
  align-items: center;
}

.hero-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 52px);
  margin: 0 0 18px;
  line-height: 1.1;
}

.hero-sub {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 24px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.chip {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 600;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 12px 30px rgba(18, 124, 120, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(18, 124, 120, 0.3);
}

.btn-secondary {
  background: white;
  border: 1px solid var(--border);
  color: var(--ink);
}

.hero-card {
  background: var(--card);
  padding: 26px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.hero-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.hero-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 8px;
}

.orb {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 184, 75, 0.35) 0%, rgba(242, 184, 75, 0) 70%);
  top: -120px;
  right: -80px;
}

.section {
  padding: 50px 0;
}

.section-title {
  font-size: 28px;
  margin-bottom: 18px;
}

.section-sub {
  color: var(--muted);
  margin-bottom: 24px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.card {
  background: var(--card);
  border-radius: 20px;
  padding: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 26px rgba(31, 42, 46, 0.06);
}

.card h4 {
  margin: 0 0 10px;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.steps {
  display: grid;
  gap: 14px;
}

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

.step-badge {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-weight: 800;
  display: grid;
  place-items: center;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: var(--card);
  border-radius: 16px;
  padding: 16px 18px;
  border: 1px solid var(--border);
}

.faq-item strong {
  display: block;
  margin-bottom: 6px;
}

.privacy-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 26px;
  border-radius: 24px;
  background: var(--accent-soft);
  border: 1px solid #cce7e6;
}

.footer {
  padding: 32px 0 50px;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}

.fade-in {
  animation: fadeIn 0.8s ease both;
}

.rise {
  animation: rise 0.8s ease both;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 720px) {
  .nav-actions {
    display: none;
  }
  .hero {
    padding-top: 50px;
  }
}
