:root {
  --sage: #89ab8f;
  --sage-deep: #5f8069;
  --chick: #f2c75d;
  --terracotta: #c9724f;
  --forest: #1f4e35;
  --earth: #654b3f;
  --cream: #fcf9f1;
  --paper: #fffef8;
  --line: #ded7c8;
  --text: #2e2c2a;
  --muted: #5e5b57;
  --danger: #c0392b;
  --shadow: 0 14px 35px rgba(53, 44, 34, 0.11);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 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 10% -10%, rgba(242, 199, 93, 0.45) 0, rgba(242, 199, 93, 0) 40%),
    radial-gradient(circle at 90% 20%, rgba(137, 171, 143, 0.4) 0, rgba(137, 171, 143, 0) 30%),
    radial-gradient(circle at 20% 90%, rgba(201, 114, 79, 0.28) 0, rgba(201, 114, 79, 0) 28%),
    var(--cream);
  line-height: 1.6;
}

img {
  max-width: 100%;
}

a {
  color: var(--forest);
}

a:hover {
  color: var(--sage-deep);
}

.skip-link {
  position: absolute;
  top: -120px;
  left: 12px;
  background: var(--forest);
  color: #fff;
  z-index: 999;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: top 0.25s ease;
}

.skip-link:focus {
  top: 12px;
}

:focus-visible {
  outline: 3px solid #2548d4;
  outline-offset: 2px;
}

.container {
  width: min(calc(100% - 2.2rem), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(252, 249, 241, 0.88);
  border-bottom: 1px solid rgba(101, 75, 63, 0.14);
}

.site-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(130deg, var(--chick), var(--terracotta));
  box-shadow: inset 0 -4px 8px rgba(0, 0, 0, 0.15);
}

.nav-inline {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.nav-inline a,
.nav-inline button {
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: none;
  font: inherit;
}

.nav-inline a:hover,
.nav-inline a[aria-current="page"] {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.82);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
}

.lang-switch a {
  padding: 0.42rem 0.82rem;
  text-decoration: none;
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 700;
}

.lang-switch a[aria-current="true"] {
  background: var(--forest);
  color: #fff;
}

main {
  padding-block-end: 4rem;
}

.hero {
  padding-block: 4rem 2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.hero h1,
.section-title,
.page-title {
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.7rem);
  max-width: 14ch;
}

.hero .lead {
  font-size: clamp(1.05rem, 2.2vw, 1.24rem);
  color: var(--muted);
  max-width: 55ch;
}

.highlight {
  color: var(--forest);
  position: relative;
}

.highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.04em;
  width: 100%;
  height: 0.22em;
  background: rgba(242, 199, 93, 0.55);
  z-index: -1;
  border-radius: 999px;
}

.cta-row {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
  padding: 0.86rem 1.1rem;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #201b17;
  background: linear-gradient(120deg, var(--chick), #f0a052);
  box-shadow: var(--shadow);
}

.btn-secondary {
  color: var(--forest);
  border-color: rgba(31, 78, 53, 0.35);
  background: rgba(255, 255, 255, 0.7);
}

.hero-cards {
  position: relative;
  display: grid;
  gap: 1rem;
}

.mock-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.1rem;
  box-shadow: var(--shadow);
}

.mock-card h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: 1.08rem;
}

.mock-bar {
  border-radius: 999px;
  height: 12px;
  overflow: hidden;
  background: #ece5d7;
}

.mock-bar > span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--sage), var(--terracotta));
}

.mock-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.mini-chip {
  background: #f7f2e8;
  border: 1px solid #ede2cd;
  border-radius: 14px;
  padding: 0.55rem 0.72rem;
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--earth);
}

.float-egg,
.float-star {
  position: absolute;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.15);
  animation: bob 4.2s ease-in-out infinite;
}

.float-egg {
  left: -10px;
  top: -10px;
  background: #fffef9;
}

.float-star {
  right: -8px;
  bottom: -15px;
  animation-delay: 1.2s;
  background: linear-gradient(160deg, #fff2c3, #f7cd65);
}

@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.section {
  padding-block: 2.8rem;
}

.section-title {
  font-size: clamp(1.68rem, 3.5vw, 2.45rem);
  margin-bottom: 1rem;
}

.section-intro {
  color: var(--muted);
  max-width: 62ch;
}

.feature-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.74);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  padding: 1rem 1rem 1.1rem;
}

.feature-card h3 {
  margin-top: 0;
  margin-bottom: 0.45rem;
}

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

.feature-icon {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  margin-bottom: 0.8rem;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: var(--earth);
}

.feature-icon.sage {
  background: rgba(137, 171, 143, 0.3);
}

.feature-icon.chick {
  background: rgba(242, 199, 93, 0.3);
}

.feature-icon.terra {
  background: rgba(201, 114, 79, 0.24);
}

.metrics {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.metric {
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: #fff;
  padding: 0.95rem;
}

.metric strong {
  display: block;
  font-size: 1.45rem;
  color: var(--earth);
}

.metric span {
  color: var(--muted);
  font-size: 0.94rem;
}

.faq {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
}

.faq details {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.8rem 0.95rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
}

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

.privacy-bloc {
  margin-top: 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(137, 171, 143, 0.12), rgba(255, 255, 255, 0.88));
  padding: 1.05rem;
}

.privacy-bloc h3 {
  margin: 0 0 0.5rem;
}

.privacy-bloc p {
  margin: 0 0 0.8rem;
  color: var(--muted);
}

.page-shell {
  padding-top: 2.8rem;
}

.page-title {
  font-size: clamp(2rem, 5vw, 3.1rem);
  margin-bottom: 0.85rem;
}

.page-lead {
  max-width: 65ch;
  color: var(--muted);
  margin-bottom: 1.6rem;
}

.content-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
  padding: clamp(1rem, 2vw, 2rem);
}

.prose h2 {
  margin-top: 1.5rem;
  margin-bottom: 0.4rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.52rem;
}

.prose p,
.prose li {
  color: var(--muted);
}

.prose ul {
  margin: 0.5rem 0 0;
  padding-left: 1.2rem;
}

.notice {
  padding: 0.7rem 0.9rem;
  border-left: 4px solid var(--terracotta);
  background: rgba(201, 114, 79, 0.12);
  border-radius: 6px;
}

.form-grid {
  display: grid;
  gap: 0.9rem;
}

label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

input,
textarea {
  font: inherit;
  color: var(--text);
  width: 100%;
  border: 1px solid #cabca6;
  background: #fff;
  border-radius: 12px;
  padding: 0.7rem 0.8rem;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.helper {
  margin-top: 0.25rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.error {
  color: var(--danger);
  font-size: 0.93rem;
  min-height: 1.15rem;
}

.status {
  margin-top: 0.75rem;
  font-weight: 700;
  min-height: 1.2rem;
}

.status[data-state="success"] {
  color: var(--forest);
}

.status[data-state="error"] {
  color: var(--danger);
}

.hp-field {
  position: absolute;
  left: -5000px;
  opacity: 0;
  pointer-events: none;
}

.site-footer {
  border-top: 1px solid rgba(101, 75, 63, 0.16);
  background: rgba(255, 255, 255, 0.75);
  margin-top: 3.2rem;
}

.site-footer-inner {
  min-height: 85px;
  padding-block: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.footer-links {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
}

.footer-links a {
  text-decoration: none;
  font-weight: 700;
  color: var(--text);
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.42rem 0.72rem;
}

.footer-links a:hover {
  border-color: var(--line);
  background: #fff;
}

.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 740px) {
  .site-header-inner {
    min-height: 72px;
  }

  .feature-grid,
  .metrics {
    grid-template-columns: 1fr;
  }

  .nav-inline {
    gap: 0.4rem;
  }

  .brand-label {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
