:root {
  --bg: #f7f9fb;
  --surface: #ffffff;
  --text: #12212f;
  --muted: #4a5b6d;
  --line: #dce3ea;
  --accent: #5a8f7b;
  --accent-strong: #467362;
  --accent-soft: #dfeee8;
  --shadow: 0 16px 36px -24px rgba(14, 42, 64, 0.45);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --container: min(1100px, calc(100% - 2rem));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Segoe UI", "Inter", sans-serif;
  color: var(--text);
  line-height: 1.6;
  background:
    radial-gradient(1200px 500px at -10% -10%, #d7ece4 0%, transparent 60%),
    radial-gradient(1000px 500px at 120% 10%, #ddeaf7 0%, transparent 52%),
    var(--bg);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: 2.75rem 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(247, 249, 251, 0.88);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(220, 227, 234, 0.8);
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 4.25rem;
  gap: 0.75rem;
}

.topbar-nav {
  display: none;
  align-items: center;
  gap: 0.85rem;
}

.topbar-nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.topbar-nav a:hover,
.topbar-nav a:focus-visible {
  color: var(--accent-strong);
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand {
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  padding: 0.2rem;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  padding: 0.28rem 0.55rem;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  opacity: 0.65;
  transition: opacity 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.lang-btn:hover,
.lang-btn:focus-visible {
  opacity: 0.95;
}

.lang-btn.is-active {
  background: var(--accent-soft);
  color: var(--accent-strong);
  opacity: 1;
}

.topbar-cta {
  text-decoration: none;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  font-weight: 600;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.topbar-cta:hover,
.topbar-cta:focus-visible {
  border-color: var(--accent);
  transform: translateY(-1px);
}

.hero {
  padding-top: 2.25rem;
}

.hero-grid {
  display: grid;
  gap: 1.2rem;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.75rem;
  padding: 0.25rem 0.65rem;
  background: var(--accent-soft);
  border-radius: 999px;
  color: var(--accent-strong);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.2;
}

h1 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 6vw, 3.2rem);
}

.lead {
  color: var(--muted);
  max-width: 46ch;
  margin-bottom: 1.3rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.75rem 1.15rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 24px -16px rgba(70, 115, 98, 0.7);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--accent-strong);
}

.btn-secondary {
  background: var(--surface);
  border-color: var(--line);
}

.hero-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 260px;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-title {
  margin-bottom: 1rem;
  font-size: clamp(1.7rem, 3.6vw, 2.4rem);
}

.section-intro {
  margin: -0.2rem 0 1rem;
  max-width: 62ch;
  color: var(--muted);
}

.benefits-grid,
.services-grid,
.contact-grid,
.about-grid {
  display: grid;
  gap: 1rem;
}

.benefit-card,
.service-card,
.pricing-card,
.faq-item,
.contact-form,
.contact-copy,
.about-copy {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.benefit-card {
  padding: 1.2rem;
}

.benefit-card h3 {
  margin: 0;
  font-size: 1.1rem;
}

.icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  margin-bottom: 0.8rem;
}

.icon svg {
  width: 1.3rem;
  height: 1.3rem;
  stroke: var(--accent-strong);
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card {
  padding: 1.4rem;
}

.service-list {
  margin: 0;
  padding-left: 1.2rem;
}

.service-list li + li {
  margin-top: 0.8rem;
}

.service-list strong {
  display: block;
  margin-bottom: 0.18rem;
  color: var(--text);
}

.pricing-card {
  text-align: center;
  padding: 2rem 1.2rem;
}

.pricing-card p {
  margin: 0.45rem 0;
  font-size: 1.2rem;
  font-weight: 600;
}

.about-copy,
.contact-copy {
  padding: 1.35rem;
}

.about-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 260px;
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  padding: 0.3rem 1rem;
}

.faq-question {
  width: 100%;
  padding: 0.95rem 0;
  text-align: left;
  background: transparent;
  border: 0;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  color: var(--text);
}

.faq-question::after {
  content: "+";
  float: right;
  color: var(--accent);
}

.faq-question[aria-expanded="true"]::after {
  content: "−";
}

.faq-answer {
  margin: 0 0 0.9rem;
  color: var(--muted);
}

.contact-copy {
  display: grid;
  gap: 0.85rem;
  align-content: start;
}

.contact-copy a {
  text-decoration: none;
  color: var(--accent-strong);
  font-weight: 600;
}

.contact-form {
  padding: 1.35rem;
  display: grid;
  gap: 0.85rem;
  align-content: start;
}

.contact-copy .section-title,
.contact-form .section-title,
.contact-copy p,
.contact-form p {
  margin: 0;
}

.footer {
  padding-top: 2.2rem;
  padding-bottom: 2rem;
  border-top: 1px solid var(--line);
  text-align: center;
}

.legal {
  margin: 0 0 0.95rem;
  font-weight: 600;
}

.footer-contact {
  margin: 0 0 0.8rem;
  color: var(--muted);
}

.footer-contact a {
  text-decoration: none;
}

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

.reveal {
  opacity: 1;
  transform: translateY(0);
}

.reveal-animated .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal-animated .reveal.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal-animated .reveal,
  .reveal-animated .reveal.reveal-visible,
  .btn,
  .topbar-cta {
    transition: none;
    transform: none;
    opacity: 1;
  }
}

@media (min-width: 760px) {
  .section {
    padding: 3.75rem 0;
  }

  .topbar-nav {
    display: inline-flex;
  }

  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1.05fr 1fr;
    align-items: stretch;
    gap: 1.25rem;
  }

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

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

@media (max-width: 600px) {
  .topbar-inner {
    flex-wrap: wrap;
    padding: 0.45rem 0;
  }

  .topbar-actions {
    width: 100%;
    justify-content: space-between;
  }
}

@media (min-width: 1020px) {
  .benefits-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
