:root {
  --ink: #173c32;
  --muted: #587068;
  --green: #0b5d48;
  --green-2: #43866a;
  --mint: #dcefe5;
  --mint-soft: #f1f8f4;
  --gold: #d9a83e;
  --cream: #fffdf8;
  --line: rgba(23, 60, 50, 0.14);
  --shadow: 0 24px 70px rgba(10, 67, 51, 0.12);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Tahoma, Arial, sans-serif;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

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

.shell {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.narrow {
  width: min(800px, calc(100% - 40px));
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  inset-inline-start: 8px;
  padding: 10px 16px;
  border-radius: 12px;
  color: white;
  background: var(--green);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.88);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  border-radius: 13px;
  box-shadow: 0 7px 20px rgba(5, 42, 70, 0.22);
}

.brand span {
  display: grid;
  line-height: 1.3;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  color: var(--muted);
}

nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-inline-start: auto;
}

nav a,
.footer-links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 650;
}

nav a:hover,
.footer-links a:hover {
  color: var(--green);
}

.language-button {
  width: 46px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--green);
  background: white;
  font-weight: 800;
  cursor: pointer;
}

.language-button:hover {
  background: var(--mint-soft);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 20%, rgba(67, 134, 106, 0.18), transparent 34%),
    radial-gradient(circle at 90% 10%, rgba(217, 168, 62, 0.15), transparent 24%),
    linear-gradient(145deg, #f9fdf9 0%, #fffaf0 100%);
}

.hero::before {
  position: absolute;
  content: "";
  width: 680px;
  height: 680px;
  inset-inline-end: -320px;
  top: -280px;
  border: 1px solid rgba(67, 134, 106, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(67, 134, 106, 0.035), 0 0 0 140px rgba(67, 134, 106, 0.025);
}

.hero-grid {
  min-height: 720px;
  padding-block: 80px;
  display: grid;
  grid-template-columns: 1.05fr 0.8fr;
  align-items: center;
  gap: 72px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-2);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 5.15rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.hero-lead {
  max-width: 670px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 50px;
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button.primary {
  color: white;
  background: var(--green);
  box-shadow: 0 12px 26px rgba(11, 93, 72, 0.22);
}

.button.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.78);
}

.trust-row {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  padding: 7px 11px;
  border: 1px solid rgba(67, 134, 106, 0.2);
  border-radius: 999px;
  color: var(--green);
  background: rgba(255, 255, 255, 0.6);
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  height: 580px;
  display: grid;
  place-items: center;
}

.hero-visual .glow {
  position: absolute;
  width: 85%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(67, 134, 106, 0.25), transparent 65%);
  filter: blur(12px);
}

.hero-visual img {
  position: relative;
  width: min(360px, 88%);
  max-height: 570px;
  object-fit: contain;
  border-radius: 42px;
  box-shadow: var(--shadow);
  transform: rotate(-1.5deg);
}

[dir="ltr"] .hero-visual img {
  transform: rotate(1.5deg);
}

.section {
  padding-block: 100px;
}

.soft-section {
  border-block: 1px solid var(--line);
  background: var(--mint-soft);
}

.section-heading {
  max-width: 690px;
  margin-bottom: 42px;
}

.section-heading h2,
.contact-card h2,
.policy-heading h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.section-heading > p:last-child {
  color: var(--muted);
  font-size: 1.06rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-card {
  min-height: 280px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 16px 45px rgba(25, 73, 59, 0.07);
}

.feature-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--green);
  background: var(--mint);
  font-size: 1.7rem;
  font-weight: 500;
}

.feature-card h3 {
  margin: 22px 0 9px;
  font-size: 1.25rem;
}

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

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

details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  overflow: hidden;
}

summary {
  padding: 20px 22px;
  list-style: none;
  cursor: pointer;
  font-weight: 800;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: inline-end;
  color: var(--green);
  font-size: 1.35rem;
}

details[open] summary::after {
  content: "−";
}

details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.contact-card {
  padding: 46px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 50px;
  border-radius: 34px;
  color: white;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.12), transparent 34%),
    linear-gradient(135deg, #0a4d3c, #14745b);
  box-shadow: var(--shadow);
}

.contact-card .eyebrow,
.contact-card p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-card .button.primary {
  color: var(--green);
  background: white;
}

.contact-actions {
  min-width: 300px;
  display: grid;
  gap: 10px;
  text-align: center;
}

.contact-actions p {
  margin: 0;
  font-size: 0.86rem;
}

.policy-page {
  min-height: 70vh;
  padding-block: 80px 110px;
  background: linear-gradient(180deg, var(--mint-soft), var(--cream) 400px);
}

.policy-heading {
  margin-bottom: 34px;
}

.policy-heading > p:last-child {
  color: var(--muted);
}

.policy-card {
  padding: clamp(25px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: 32px;
  background: white;
  box-shadow: var(--shadow);
}

.policy-card section + section {
  margin-top: 36px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.policy-card h2 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

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

.policy-card a {
  color: var(--green);
  font-weight: 750;
}

footer {
  padding-block: 34px;
  border-top: 1px solid var(--line);
  background: white;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-inner > p {
  color: var(--muted);
}

@media (max-width: 920px) {
  nav {
    display: none;
  }

  .language-button {
    margin-inline-start: auto;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-actions,
  .trust-row {
    justify-content: center;
  }

  .hero-visual {
    height: 520px;
  }

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

  .contact-card {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    min-width: 0;
  }
}

@media (max-width: 580px) {
  .shell,
  .narrow {
    width: min(100% - 28px, 1120px);
  }

  .header-inner {
    min-height: 68px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand small {
    display: none;
  }

  .hero-grid {
    padding-block: 58px;
  }

  .hero h1 {
    font-size: 2.55rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-visual {
    height: 450px;
  }

  .hero-visual img {
    max-height: 450px;
    border-radius: 32px;
  }

  .section {
    padding-block: 72px;
  }

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

  .feature-card {
    min-height: auto;
  }

  .contact-card {
    padding: 28px 22px;
  }

  .contact-actions .button {
    overflow-wrap: anywhere;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
