:root {
  --green-950: #10281f;
  --green-900: #173729;
  --green-800: #174b33;
  --green-700: #1f6544;
  --green-600: #298058;
  --green-100: #e4f2e8;
  --green-50: #f3faf4;
  --gold-600: #b98320;
  --gold-500: #d4a33b;
  --gold-200: #f4e3b2;
  --ink: #14261d;
  --body: #42544b;
  --muted: #6c7a72;
  --line: #dce7df;
  --surface: #ffffff;
  --surface-2: #f7fbf7;
  --bg: #fbfdf9;
  --shadow: 0 24px 70px rgba(16, 40, 31, 0.16);
  --shadow-soft: 0 14px 34px rgba(16, 40, 31, 0.1);
  --radius: 18px;
  --radius-sm: 12px;
  --maxw: 1180px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Aptos", "Segoe UI", system-ui, sans-serif;
  background:
    radial-gradient(circle at 12% 4%, rgba(212, 163, 59, 0.16), transparent 28rem),
    linear-gradient(180deg, #fbfdf9 0%, #f6fbf6 45%, #ffffff 100%);
  color: var(--body);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--ink); line-height: 1.05; letter-spacing: 0; }
h1 { font-size: clamp(2.3rem, 4.4vw, 3.95rem); margin-bottom: 1rem; max-width: 13ch; }
h2 { font-size: clamp(2rem, 4vw, 3.55rem); margin-bottom: 1rem; }
h3 { font-size: 1.25rem; margin-bottom: .75rem; }
p { margin-bottom: 1rem; }

.shell { width: min(100% - 40px, var(--maxw)); margin-inline: auto; }
.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 20;
  padding: .7rem 1rem;
  border-radius: 999px;
  background: var(--green-900);
  color: #fff;
}
.skip-link:focus { top: 1rem; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 253, 249, .88);
  border-bottom: 1px solid rgba(220, 231, 223, .85);
  backdrop-filter: blur(18px);
}
.nav-shell {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-weight: 800;
  color: var(--ink);
}
.brand small { display: block; color: var(--muted); font-size: .8rem; font-weight: 700; margin-top: -.2rem; }
.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--green-600), var(--green-900));
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.28), var(--shadow-soft);
}
.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: .35rem;
}
.site-nav a {
  padding: .65rem .85rem;
  border-radius: 999px;
  color: #344a3f;
  font-weight: 700;
  font-size: .95rem;
}
.site-nav a:hover, .site-nav a:focus-visible { background: var(--green-100); color: var(--green-900); }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  margin-left: auto;
}
.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  border-radius: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: .75rem 1.05rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.1;
  transition: transform .24s var(--ease), box-shadow .24s var(--ease), background .24s var(--ease);
}
.btn:hover, .btn:focus-visible { transform: translateY(-2px); }
.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, var(--green-600), var(--green-800));
  box-shadow: 0 12px 24px rgba(31, 101, 68, .22);
}
.btn-secondary {
  color: var(--green-900);
  background: #fff;
  border-color: var(--line);
  box-shadow: var(--shadow-soft);
}
.btn-gold {
  color: var(--green-950);
  background: linear-gradient(180deg, #f0c96b, var(--gold-500));
  box-shadow: 0 16px 34px rgba(185, 131, 32, .2);
}
.btn-large { min-height: 52px; padding-inline: 1.35rem; }

.hero { padding: clamp(2.4rem, 5vw, 4.8rem) 0 3.4rem; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(460px, 1.14fr);
  gap: clamp(2.4rem, 5.4vw, 5.4rem);
  align-items: start;
}
.eyebrow, .kicker {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: 1rem;
  color: var(--green-700);
  font-size: .8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.eyebrow span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gold-500);
  box-shadow: 0 0 0 5px var(--gold-200);
}
.hero .eyebrow {
  gap: .45rem;
  margin-bottom: .75rem;
  font-size: .76rem;
}
.hero .eyebrow span {
  width: 8px;
  height: 8px;
  box-shadow: 0 0 0 4px var(--gold-200);
}
.hero-sub {
  max-width: 39rem;
  color: #53665c;
  font-size: clamp(1.04rem, 1.7vw, 1.22rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .78rem; margin: 1.65rem 0 1.8rem; }
.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .8rem;
  margin: 0;
  max-width: 44rem;
}
.hero-proof div {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.7);
}
.hero-proof dt { color: var(--green-800); font-weight: 900; }
.hero-proof dd { margin: .25rem 0 0; font-size: .92rem; color: var(--muted); }

.hero-panel {
  position: relative;
  margin-top: -.35rem;
  min-height: clamp(500px, 45vw, 610px);
  border: 1px solid rgba(220, 231, 223, .9);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--green-900);
}
.hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16,40,31,.05), rgba(16,40,31,.42));
  pointer-events: none;
}
.hero-panel img {
  width: 100%;
  height: 100%;
  min-height: clamp(500px, 45vw, 610px);
  object-fit: cover;
  object-position: 54% center;
}
.dashboard-card {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 16px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 14px 30px rgba(16, 40, 31, .15);
  backdrop-filter: blur(12px);
}
.status-card {
  right: 1rem;
  top: 1rem;
  width: min(188px, calc(100% - 2rem));
  padding: .85rem;
}
.status-card strong { display: block; color: var(--green-900); font-size: 2.35rem; line-height: 1; margin: .35rem 0; }
.status-card small { display: block; color: var(--body); font-size: .82rem; line-height: 1.35; }
.pill {
  display: inline-flex;
  padding: .28rem .48rem;
  border-radius: 999px;
  background: var(--green-100);
  color: var(--green-800);
  font-size: .68rem;
  font-weight: 900;
}
.tasks-card {
  left: 1rem;
  bottom: 1rem;
  display: grid;
  gap: .45rem;
  width: min(238px, calc(100% - 2rem));
  padding: .85rem;
}
.dot-line { display: flex; align-items: center; gap: .5rem; color: var(--ink); font-size: .88rem; font-weight: 800; }
.dot-line i { width: 8px; height: 8px; border-radius: 999px; background: var(--gold-500); }

.trust-strip { padding: 1rem 0 3.5rem; }
.trust-grid, .card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.trust-grid article, .solution-card, .showcase-card, .process-grid li, .about-notes article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.82);
  box-shadow: 0 1px 0 rgba(255,255,255,.8);
}
.trust-grid article { padding: 1.15rem; }
.trust-grid h2 { font-size: 1.05rem; margin-bottom: .35rem; }
.trust-grid p { margin: 0; font-size: .93rem; color: var(--muted); }
.mini-icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: .9rem;
  border-radius: 10px;
  background: var(--green-100);
  color: var(--green-800);
  font-size: .78rem;
  font-weight: 900;
}

.section { padding: clamp(4rem, 8vw, 6.5rem) 0; }
.section-head { max-width: 760px; margin-bottom: 2rem; }
.section-head p:not(.kicker) { color: var(--muted); font-size: 1.08rem; }
.section-head-split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 2rem;
  align-items: end;
}
.solutions-grid { grid-template-columns: repeat(3, 1fr); }
.solution-card { padding: 1.35rem; min-height: 270px; display: flex; flex-direction: column; }
.solution-card p { color: var(--muted); }
.solution-card a {
  margin-top: auto;
  color: var(--green-700);
  font-weight: 900;
}
.featured-card {
  background: linear-gradient(145deg, var(--green-900), var(--green-700));
  color: rgba(255,255,255,.82);
  border-color: rgba(255,255,255,.16);
  box-shadow: var(--shadow);
}
.featured-card h3, .featured-card a { color: #fff; }
.featured-card p { color: rgba(255,255,255,.76); }
.tag, .showcase-status {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 1rem;
  padding: .35rem .55rem;
  border-radius: 999px;
  background: var(--green-50);
  color: var(--green-700);
  font-size: .75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.featured-card .tag { background: rgba(255,255,255,.14); color: var(--gold-200); }

.audience-section, .showcases, .about-section {
  background: var(--surface-2);
  border-block: 1px solid var(--line);
}

.audience-grid {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}
.audience-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.audience-list article, .package-card, .why-list article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.86);
  box-shadow: 0 1px 0 rgba(255,255,255,.8);
}
.audience-list article {
  padding: 1.15rem;
}
.audience-list article:last-child {
  grid-column: 1 / -1;
}
.audience-list span {
  display: inline-flex;
  margin-bottom: .75rem;
  color: var(--green-700);
  font-size: .75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.audience-list p { color: var(--muted); margin-bottom: 0; }

.packages-section {
  background:
    linear-gradient(180deg, #fff, #fbfdf9);
}
.package-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.package-card {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 1.25rem;
}
.package-card .package-for {
  color: var(--green-800);
  font-weight: 800;
}
.package-card ul {
  display: grid;
  gap: .55rem;
  padding: 0;
  margin: .25rem 0 1.25rem;
  list-style: none;
  color: var(--muted);
}
.package-card li {
  position: relative;
  padding-left: 1.1rem;
}
.package-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-500);
}
.package-card a {
  margin-top: auto;
  color: var(--green-700);
  font-weight: 900;
}
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.showcase-card {
  position: relative;
  min-height: 240px;
  padding: 1.2rem;
  overflow: hidden;
}
.showcase-card::after {
  content: "";
  position: absolute;
  inset: auto 1rem 1rem auto;
  width: 88px;
  height: 88px;
  border: 1px solid rgba(212,163,59,.42);
  border-radius: 24px;
  transform: rotate(12deg);
  background: linear-gradient(145deg, rgba(212,163,59,.22), rgba(31,101,68,.08));
}
.showcase-card p { color: var(--muted); position: relative; z-index: 1; }
.showcase-status { background: #fff7df; color: #8b6117; }

.why-section {
  background:
    radial-gradient(circle at 92% 8%, rgba(212, 163, 59, .18), transparent 23rem),
    var(--green-950);
  color: rgba(255,255,255,.76);
}
.why-grid {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}
.why-section h2, .why-section h3 { color: #fff; }
.why-section .kicker { color: var(--gold-200); }
.why-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.why-list article {
  padding: 1.2rem;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.16);
}
.why-list p { margin-bottom: 0; color: rgba(255,255,255,.7); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
.process-grid li { padding: 1.25rem; }
.process-grid span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 1rem;
  border-radius: 14px;
  background: var(--green-900);
  color: var(--gold-200);
  font-weight: 900;
}
.process-grid p { color: var(--muted); margin-bottom: 0; }

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, 1fr);
  gap: clamp(1.2rem, 4vw, 3rem);
  align-items: stretch;
}
.about-card {
  padding: clamp(1.5rem, 4vw, 3rem);
  border-radius: 28px;
  background: linear-gradient(145deg, var(--green-950), var(--green-800));
  color: rgba(255,255,255,.78);
  box-shadow: var(--shadow);
}
.about-card h2 { color: #fff; }
.about-card .kicker { color: var(--gold-200); }
.about-notes { display: grid; gap: 1rem; }
.about-notes article { padding: 1.25rem; }
.about-notes strong { color: var(--green-800); font-size: 1.05rem; }
.about-notes p { margin: .45rem 0 0; color: var(--muted); }

.contact-section { background: linear-gradient(180deg, #fff, #f7fbf7); }
.contact-card {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(16,40,31,.96), rgba(31,101,68,.94)),
    var(--green-900);
  color: rgba(255,255,255,.78);
  box-shadow: var(--shadow);
}
.contact-card h2 { color: #fff; }
.contact-card .kicker { color: var(--gold-200); }
.mail-link { color: var(--gold-200); font-weight: 900; }
.contact-form {
  display: grid;
  gap: .9rem;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 22px;
  background: rgba(255,255,255,.08);
}
.contact-form label { display: grid; gap: .35rem; color: rgba(255,255,255,.86); font-weight: 800; }
.contact-form input, .contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 14px;
  background: rgba(255,255,255,.95);
  color: var(--ink);
  padding: .85rem .95rem;
}
.contact-form textarea { resize: vertical; }
.form-note { margin: 0; color: rgba(255,255,255,.62); font-size: .9rem; }

.site-footer {
  padding: 3rem 0 1.5rem;
  background: var(--green-950);
  color: rgba(255,255,255,.68);
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) 1fr 1fr;
  gap: 2rem;
}
.footer-brand, .footer-brand small, .site-footer h2 { color: #fff; }
.site-footer h2 { font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .8rem; }
.site-footer nav { display: grid; align-content: start; gap: .45rem; }
.site-footer a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .95rem;
}

.reveal { animation: rise .75s var(--ease) both; }
.delay-1 { animation-delay: .12s; }
@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
}

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    inset: 78px 0 auto 0;
    display: none;
    padding: 1rem 20px 1.2rem;
    background: rgba(251,253,249,.98);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
  }
  .site-nav.is-open { display: grid; }
  .site-nav a { border-radius: 12px; padding: .85rem; }
  .nav-cta { display: none; }
  .hero-grid, .audience-grid, .about-grid, .contact-card, .section-head-split, .why-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 2.25rem; }
  h1 { max-width: 13ch; }
  .hero-panel { margin-top: 0; }
  .hero-panel, .hero-panel img { min-height: 430px; }
  .hero-panel img { object-position: 54% center; }
  .trust-grid, .showcase-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .solutions-grid { grid-template-columns: repeat(2, 1fr); }
  .package-grid, .why-list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .shell { width: min(100% - 28px, var(--maxw)); }
  .hero { padding-top: 2.15rem; }
  .hero .eyebrow { margin-bottom: .6rem; font-size: .7rem; }
  h1 { font-size: clamp(2.05rem, 9.8vw, 2.68rem); max-width: 12.5ch; }
  .hero-sub { font-size: 1rem; }
  .hero-actions { gap: .62rem; margin: 1.25rem 0 1.45rem; }
  .hero-actions, .footer-bottom { flex-direction: column; }
  .hero-actions .btn { width: 100%; min-height: 46px; }
  .hero-proof, .trust-grid, .solutions-grid, .audience-list, .package-grid, .showcase-grid, .why-list, .process-grid, .footer-grid { grid-template-columns: 1fr; }
  .audience-list article:last-child { grid-column: auto; }
  .hero-panel, .hero-panel img { min-height: 360px; }
  .hero-panel { border-radius: 24px; }
  .hero-panel img { object-position: 50% center; }
  .status-card { width: min(156px, calc(100% - 2rem)); padding: .7rem; }
  .status-card strong { font-size: 1.9rem; }
  .status-card small { font-size: .72rem; }
  .tasks-card { width: min(210px, calc(100% - 2rem)); padding: .7rem; }
  .dot-line { font-size: .78rem; }
  .dashboard-card { border-radius: 14px; }
}
