:root {
  --primary: #76B82A;
  --primary-dark: #5E9421;
  --accent: #EE7F00;
  --accent-dark: #cc6d00;
  --dark: #1D2A12;
  --text: #2b3524;
  --bg: #f4f8ee;
  --bg-tint: #eaf3dc;
  --white: #FFFFFF;
  --muted: #64705a;
  --border: #e4ead9;
  --shadow: 0 12px 34px rgba(29, 42, 18, 0.08);
  --shadow-lg: 0 26px 60px rgba(29, 42, 18, 0.15);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1180px;
  --header-h: 76px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.72;
  font-size: 16px;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--dark);
  line-height: 1.22;
  font-weight: 700;
}

a {
  color: var(--primary-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover { color: var(--accent); }

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

ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { position: relative; }

/* ---------- Section header (centered, leaf-dot accent) ---------- */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 58px;
}

.section-title {
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  margin-bottom: 18px;
}

.section-description {
  color: var(--muted);
  font-size: 1.1rem;
}

.section-header .section-title::after {
  content: '';
  display: block;
  width: 46px;
  height: 6px;
  border-radius: 6px;
  background: var(--accent);
  margin: 18px auto 0;
}

/* ---------- Buttons (fully rounded pill) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: 999px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.28s var(--ease);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(118, 184, 42, 0.34);
}

.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 34px rgba(118, 184, 42, 0.44);
}

/* geva uses light hero + light sections, so secondary is a green outline by default */
.btn-secondary {
  background: transparent;
  color: var(--primary-dark);
  border-color: var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-3px);
}

.btn-full { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 6px 24px rgba(29, 42, 18, 0.08);
  background: rgba(255, 255, 255, 0.96);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo { display: inline-flex; align-items: center; line-height: 0; }

.logo img { height: 44px; width: auto; max-width: 60vw; display: block; }

.nav-right { display: flex; align-items: center; gap: 26px; }

.nav-links { display: flex; align-items: center; gap: 30px; }

.nav-links a {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
  transition: width 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active { color: var(--primary-dark); }

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* ---------- Language switch (pill) ---------- */
.lang-switch {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
  background: var(--bg);
}

.lang-btn {
  border: none;
  background: transparent;
  color: var(--muted);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  padding: 7px 14px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.lang-btn:hover { color: var(--primary-dark); }

.lang-btn.active { background: var(--primary); color: var(--white); }

/* ---------- Hamburger ---------- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--primary-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 20px 24px 30px;
  transform: translateY(-120%);
  transition: transform 0.35s var(--ease);
  z-index: 999;
  box-shadow: 0 20px 40px rgba(29, 42, 18, 0.12);
}

.mobile-menu.open { transform: translateY(0); }

.mobile-nav { display: flex; flex-direction: column; }

.mobile-nav a {
  display: block;
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.mobile-nav a:last-child { border-bottom: none; }

/* ---------- Hero (organic blobs, light green) ---------- */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 92px) 0 104px;
  background:
    radial-gradient(680px 420px at 82% 10%, var(--bg-tint), transparent 66%),
    linear-gradient(160deg, #ffffff 0%, var(--bg) 100%);
  overflow: hidden;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  width: 480px;
  height: 480px;
  top: -160px;
  right: -120px;
  background: radial-gradient(circle, rgba(118, 184, 42, 0.16), transparent 70%);
  border-radius: 42% 58% 63% 37% / 47% 42% 58% 53%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  width: 360px;
  height: 360px;
  bottom: -160px;
  left: -110px;
  background: radial-gradient(circle, rgba(238, 127, 0, 0.12), transparent 70%);
  border-radius: 63% 37% 42% 58% / 53% 58% 42% 47%;
  pointer-events: none;
}

.hero-content { position: relative; z-index: 2; max-width: 860px; margin: 0 auto; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-dark);
  background: rgba(118, 184, 42, 0.12);
  border: 1px solid rgba(118, 184, 42, 0.35);
  padding: 9px 20px;
  border-radius: 999px;
  margin-bottom: 26px;
}

.hero-badge svg { width: 17px; height: 17px; }

.hero-title {
  color: var(--dark);
  font-size: clamp(2.2rem, 5.2vw, 3.7rem);
  line-height: 1.12;
  margin-bottom: 22px;
  font-weight: 800;
}

.hero-title span { color: var(--primary-dark); }

.hero-subtitle {
  font-size: clamp(1.06rem, 2vw, 1.3rem);
  color: var(--muted);
  margin: 0 auto 38px;
  max-width: 680px;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ---------- Trust bar (light green tint, rounded chips) ---------- */
.trust-bar { background: var(--bg-tint); }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 34px 0;
}

.trust-item { display: flex; align-items: center; justify-content: center; }

.trust-content { display: flex; align-items: center; gap: 14px; color: var(--dark); }

.trust-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
  box-shadow: 0 6px 16px rgba(29, 42, 18, 0.08);
}

.trust-icon svg { width: 24px; height: 24px; }

.trust-item:nth-child(even) .trust-icon { color: var(--accent); }

.trust-value {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--dark);
}

.trust-label {
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.services { background: var(--white); }
.how-it-works { background: var(--bg); }
.why-choose { background: var(--white); }
.faq { background: var(--bg); }

/* ---------- Services (very rounded, alternating chips) ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 38px 30px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 66px;
  height: 66px;
  border-radius: 24px 24px 24px 6px;
  background: rgba(118, 184, 42, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--primary-dark);
  transition: transform 0.35s var(--ease), border-radius 0.35s var(--ease);
}

.service-card:nth-child(even) .service-icon {
  background: rgba(238, 127, 0, 0.14);
  color: var(--accent-dark);
  border-radius: 24px 24px 6px 24px;
}

.service-card:hover .service-icon {
  transform: scale(1.08) rotate(4deg);
  border-radius: 50%;
}

.service-icon svg { width: 32px; height: 32px; }

.service-title { font-size: 1.24rem; margin-bottom: 12px; }

.service-description { color: var(--muted); font-size: 0.97rem; }

/* ---------- How it works (rounded squircle steps) ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12%;
  right: 12%;
  height: 3px;
  background: repeating-linear-gradient(90deg, var(--primary) 0 10px, transparent 10px 20px);
  opacity: 0.45;
  z-index: 0;
}

.step { position: relative; z-index: 1; text-align: center; padding: 0 8px; }

.step-number {
  width: 80px;
  height: 80px;
  border-radius: 42% 58% 63% 37% / 47% 42% 58% 53%;
  background: var(--primary);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.55rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  box-shadow: 0 12px 26px rgba(118, 184, 42, 0.28);
  transition: border-radius 0.5s var(--ease);
}

.step:nth-child(even) .step-number {
  background: var(--accent);
  box-shadow: 0 12px 26px rgba(238, 127, 0, 0.28);
  border-radius: 63% 37% 42% 58% / 53% 58% 42% 47%;
}

.step:hover .step-number { border-radius: 50%; }

.step-title { font-size: 1.14rem; margin-bottom: 10px; }
.step-description { color: var(--muted); font-size: 0.93rem; }

/* ---------- Why choose (rounded 2-col cards) ---------- */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

.why-card {
  display: flex;
  gap: 22px;
  background: var(--bg);
  border-radius: var(--radius);
  padding: 34px;
  border: 1px solid var(--border);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s ease;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  background: var(--white);
}

.why-icon {
  width: 60px;
  height: 60px;
  border-radius: 20px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}

.why-card:nth-child(even) .why-icon { background: var(--accent); }

.why-icon svg { width: 28px; height: 28px; }

.why-title { font-size: 1.2rem; margin-bottom: 8px; }
.why-description { color: var(--muted); font-size: 0.97rem; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 840px; margin: 0 auto; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  overflow: hidden;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.faq-item.open {
  box-shadow: var(--shadow);
  border-color: rgba(118, 184, 42, 0.5);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--dark);
}

.faq-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  color: var(--white);
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  line-height: 1;
  transition: transform 0.3s ease, background 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p { padding: 0 26px 24px; color: var(--muted); font-size: 0.99rem; }

/* ---------- Contact ---------- */
.contact { background: var(--dark); color: var(--white); }

.contact .section-title { color: var(--white); }
.contact .section-title::after { background: var(--accent); }
.contact .section-description { color: rgba(255, 255, 255, 0.75); }

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 52px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 26px; }

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

.contact-icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: rgba(118, 184, 42, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

.contact-item:nth-child(even) .contact-icon {
  background: rgba(238, 127, 0, 0.2);
  color: var(--accent);
}

.contact-icon svg { width: 22px; height: 22px; }

.contact-item h4 {
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  margin-bottom: 5px;
}

.contact-item p { color: rgba(255, 255, 255, 0.78); font-size: 0.95rem; margin: 0; }
.contact-item a { color: rgba(255, 255, 255, 0.9); }
.contact-item a:hover { color: var(--primary); }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.98rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(118, 184, 42, 0.18);
}

.contact-form textarea { resize: vertical; min-height: 120px; }

.form-checkbox { margin-bottom: 22px; }

.form-checkbox label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 0;
}

.form-checkbox input {
  margin-top: 3px;
  width: 17px;
  height: 17px;
  accent-color: var(--primary);
  flex-shrink: 0;
  cursor: pointer;
}

.contact-form .btn { width: 100%; }

.contact-form input.invalid,
.contact-form select.invalid,
.contact-form textarea.invalid { border-color: #d33; }

.form-success {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 18px;
  margin-top: 18px;
  background: rgba(118, 184, 42, 0.14);
  border: 1px solid rgba(118, 184, 42, 0.4);
  border-radius: var(--radius-sm);
  color: var(--primary-dark);
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
}

.form-success.show { display: flex; animation: pop 0.5s var(--ease); }

.form-success svg { width: 22px; height: 22px; color: var(--primary); flex-shrink: 0; }

@keyframes pop {
  0% { transform: scale(0.95); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.72);
  padding: 66px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo { height: 40px; width: auto; margin-bottom: 18px; }

.footer-description { font-size: 0.92rem; line-height: 1.7; color: rgba(255, 255, 255, 0.65); }

.footer-heading {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 18px;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  padding-bottom: 12px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 3px;
  border-radius: 3px;
  background: var(--accent);
}

.footer-links { display: flex; flex-direction: column; gap: 11px; }

.footer-links li { font-size: 0.92rem; color: rgba(255, 255, 255, 0.68); }

.footer-links a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.footer-links a:hover { color: var(--primary); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copyright { color: rgba(255, 255, 255, 0.62); font-size: 0.85rem; margin: 0; }
.footer-disclaimer { color: rgba(255, 255, 255, 0.5); font-size: 0.82rem; margin: 0; max-width: 520px; text-align: right; }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .contact-wrapper { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-right .lang-switch { display: none; }
  .hamburger { display: flex; }

  .section { padding: 68px 0; }

  .steps { grid-template-columns: 1fr; gap: 0; }
  .steps::before { display: none; }
  .step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 22px;
    text-align: left;
    align-items: start;
    padding-bottom: 32px;
    position: relative;
  }
  .step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 39px;
    top: 80px;
    bottom: 6px;
    width: 2px;
    background: repeating-linear-gradient(180deg, var(--primary) 0 8px, transparent 8px 16px);
    opacity: 0.45;
  }
  .step-number { margin: 0; }

  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 620px) {
  .services-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .contact-form-wrap { padding: 28px 22px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-disclaimer { text-align: left; }
}
