:root {
  --green-950: #032d1d;
  --green-900: #06482c;
  --green-800: #075c36;
  --green-700: #087044;
  --green-600: #0f8a50;
  --green-500: #20a760;
  --green-300: #86ce8b;
  --green-100: #eaf7ed;
  --green-50: #f5fbf6;
  --gold-600: #d58f0e;
  --gold-500: #efa91d;
  --gold-400: #f6c34d;
  --ink: #13231a;
  --muted: #65736a;
  --line: rgba(8, 94, 55, .13);
  --white: #fff;
  --surface: #fff;
  --soft: #f5f8f4;
  --shadow-sm: 0 10px 30px rgba(3, 45, 29, .08);
  --shadow-md: 0 24px 70px rgba(3, 45, 29, .14);
  --shadow-lg: 0 35px 90px rgba(3, 45, 29, .22);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --container: 1220px;
  --header-height: 92px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 105px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: "Alexandria", "Segoe UI", Tahoma, Arial, sans-serif;
  line-height: 1.75;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
::selection { color: #fff; background: var(--green-700); }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}
.section { position: relative; padding: 115px 0; }
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green-700);
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .02em;
  margin-bottom: 14px;
}
.section-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-500), var(--green-500));
}
.section-heading { max-width: 720px; margin-bottom: 54px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading.centered .section-kicker { justify-content: center; }
.section-heading h2,
.section-copy h2,
.values-copy h2 {
  margin: 0;
  color: var(--green-950);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.25;
  letter-spacing: -.035em;
}
.section-heading p,
.section-copy p,
.values-copy p { color: var(--muted); font-size: 1.05rem; }
.section-heading p { max-width: 620px; margin: 16px auto 0; }
.lead { font-size: 1.14rem !important; color: #3f5147 !important; }

.skip-link {
  position: fixed;
  z-index: 99999;
  top: 10px;
  right: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  color: #fff;
  background: var(--green-800);
  transform: translateY(-150%);
  transition: .25s ease;
}
.skip-link:focus { transform: translateY(0); }

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: #f7fbf7;
  transition: opacity .6s ease, visibility .6s ease;
}
.page-loader.loaded { opacity: 0; visibility: hidden; }
.loader-mark { position: relative; width: 110px; height: 110px; }
.loader-mark img { width: 100%; height: 100%; object-fit: contain; animation: loaderPulse 1.2s ease-in-out infinite; }
.loader-mark span {
  position: absolute;
  inset: -11px;
  border: 2px solid rgba(15, 138, 80, .18);
  border-top-color: var(--green-600);
  border-radius: 50%;
  animation: spin 1.1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes loaderPulse { 50% { transform: scale(.94); opacity: .82; } }

.scroll-progress {
  position: fixed;
  z-index: 1001;
  inset: 0 0 auto 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-400), var(--green-500));
  box-shadow: 0 0 16px rgba(246, 195, 77, .6);
}

.site-header { position: fixed; z-index: 1000; inset: 0 0 auto; transition: transform .4s var(--ease); }
.site-header.scrolled .navbar {
  background: rgba(255,255,255,.92);
  box-shadow: 0 15px 45px rgba(3,45,29,.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.topbar {
  color: rgba(255,255,255,.92);
  background: var(--green-950);
  font-size: .82rem;
}
.topbar-inner { min-height: 36px; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.topbar p { margin: 0; display: flex; align-items: center; gap: 8px; }
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-400); box-shadow: 0 0 0 0 rgba(246,195,77,.5); animation: pulseDot 2s infinite; }
@keyframes pulseDot { 70% { box-shadow: 0 0 0 8px rgba(246,195,77,0); } }
.topbar-links { display: flex; align-items: center; gap: 10px; direction: ltr; }
.topbar-links a { transition: color .2s ease; }
.topbar-links a:hover { color: var(--gold-400); }
.navbar { color: #fff; transition: .35s ease; }
.site-header.scrolled .navbar { color: var(--ink); }
.nav-inner { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand img { width: 66px; height: 66px; object-fit: contain; filter: drop-shadow(0 8px 14px rgba(0,0,0,.12)); }
.brand span { display: flex; flex-direction: column; line-height: 1.35; }
.brand strong { font-size: 1.08rem; }
.brand small { font-size: .68rem; opacity: .78; }
.nav-menu { display: flex; align-items: center; gap: 6px; }
.nav-link {
  position: relative;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 700;
  transition: color .25s ease, background .25s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  inset: auto 50% 3px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--gold-400);
  transform: translateX(50%);
  transition: width .25s ease;
}
.nav-link:hover,
.nav-link.active { color: var(--gold-400); }
.site-header.scrolled .nav-link:hover,
.site-header.scrolled .nav-link.active { color: var(--green-700); }
.nav-link.active::after { width: 25px; }
.install-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 12px;
  color: inherit;
  background: rgba(255,255,255,.08);
  font-weight: 800;
  transition: .25s ease;
}
.site-header.scrolled .install-nav-btn { border-color: var(--line); background: var(--green-50); }
.install-nav-btn:hover { transform: translateY(-2px); color: var(--green-950); background: var(--gold-400); border-color: var(--gold-400); }
.install-nav-btn svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 11px; border: 0; border-radius: 13px; background: rgba(255,255,255,.12); }
.menu-toggle span { display: block; width: 100%; height: 2px; margin: 5px 0; border-radius: 3px; background: currentColor; transition: .3s ease; }

.hero {
  position: relative;
  min-height: 810px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 22% 35%, rgba(45,167,92,.28), transparent 30%),
    radial-gradient(circle at 76% 20%, rgba(246,195,77,.13), transparent 22%),
    linear-gradient(126deg, #032d1d 0%, #075334 50%, #0a7041 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(to top, rgba(0,0,0,.15), transparent);
  pointer-events: none;
}
.hero-noise { position: absolute; inset: 0; opacity: .08; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.25'/%3E%3C/svg%3E"); }
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .11;
  background-image: linear-gradient(rgba(255,255,255,.2) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.2) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to left, #000, transparent 70%);
}
.hero-layout { position: relative; z-index: 2; display: grid; grid-template-columns: 1.12fr .88fr; align-items: center; gap: 70px; padding-top: 125px; padding-bottom: 85px; }
.hero-content { max-width: 720px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  color: #d9f2e0;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
  font-size: .86rem;
  font-weight: 700;
}
.eyebrow i { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-400); box-shadow: 0 0 0 5px rgba(246,195,77,.12); }
.hero h1 { margin: 25px 0 24px; font-size: clamp(3rem, 6vw, 5.65rem); line-height: 1.13; letter-spacing: -.055em; }
.hero h1 span { display: inline; color: var(--gold-400); }
.hero-content > p { max-width: 690px; margin: 0; color: rgba(255,255,255,.78); font-size: 1.16rem; line-height: 2; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 12px 22px;
  border: 0;
  border-radius: 14px;
  font-weight: 800;
  overflow: hidden;
  isolation: isolate;
  transition: transform .25s var(--ease), box-shadow .25s ease, background .25s ease;
}
.btn::before { content: ""; position: absolute; inset: 0; z-index: -1; transform: translateX(105%); background: linear-gradient(90deg, transparent, rgba(255,255,255,.23), transparent); transition: transform .65s ease; }
.btn:hover::before { transform: translateX(-105%); }
.btn:hover { transform: translateY(-3px); }
.btn svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.btn-primary { color: var(--green-950); background: linear-gradient(135deg, var(--gold-400), #ffd66e); box-shadow: 0 16px 36px rgba(239,169,29,.23); }
.btn-primary:hover { box-shadow: 0 22px 45px rgba(239,169,29,.34); }
.btn-glass { color: #fff; border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.08); backdrop-filter: blur(12px); }
.btn-glass:hover { background: rgba(255,255,255,.15); }
.btn-light { color: var(--green-900); background: #fff; }
.btn-outline-light { color: #fff; border: 1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.06); }
.btn-outline-light:hover { color: var(--green-950); background: var(--gold-400); border-color: var(--gold-400); }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 42px; }
.hero-trust > div { display: flex; align-items: center; gap: 10px; }
.trust-icon { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; color: var(--green-950); background: var(--gold-400); font-size: .85rem; font-weight: 900; }
.hero-trust p { display: flex; flex-direction: column; margin: 0; line-height: 1.5; }
.hero-trust strong { font-size: .83rem; }
.hero-trust small { color: rgba(255,255,255,.58); font-size: .69rem; }

.hero-visual { position: relative; min-height: 560px; display: grid; place-items: center; }
.logo-stage {
  position: relative;
  z-index: 3;
  width: min(390px, 78vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  background: rgba(255,255,255,.055);
  box-shadow: inset 0 0 90px rgba(255,255,255,.05), 0 45px 90px rgba(0,0,0,.25);
  backdrop-filter: blur(12px);
}
.logo-stage::before { content: ""; position: absolute; inset: 17px; border: 1px dashed rgba(246,195,77,.36); border-radius: 50%; animation: spin 28s linear infinite reverse; }
.logo-stage img { width: 81%; filter: drop-shadow(0 24px 36px rgba(0,0,0,.18)); animation: logoFloat 5s ease-in-out infinite; }
@keyframes logoFloat { 50% { transform: translateY(-12px) rotate(-1deg); } }
.orbit { position: absolute; z-index: 1; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; }
.orbit::before { content: ""; position: absolute; top: -6px; left: 50%; width: 12px; height: 12px; border-radius: 50%; background: var(--gold-400); box-shadow: 0 0 22px rgba(246,195,77,.8); }
.orbit-one { width: 500px; height: 500px; animation: spin 24s linear infinite; }
.orbit-two { width: 580px; height: 580px; border-style: dashed; animation: spin 38s linear infinite reverse; }
.visual-glow { position: absolute; width: 320px; height: 320px; border-radius: 50%; background: rgba(96,200,106,.25); filter: blur(70px); }
.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 190px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  background: rgba(3,45,29,.55);
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
  backdrop-filter: blur(16px);
}
.floating-card p { display: flex; flex-direction: column; margin: 0; line-height: 1.45; }
.floating-card strong { font-size: .84rem; }
.floating-card small { color: rgba(255,255,255,.6); font-size: .68rem; }
.mini-icon { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 13px; color: #dff6e4; background: rgba(38,169,93,.25); }
.mini-icon.gold { color: #ffe3a0; background: rgba(246,195,77,.16); }
.mini-icon svg { width: 23px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.card-seeds { right: -14px; top: 105px; animation: cardFloat 5.5s ease-in-out infinite; }
.card-support { left: -28px; bottom: 115px; animation: cardFloat 6.2s ease-in-out infinite reverse; }
@keyframes cardFloat { 50% { transform: translateY(-13px); } }
.hero-domain { position: absolute; z-index: 4; bottom: 38px; right: 50%; transform: translateX(50%); padding: 9px 18px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; color: var(--gold-400); background: rgba(3,45,29,.4); font-weight: 900; letter-spacing: .05em; direction: ltr; }
.floating-leaves span { position: absolute; z-index: 1; width: 18px; height: 34px; border-radius: 100% 0 100% 0; background: rgba(128,207,107,.2); animation: drift 13s linear infinite; }
.leaf-1 { top: 18%; left: 8%; }
.leaf-2 { top: 42%; left: 46%; animation-delay: -4s !important; }
.leaf-3 { top: 72%; left: 15%; animation-delay: -7s !important; }
.leaf-4 { top: 24%; right: 8%; animation-delay: -2s !important; }
.leaf-5 { top: 68%; right: 38%; animation-delay: -9s !important; }
@keyframes drift { 0% { transform: translateY(35px) rotate(0); opacity: 0; } 20% { opacity: 1; } 80% { opacity: .75; } 100% { transform: translateY(-110px) rotate(180deg); opacity: 0; } }
.scroll-cue { position: absolute; z-index: 4; bottom: 22px; left: 50%; transform: translateX(-50%); display: flex; align-items: center; gap: 9px; color: rgba(255,255,255,.65); font-size: .72rem; }
.scroll-cue span { position: relative; width: 22px; height: 34px; border: 1px solid rgba(255,255,255,.35); border-radius: 999px; }
.scroll-cue span::after { content: ""; position: absolute; top: 6px; left: 50%; width: 3px; height: 7px; border-radius: 4px; background: var(--gold-400); transform: translateX(-50%); animation: scrollMouse 1.8s infinite; }
@keyframes scrollMouse { 70% { transform: translate(-50%, 12px); opacity: 0; } }

.intro-strip { position: relative; z-index: 4; margin-top: -2px; background: #fff; box-shadow: 0 -20px 50px rgba(3,45,29,.08); }
.intro-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.intro-item { display: flex; align-items: center; gap: 18px; min-height: 150px; padding: 30px 34px; border-left: 1px solid var(--line); }
.intro-item:last-child { border-left: 0; }
.intro-item > span { color: rgba(8,112,68,.15); font-size: 3.2rem; font-weight: 900; line-height: 1; }
.intro-item h2 { margin: 0 0 5px; color: var(--green-900); font-size: 1.1rem; }
.intro-item p { margin: 0; color: var(--muted); font-size: .86rem; line-height: 1.7; }

.about-section { overflow: hidden; background: linear-gradient(180deg, #fff, #fbfdf9); }
.about-section::before { content: ""; position: absolute; width: 420px; height: 420px; left: -200px; top: 90px; border-radius: 50%; background: radial-gradient(circle, rgba(123,197,105,.15), transparent 68%); }
.about-layout { display: grid; grid-template-columns: .95fr 1.05fr; gap: 80px; align-items: center; }
.field-card { position: relative; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); overflow: hidden; transform: perspective(1000px) rotateY(3deg); }
.field-illustration { width: 100%; height: auto; }
.field-badge { position: absolute; inset: auto 25px 25px; padding: 18px 20px; border: 1px solid rgba(255,255,255,.3); border-radius: 18px; color: #fff; background: rgba(3,45,29,.72); backdrop-filter: blur(12px); }
.field-badge span { display: block; color: var(--gold-400); font-size: .75rem; font-weight: 800; }
.field-badge strong { font-size: 1rem; }
.section-copy p { margin: 18px 0 0; }
.vision-mission { display: grid; gap: 14px; margin-top: 30px; }
.vision-mission article { display: flex; gap: 14px; padding: 18px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow-sm); transition: .3s ease; }
.vision-mission article:hover { transform: translateX(-7px); border-color: rgba(8,112,68,.3); }
.vm-icon { flex: 0 0 46px; display: grid; place-items: center; width: 46px; height: 46px; border-radius: 14px; color: var(--green-700); background: var(--green-100); }
.vm-icon.gold-bg { color: var(--gold-600); background: #fff7df; }
.vm-icon svg { width: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.vision-mission h3 { margin: 0 0 4px; color: var(--green-900); font-size: 1rem; }
.vision-mission p { margin: 0; font-size: .86rem; }

.services-section { overflow: hidden; background: var(--soft); }
.services-section::before,
.services-section::after { content: ""; position: absolute; border-radius: 50%; filter: blur(3px); }
.services-section::before { width: 280px; height: 280px; right: -100px; top: 120px; border: 50px solid rgba(32,167,96,.04); }
.services-section::after { width: 340px; height: 340px; left: -160px; bottom: 80px; border: 60px solid rgba(239,169,29,.045); }
.services-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card { position: relative; min-height: 310px; padding: 28px 24px; border: 1px solid rgba(8,94,55,.1); border-radius: 25px; background: #fff; box-shadow: 0 12px 35px rgba(3,45,29,.055); overflow: hidden; transition: .38s var(--ease); }
.service-card:hover { transform: translateY(-10px); border-color: rgba(8,112,68,.28); box-shadow: var(--shadow-md); }
.service-card::before { content: ""; position: absolute; inset: auto -20px -90px; height: 150px; border-radius: 50%; background: rgba(32,167,96,.06); transition: transform .35s ease; }
.service-card:hover::before { transform: scale(1.25); }
.service-number { position: absolute; left: 20px; top: 17px; color: rgba(8,112,68,.12); font-size: 2.3rem; font-weight: 900; }
.service-icon { display: grid; place-items: center; width: 58px; height: 58px; margin-bottom: 26px; border-radius: 18px; color: var(--green-700); background: linear-gradient(145deg, var(--green-100), #fff); box-shadow: inset 0 0 0 1px rgba(8,112,68,.08); transition: .35s ease; }
.service-card:hover .service-icon { color: #fff; background: var(--green-700); transform: rotate(-5deg) scale(1.05); }
.service-icon svg { width: 29px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { position: relative; z-index: 1; min-height: 58px; margin: 0 0 10px; color: var(--green-950); font-size: 1.06rem; line-height: 1.6; }
.service-card p { position: relative; z-index: 1; margin: 0; color: var(--muted); font-size: .86rem; line-height: 1.85; }
.card-line { position: absolute; z-index: 2; inset: auto 24px 20px auto; width: 36px; height: 3px; border-radius: 10px; background: linear-gradient(90deg, var(--green-500), var(--gold-400)); transition: width .3s ease; }
.service-card:hover .card-line { width: calc(100% - 48px); }
.service-card-featured { color: #fff; border-color: transparent; background: linear-gradient(145deg, var(--green-900), var(--green-700)); }
.service-card-featured .service-number { color: rgba(255,255,255,.12); }
.service-card-featured .service-icon { color: var(--green-950); background: var(--gold-400); }
.service-card-featured h3 { color: #fff; }
.service-card-featured p { color: rgba(255,255,255,.72); }
.service-card-featured::before { background: rgba(255,255,255,.07); }

.process-section { overflow: hidden; color: #fff; background: var(--green-950); }
.process-bg { position: absolute; inset: 0; opacity: .5; background: radial-gradient(circle at 12% 20%, rgba(32,167,96,.3), transparent 25%), radial-gradient(circle at 90% 80%, rgba(239,169,29,.12), transparent 25%); }
.process-bg::after { content: ""; position: absolute; inset: 0; opacity: .08; background-image: linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px); background-size: 70px 70px; }
.light-heading { position: relative; z-index: 2; }
.light-heading h2 { color: #fff; }
.light-heading p { color: rgba(255,255,255,.65); margin-right: 0; }
.light-heading .section-kicker { color: var(--gold-400); }
.process-track { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; align-items: center; gap: 10px; }
.process-step { position: relative; min-height: 300px; padding: 26px 20px; border: 1px solid rgba(255,255,255,.1); border-radius: 25px; background: rgba(255,255,255,.045); backdrop-filter: blur(10px); transition: .35s ease; }
.process-step:hover { transform: translateY(-8px); border-color: rgba(246,195,77,.3); background: rgba(255,255,255,.075); }
.step-dot { position: absolute; top: 16px; left: 17px; display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; color: var(--green-950); background: var(--gold-400); font-size: .78rem; font-weight: 900; }
.step-icon { display: grid; place-items: center; width: 62px; height: 62px; margin-bottom: 28px; border-radius: 18px; color: var(--gold-400); background: rgba(246,195,77,.09); }
.step-icon svg { width: 31px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.process-step h3 { margin: 0 0 12px; font-size: 1.08rem; }
.process-step p { margin: 0; color: rgba(255,255,255,.62); font-size: .83rem; }
.track-line { width: 36px; height: 2px; background: linear-gradient(90deg, rgba(246,195,77,.2), var(--gold-400), rgba(246,195,77,.2)); }

.values-section { overflow: hidden; background: #fff; }
.values-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: 80px; align-items: center; }
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 30px; }
.feature-list article { display: flex; gap: 12px; padding: 17px; border-radius: 18px; background: var(--green-50); transition: .3s ease; }
.feature-list article:hover { transform: translateY(-5px); background: var(--green-100); }
.feature-list article > span { flex: 0 0 27px; display: grid; place-items: center; width: 27px; height: 27px; border-radius: 9px; color: #fff; background: var(--green-600); font-weight: 900; }
.feature-list h3 { margin: 0 0 4px; color: var(--green-900); font-size: .94rem; }
.feature-list p { margin: 0; font-size: .78rem; line-height: 1.65; }
.values-panel { position: relative; min-height: 580px; display: grid; place-items: center; }
.values-panel::before { content: ""; position: absolute; width: 430px; height: 430px; border-radius: 50%; background: radial-gradient(circle, rgba(32,167,96,.16), rgba(32,167,96,.02) 60%, transparent 61%); }
.values-orbit { position: absolute; width: 430px; height: 430px; border: 1px dashed rgba(8,112,68,.22); border-radius: 50%; animation: spin 38s linear infinite; }
.value-center { position: relative; z-index: 2; width: 215px; height: 215px; display: grid; place-items: center; align-content: center; border: 10px solid #fff; border-radius: 50%; background: #fff; box-shadow: var(--shadow-lg); }
.value-center img { width: 145px; }
.value-center strong { color: var(--green-800); font-size: .86rem; }
.value-pill { position: absolute; z-index: 3; display: flex; align-items: center; gap: 8px; padding: 10px 15px; border: 1px solid var(--line); border-radius: 999px; color: var(--green-900); background: rgba(255,255,255,.92); box-shadow: var(--shadow-sm); font-size: .82rem; font-weight: 800; white-space: nowrap; }
.value-pill span { width: 9px; height: 9px; border-radius: 50%; background: var(--gold-400); }
.pill-1 { top: 65px; right: 50%; transform: translateX(50%); }
.pill-2 { top: 165px; right: 8px; }
.pill-3 { bottom: 160px; right: 15px; }
.pill-4 { bottom: 58px; right: 50%; transform: translateX(50%); }
.pill-5 { bottom: 160px; left: 6px; }
.pill-6 { top: 165px; left: -6px; }

.quote-section { position: relative; overflow: hidden; padding: 66px 0; color: #fff; background: linear-gradient(115deg, var(--green-800), var(--green-600)); }
.quote-section::before { content: ""; position: absolute; inset: 0; opacity: .12; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cpath d='M90 10c0 45-22 70-68 80 46 10 68 35 68 80 0-45 22-70 68-80-46-10-68-35-68-80Z' fill='none' stroke='%23fff' stroke-width='1'/%3E%3C/svg%3E"); }
.quote-inner { position: relative; z-index: 2; display: flex; align-items: center; gap: 26px; }
.quote-mark { color: var(--gold-400); font-family: Georgia, serif; font-size: 8rem; line-height: .6; }
.quote-inner > div { flex: 1; }
.quote-inner p { margin: 0 0 5px; font-size: clamp(1.5rem, 3vw, 2.35rem); font-weight: 900; line-height: 1.5; }
.quote-inner strong { color: rgba(255,255,255,.68); font-size: .88rem; }

.contact-section { background: linear-gradient(180deg, #fbfdf9, #f1f7f2); }
.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 28px; align-items: stretch; }
.contact-info { display: grid; gap: 15px; }
.contact-card { display: flex; gap: 16px; align-items: flex-start; padding: 24px; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: var(--shadow-sm); transition: .3s ease; }
.contact-card:hover { transform: translateX(-5px); box-shadow: var(--shadow-md); }
.contact-icon { flex: 0 0 52px; display: grid; place-items: center; width: 52px; height: 52px; border-radius: 16px; color: var(--green-700); background: var(--green-100); }
.contact-icon svg { width: 26px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact-card small { color: var(--muted); font-size: .72rem; }
.contact-card h3 { margin: 2px 0; color: var(--green-950); font-size: 1rem; }
.contact-card a { transition: color .2s ease; }
.contact-card a:hover { color: var(--green-600); }
.contact-card div > a { color: var(--green-700); font-size: .8rem; font-weight: 800; }
.contact-card p { margin: 4px 0 0; color: var(--muted); font-size: .76rem; }
.contact-card-domain { background: linear-gradient(145deg, var(--green-950), var(--green-700)); }
.contact-card-domain .contact-icon { color: var(--gold-400); background: rgba(246,195,77,.1); }
.contact-card-domain small,
.contact-card-domain p { color: rgba(255,255,255,.62); }
.contact-card-domain h3 a { color: #fff; direction: ltr; display: inline-block; }
.contact-form-wrap { padding: 34px; border: 1px solid rgba(8,94,55,.1); border-radius: 30px; background: #fff; box-shadow: var(--shadow-md); }
.form-head { margin-bottom: 26px; }
.form-head span { color: var(--green-600); font-size: .78rem; font-weight: 900; }
.form-head h3 { margin: 4px 0 6px; color: var(--green-950); font-size: 1.55rem; }
.form-head p { margin: 0; color: var(--muted); font-size: .86rem; }
form { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { display: grid; gap: 7px; color: #31433a; font-size: .82rem; font-weight: 800; }
input, select, textarea {
  width: 100%;
  border: 1px solid #dce7df;
  border-radius: 14px;
  outline: none;
  color: var(--ink);
  background: #fbfdfb;
  transition: border .2s ease, box-shadow .2s ease, background .2s ease;
}
input, select { height: 51px; padding: 0 14px; }
textarea { min-height: 130px; padding: 13px 14px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--green-500); background: #fff; box-shadow: 0 0 0 4px rgba(32,167,96,.1); }
.input-error { border-color: #c43e3e !important; box-shadow: 0 0 0 4px rgba(196,62,62,.08) !important; }
.consent-label { grid-template-columns: auto 1fr; align-items: start; gap: 10px; color: var(--muted); font-weight: 500; line-height: 1.6; }
.consent-label input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--green-600); }
.btn-submit { justify-self: start; min-width: 210px; }
.form-status { min-height: 24px; margin: -4px 0 0; color: #b43232; font-size: .8rem; font-weight: 700; }

.site-footer { position: relative; overflow: hidden; color: rgba(255,255,255,.75); background: var(--green-950); }
.footer-shape { position: absolute; width: 650px; height: 650px; left: -300px; top: -320px; border: 90px solid rgba(255,255,255,.025); border-radius: 50%; }
.footer-main { position: relative; z-index: 2; display: grid; grid-template-columns: 1.5fr .72fr .8fr 1fr; gap: 45px; padding-top: 78px; padding-bottom: 58px; }
.brand-footer { color: #fff; }
.brand-footer img { width: 76px; height: 76px; }
.footer-brand > p { max-width: 420px; margin: 18px 0; font-size: .86rem; }
.footer-phones { display: flex; gap: 12px; direction: ltr; justify-content: flex-end; }
.footer-phones a { padding: 7px 10px; border: 1px solid rgba(255,255,255,.12); border-radius: 10px; color: #fff; font-size: .78rem; }
.footer-col { display: flex; flex-direction: column; gap: 9px; }
.footer-col h2 { margin: 0 0 14px; color: #fff; font-size: .98rem; }
.footer-col a { width: fit-content; font-size: .82rem; transition: color .2s ease, transform .2s ease; }
.footer-col > a:hover { color: var(--gold-400); transform: translateX(-4px); }
.footer-cta p { margin: 0 0 14px; font-size: .8rem; }
.footer-bottom { position: relative; z-index: 2; border-top: 1px solid rgba(255,255,255,.08); }
.footer-bottom-inner { min-height: 68px; display: flex; justify-content: space-between; align-items: center; gap: 18px; }
.footer-bottom p { margin: 0; font-size: .76rem; }
.footer-bottom a { color: var(--gold-400); font-weight: 800; }

.floating-whatsapp {
  position: fixed;
  z-index: 900;
  bottom: 22px;
  right: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 52px;
  padding: 9px 15px;
  border-radius: 999px;
  color: #fff;
  background: #1caf5a;
  box-shadow: 0 16px 35px rgba(21,151,76,.34);
  transition: .28s var(--ease);
}
.floating-whatsapp::before { content: ""; position: absolute; inset: -5px; z-index: -1; border: 1px solid rgba(28,175,90,.4); border-radius: inherit; animation: waPulse 2s infinite; }
@keyframes waPulse { 70% { transform: scale(1.14); opacity: 0; } }
.floating-whatsapp:hover { transform: translateY(-4px) scale(1.02); }
.floating-whatsapp svg { width: 26px; fill: currentColor; }
.floating-whatsapp span { font-size: .8rem; font-weight: 900; }
.back-to-top { position: fixed; z-index: 890; bottom: 24px; left: 22px; width: 46px; height: 46px; display: grid; place-items: center; border: 0; border-radius: 14px; color: #fff; background: var(--green-800); box-shadow: var(--shadow-sm); opacity: 0; visibility: hidden; transform: translateY(12px); transition: .3s ease; }
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top svg { width: 22px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.install-panel {
  position: fixed;
  z-index: 1200;
  right: 20px;
  bottom: 88px;
  width: min(480px, calc(100% - 40px));
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 16px;
  border: 1px solid rgba(8,94,55,.13);
  border-radius: 22px;
  background: rgba(255,255,255,.96);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
  animation: installIn .55s var(--ease);
}
.install-panel[hidden] { display: none; }
@keyframes installIn { from { opacity: 0; transform: translateY(25px) scale(.96); } }
.install-panel > img { width: 58px; height: 58px; border-radius: 16px; }
.install-copy { min-width: 0; }
.install-copy strong { display: block; color: var(--green-950); font-size: .93rem; }
.install-copy p { margin: 2px 0 0; color: var(--muted); font-size: .73rem; line-height: 1.6; }
.install-copy small { display: block; margin-top: 4px; color: var(--green-700); font-size: .68rem; font-weight: 700; line-height: 1.5; }
.install-action { min-height: 42px; padding: 8px 14px; font-size: .8rem; }
.install-close { position: absolute; top: 4px; left: 8px; width: 26px; height: 26px; border: 0; color: #8a978e; background: transparent; font-size: 1.25rem; }
.toast { position: fixed; z-index: 1300; left: 50%; bottom: 26px; max-width: min(420px, calc(100% - 30px)); padding: 12px 18px; border-radius: 13px; color: #fff; background: var(--green-950); box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transform: translate(-50%, 12px); transition: .3s ease; font-size: .82rem; text-align: center; }
.toast.show { opacity: 1; visibility: visible; transform: translate(-50%, 0); }

.reveal-up, .reveal-left, .reveal-right, .reveal-scale { opacity: 0; transition: opacity .85s var(--ease), transform .85s var(--ease); transition-delay: var(--delay, 0ms); }
.reveal-up { transform: translateY(42px); }
.reveal-left { transform: translateX(-45px); }
.reveal-right { transform: translateX(45px); }
.reveal-scale { transform: scale(.9); }
.revealed { opacity: 1; transform: none; }

@media (max-width: 1120px) {
  .nav-link { padding-inline: 8px; font-size: .82rem; }
  .install-nav-btn { display: none; }
  .hero-layout { gap: 30px; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .process-track { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .track-line { display: none; }
  .footer-main { grid-template-columns: 1.35fr .7fr .8fr; }
  .footer-cta { grid-column: 1 / -1; padding-top: 12px; }
}

@media (max-width: 900px) {
  :root { --header-height: 78px; }
  .topbar { display: none; }
  .navbar { background: rgba(3,45,29,.88); backdrop-filter: blur(14px); }
  .site-header.scrolled .navbar { background: rgba(255,255,255,.95); }
  .nav-inner { min-height: 74px; }
  .brand img { width: 56px; height: 56px; }
  .brand strong { font-size: .96rem; }
  .brand small { font-size: .61rem; }
  .menu-toggle { display: block; color: inherit; }
  .nav-menu {
    position: fixed;
    inset: 74px 16px auto;
    display: grid;
    gap: 4px;
    max-height: calc(100vh - 90px);
    padding: 16px;
    border: 1px solid rgba(8,94,55,.1);
    border-radius: 22px;
    color: var(--ink);
    background: rgba(255,255,255,.98);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px) scale(.98);
    transition: .28s var(--ease);
  }
  .nav-menu.open { opacity: 1; visibility: visible; transform: none; }
  .nav-link { padding: 12px 14px; }
  .nav-link.active, .nav-link:hover { color: var(--green-700); background: var(--green-50); }
  .nav-link::after { display: none; }
  .install-nav-btn { display: flex; width: 100%; justify-content: center; margin-top: 7px; border-color: var(--line); color: var(--green-900); background: var(--green-50); }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { min-height: auto; }
  .hero-layout { grid-template-columns: 1fr; padding-top: 135px; padding-bottom: 85px; text-align: center; }
  .hero-content { max-width: 760px; margin-inline: auto; }
  .eyebrow { justify-content: center; }
  .hero-actions, .hero-trust { justify-content: center; }
  .hero-visual { min-height: 500px; }
  .scroll-cue { display: none; }
  .intro-grid { grid-template-columns: 1fr; }
  .intro-item { min-height: 115px; border-left: 0; border-bottom: 1px solid var(--line); }
  .intro-item:last-child { border-bottom: 0; }
  .about-layout, .values-layout, .contact-layout { grid-template-columns: 1fr; }
  .about-layout, .values-layout { gap: 55px; }
  .about-visual { order: 2; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .values-panel { min-height: 560px; }
  .contact-info { grid-template-columns: repeat(3, 1fr); }
  .contact-card { display: block; }
  .contact-icon { margin-bottom: 13px; }
  .footer-main { grid-template-columns: 1.4fr 1fr 1fr; gap: 30px; }
}

@media (max-width: 660px) {
  .container { width: min(100% - 26px, var(--container)); }
  .section { padding: 78px 0; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2, .section-copy h2, .values-copy h2 { font-size: 2.1rem; }
  .hero-layout { padding-top: 112px; gap: 22px; }
  .hero h1 { font-size: clamp(2.55rem, 12vw, 4rem); }
  .hero-content > p { font-size: .98rem; line-height: 1.9; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .hero-trust { display: grid; grid-template-columns: 1fr; width: fit-content; margin-inline: auto; text-align: right; }
  .hero-visual { min-height: 390px; }
  .logo-stage { width: 285px; }
  .orbit-one { width: 350px; height: 350px; }
  .orbit-two { width: 405px; height: 405px; }
  .floating-card { min-width: 160px; padding: 9px 11px; }
  .card-seeds { right: -4px; top: 48px; }
  .card-support { left: -5px; bottom: 70px; }
  .mini-icon { width: 36px; height: 36px; }
  .floating-card strong { font-size: .73rem; }
  .floating-card small { font-size: .6rem; }
  .hero-domain { bottom: 7px; }
  .intro-item { padding: 25px 16px; }
  .intro-item > span { font-size: 2.5rem; }
  .about-layout { gap: 35px; }
  .field-card { transform: none; border-radius: 26px; }
  .field-badge { inset: auto 14px 14px; padding: 13px 15px; }
  .services-grid, .process-track, .feature-list { grid-template-columns: 1fr; }
  .service-card { min-height: 280px; }
  .process-step { min-height: 250px; }
  .values-panel { min-height: 520px; transform: scale(.88); margin: -35px -20px; }
  .quote-inner { flex-direction: column; align-items: flex-start; }
  .quote-mark { display: none; }
  .quote-inner .btn { width: 100%; }
  .contact-info { grid-template-columns: 1fr; }
  .contact-card { display: flex; }
  .contact-form-wrap { padding: 24px 18px; border-radius: 23px; }
  .form-row { grid-template-columns: 1fr; }
  .btn-submit { width: 100%; }
  .footer-main { grid-template-columns: 1fr 1fr; padding-top: 60px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-cta { grid-column: 1 / -1; }
  .footer-bottom-inner { flex-direction: column; justify-content: center; text-align: center; padding: 18px 0; }
  .floating-whatsapp { right: 14px; bottom: 14px; width: 52px; padding: 0; justify-content: center; }
  .floating-whatsapp span { display: none; }
  .back-to-top { left: 14px; bottom: 14px; }
  .install-panel { right: 12px; bottom: 78px; width: calc(100% - 24px); grid-template-columns: auto 1fr; }
  .install-action { grid-column: 1 / -1; width: 100%; }
}

@media (max-width: 430px) {
  .brand small { display: none; }
  .brand img { width: 52px; height: 52px; }
  .hero h1 { font-size: 2.5rem; }
  .hero-visual { min-height: 350px; }
  .logo-stage { width: 245px; }
  .orbit-one { width: 300px; height: 300px; }
  .orbit-two { width: 345px; height: 345px; }
  .card-seeds { top: 25px; }
  .card-support { bottom: 50px; }
  .values-panel { transform: scale(.78); margin: -60px -55px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand, .footer-cta { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal-up, .reveal-left, .reveal-right, .reveal-scale { opacity: 1; transform: none; }
}

/* Mobile viewport stability fix — prevents horizontal page shifting on RTL phones */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

main,
.site-header,
.hero,
section,
footer {
  width: 100%;
  max-width: 100%;
}

@supports not (overflow: clip) {
  html,
  body { overflow-x: hidden; }
}

@media (max-width: 660px) {
  .container {
    width: calc(100% - 28px);
    max-width: calc(100% - 28px);
    margin-inline: auto;
  }

  .nav-inner {
    width: calc(100% - 24px);
    max-width: calc(100% - 24px);
    gap: 12px;
  }

  .brand {
    min-width: 0;
    max-width: calc(100% - 58px);
  }

  .brand span { min-width: 0; }
  .brand strong,
  .brand small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .menu-toggle {
    flex: 0 0 46px;
  }

  .nav-menu {
    right: 12px;
    left: 12px;
    width: auto;
    max-width: none;
  }

  .hero {
    overflow: hidden;
  }

  .hero-layout {
    width: calc(100% - 28px);
    max-width: calc(100% - 28px);
    margin-inline: auto;
    padding-inline: 0;
  }

  .hero-content,
  .hero-content > *,
  .hero-actions,
  .hero-trust {
    min-width: 0;
    max-width: 100%;
  }

  .eyebrow {
    max-width: 100%;
    white-space: normal;
    text-align: center;
    line-height: 1.65;
  }

  .hero h1 {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    font-size: clamp(2.15rem, 10.5vw, 3.15rem);
    line-height: 1.22;
    letter-spacing: -.035em;
    overflow-wrap: anywhere;
  }

  .hero h1 br { display: none; }
  .hero h1 span { display: block; margin-top: 4px; }

  .hero-content > p {
    width: 100%;
    max-width: 100%;
    padding-inline: 2px;
    overflow-wrap: anywhere;
  }

  .hero-actions .btn {
    max-width: 100%;
    padding-inline: 16px;
  }

  .hero-trust {
    width: 100%;
    margin-inline: 0;
    text-align: right;
  }

  .hero-trust > div {
    width: 100%;
    justify-content: center;
  }

  .hero-visual {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .orbit-one { width: min(350px, 88vw); height: min(350px, 88vw); }
  .orbit-two { width: min(405px, 98vw); height: min(405px, 98vw); }
  .logo-stage { width: min(285px, 72vw); }

  .floating-card {
    min-width: 0;
    max-width: 155px;
  }

  .card-seeds { right: 2px; }
  .card-support { left: 2px; }
}

@media (max-width: 430px) {
  .container,
  .hero-layout {
    width: calc(100% - 24px);
    max-width: calc(100% - 24px);
  }

  .hero h1 { font-size: clamp(2rem, 10vw, 2.6rem); }
  .hero-content > p { font-size: .94rem; }
  .logo-stage { width: min(240px, 68vw); }
  .orbit-one { width: min(290px, 84vw); height: min(290px, 84vw); }
  .orbit-two { width: min(335px, 96vw); height: min(335px, 96vw); }
}
