:root {
  --bg: #f4f7f3;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --surface-alt: #e8efe8;
  --ink: #1f2b24;
  --muted: #355245;
  --brand: #426652;
  --brand-deep: #273d31;
  --brand-soft: #d7e9dd;
  --accent: #8fb7a1;
  --accent-soft: #e6f2e8;
  --line: rgba(66, 102, 82, 0.18);
  --shadow: 0 18px 40px rgba(39, 61, 49, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  line-height: 1.55;
  background:
    radial-gradient(circle at 15% 10%, #e6f2e8 0%, transparent 42%),
    radial-gradient(circle at 90% 0%, #d7e9dd 0%, transparent 40%),
    var(--bg);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background:
    linear-gradient(135deg, transparent 0%, transparent 48%, #426652 48%, #426652 49%, transparent 49%, transparent 100%),
    linear-gradient(45deg, transparent 0%, transparent 52%, #8fb7a1 52%, #8fb7a1 53%, transparent 53%, transparent 100%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(244, 247, 243, 0.86);
  border-bottom: 1px solid rgba(39, 61, 49, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 82px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
}

.site-nav a {
  color: var(--muted);
}

.site-nav a:hover {
  color: var(--brand-deep);
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(39, 61, 49, 0.2);
  border-radius: 999px;
  padding: 8px 14px;
  background: var(--surface-strong);
  color: var(--brand-deep);
  font-family: "Sora", "Segoe UI", sans-serif;
  font-weight: 700;
  cursor: pointer;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid rgba(39, 61, 49, 0.2);
  background: var(--surface-strong);
  cursor: pointer;
  transition: border-color 200ms ease;
}

.lang-toggle:hover {
  border-color: rgba(39, 61, 49, 0.35);
}

.lang-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  padding: 6px 11px;
  border-radius: 999px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  transition: all 200ms ease;
}

.lang-option.active {
  background: linear-gradient(120deg, var(--brand), #507c64);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(39, 61, 49, 0.2);
}

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

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.05rem;
  color: var(--brand-deep);
}

.brand-text small {
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.03em;
  font-size: 0.69rem;
}

.login-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(39, 61, 49, 0.2);
  background: var(--surface-strong);
  color: var(--brand-deep);
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.login-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(39, 61, 49, 0.15);
}

.topbar-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(120deg, var(--brand), #507c64);
  color: #ffffff;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.topbar-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(39, 61, 49, 0.24);
}

.hero {
  padding: 4.6rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1.6rem;
  align-items: start;
}

.hero-copy {
  animation: fade-up 0.7s ease both;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--brand);
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  color: var(--brand-deep);
  line-height: 1.15;
}

h1 {
  margin-top: 0.5rem;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
}

h2 {
  font-size: clamp(1.65rem, 4vw, 2.5rem);
}

h3 {
  font-size: 1.2rem;
}

.lead {
  max-width: 56ch;
  margin-top: 1.05rem;
  font-size: 1.06rem;
  color: var(--muted);
}

.hero-tags {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.hero-tags span {
  border: 1px solid rgba(39, 61, 49, 0.16);
  background: rgba(255, 255, 255, 0.85);
  color: var(--muted);
  border-radius: 999px;
  padding: 0.34rem 0.76rem;
  font-size: 0.85rem;
  font-weight: 700;
}

.hero-actions {
  margin-top: 1.55rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.68rem 1.1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.cta-primary {
  background: linear-gradient(120deg, var(--brand), #507c64);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(39, 61, 49, 0.22);
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(39, 61, 49, 0.24);
}

.cta-secondary {
  border-color: rgba(39, 61, 49, 0.24);
  background: transparent;
  color: var(--brand-deep);
}

.cta-secondary:hover {
  background: rgba(143, 183, 161, 0.14);
}

.hero-visual {
  position: relative;
  overflow: hidden;
  padding: 1.1rem;
  border-radius: 24px;
  border: 1px solid rgba(66, 102, 82, 0.22);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(212, 229, 218, 0.88));
  color: var(--brand-deep);
  box-shadow: var(--shadow);
  animation: fade-up 0.7s ease 0.12s both;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.36) 0%, transparent 34%);
}

.hero-visual-image {
  isolation: isolate;
  background:
    radial-gradient(circle at 14% 8%, rgba(255, 255, 255, 0.32) 0%, transparent 32%),
    radial-gradient(circle at 92% 94%, rgba(143, 183, 161, 0.28) 0%, transparent 36%),
    linear-gradient(168deg, rgba(255, 255, 255, 0.9) 0%, rgba(226, 238, 228, 0.92) 56%, rgba(212, 229, 218, 0.9) 100%);
}

.visual-top {
  display: grid;
  gap: 0.2rem;
  margin-bottom: 0.95rem;
}

.visual-title {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--brand-deep);
}

.visual-sub {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.hero-image-frame {
  position: relative;
  margin: 0;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(66, 102, 82, 0.22);
  background: rgba(255, 255, 255, 0.45);
  box-shadow:
    0 18px 40px rgba(39, 61, 49, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.44);
}

.hero-image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0) 24%);
}

.hero-image {
  display: block;
  width: 100%;
  height: auto;
}

.visual-caption {
  margin-top: 0.95rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.metric-strip {
  border-top: 1px solid rgba(66, 102, 82, 0.22);
  border-bottom: 1px solid rgba(66, 102, 82, 0.22);
  background: linear-gradient(120deg, var(--brand-deep) 0%, var(--brand) 56%, #507c64 100%);
  color: #ffffff;
}

.metric-strip-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 1rem 0;
}

.metric-strip article {
  border: 1px solid #ffffff2d;
  border-radius: 12px;
  background: #ffffff10;
  padding: 0.95rem;
}

.metric-strip-value {
  margin: 0;
  color: #d7e9dd;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
}

.metric-strip-text {
  margin: 0.3rem 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
}

.section {
  padding: 5.2rem 0;
}

.section-alt {
  border-top: 1px solid rgba(66, 102, 82, 0.12);
  border-bottom: 1px solid rgba(66, 102, 82, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(235, 244, 236, 0.9));
}

.grid-2 {
  display: grid;
  gap: 1.2rem;
  align-items: start;
  grid-template-columns: 1.05fr 0.95fr;
}

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

.section-intro {
  max-width: 760px;
  margin-top: 0.25rem;
}

.card {
  display: grid;
  gap: 0.7rem;
  padding: 1.3rem;
  border: 1px solid rgba(66, 102, 82, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 28px rgba(39, 61, 49, 0.12);
}

.cards {
  margin-top: 1.35rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.use-case-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fcfb 100%);
}

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

.testimonial-card {
  position: relative;
  padding-top: 1.6rem;
  background:
    radial-gradient(circle at top left, rgba(66, 102, 82, 0.1) 0%, rgba(66, 102, 82, 0) 42%),
    linear-gradient(180deg, #ffffff 0%, #f4f8f4 100%);
}

.testimonial-card::before {
  content: "\"";
  position: absolute;
  top: 0.4rem;
  left: 1rem;
  color: rgba(66, 102, 82, 0.18);
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 4rem;
  line-height: 1;
}

.testimonial-quote {
  position: relative;
  z-index: 1;
  font-size: 1.05rem;
  color: var(--muted);
}

.testimonial-name {
  margin-top: 0.3rem;
  color: var(--brand-deep);
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
}

.testimonial-role {
  color: var(--brand);
  font-size: 0.9rem;
  font-weight: 600;
}

.feature-card {
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--brand);
}

.feature-card::after {
  content: "";
  position: absolute;
  top: -32px;
  right: -32px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(143, 183, 161, 0.32) 0%, rgba(143, 183, 161, 0) 70%);
}

.feature-eyebrow {
  margin: 0;
  color: var(--brand);
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.73rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.detail-list {
  margin: 0;
  padding-left: 1.05rem;
}

ul {
  margin: 0;
  padding-left: 1.05rem;
}

li {
  margin-bottom: 0.42rem;
  color: var(--muted);
}

li:last-child {
  margin-bottom: 0;
}

.contact-form {
  max-width: 720px;
  display: grid;
  gap: 0.72rem;
  padding: 1.25rem;
  margin-top: 1rem;
  border-radius: 24px;
  border: 1px solid rgba(66, 102, 82, 0.18);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 28px rgba(39, 61, 49, 0.12);
}

label {
  font-weight: 600;
  color: var(--brand-deep);
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(66, 102, 82, 0.26);
  border-radius: 12px;
  padding: 0.72rem 0.8rem;
  font: inherit;
  color: var(--ink);
  background: #fbfdfb;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(143, 183, 161, 0.5);
  border-color: var(--brand);
  box-shadow: none;
}

.contact-form button {
  width: fit-content;
  margin-top: 0.2rem;
  border: 0;
  border-radius: 999px;
  padding: 0.68rem 1.06rem;
  background: linear-gradient(120deg, var(--brand), #507c64);
  color: #ffffff;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(39, 61, 49, 0.24);
}

.contact-form button:disabled {
  opacity: 0.75;
  cursor: not-allowed;
}

.form-status {
  min-height: 1.2rem;
  margin: 0.1rem 0 0;
  color: var(--muted);
}

.form-status.success {
  color: #1e6a43;
}

.form-status.error {
  color: #a63d2f;
}

.contact-note {
  margin-top: 1rem;
  color: var(--muted);
}

.contact-note a {
  color: var(--brand-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.4rem 0;
  background: #1f2f25;
}

.footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

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

@media (max-width: 980px) {
  .metric-strip-grid,
  .grid-2,
  .cards,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 3.8rem 0 3.3rem;
  }
}

@media (max-width: 780px) {
  .site-nav {
    position: absolute;
    top: 82px;
    left: 4vw;
    right: 4vw;
    border-radius: 18px;
    background: rgba(244, 247, 243, 0.98);
    border: 1px solid rgba(66, 102, 82, 0.18);
    box-shadow: 0 12px 28px rgba(39, 61, 49, 0.12);
    padding: 14px;
    display: grid;
    gap: 12px;
    transform-origin: top;
    transform: scaleY(0.65);
    opacity: 0;
    pointer-events: none;
    transition: opacity 200ms ease, transform 200ms ease;
  }

  .site-nav.is-open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav .login-button,
  .site-nav .topbar-cta,
  .site-nav .lang-toggle {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 680px) {
  .nav-wrap {
    min-height: 74px;
    gap: 0.8rem;
  }

  .brand-text small {
    display: none;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
  }

  h1 {
    font-size: clamp(1.85rem, 9vw, 2.35rem);
  }

  .hero-actions {
    width: 100%;
  }

  .cta {
    flex: 1 1 45%;
  }

  .site-nav {
    top: 74px;
  }

  .site-nav .login-button,
  .site-nav .topbar-cta,
  .site-nav .lang-toggle {
    min-height: 40px;
    padding-inline: 0.82rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
