:root {
  --green-950: #07271d;
  --green-900: #0b3d2e;
  --green-800: #115440;
  --green-700: #166851;
  --gold-500: #f4c542;
  --gold-600: #e2b12a;
  --white: #ffffff;
  --ink-900: #17221d;
  --ink-700: #333333;
  --ink-600: #555555;
  --line: #dde6df;
  --soft: #f5f7f4;
  --soft-2: #fafbf9;
  --shadow-sm: 0 10px 30px rgba(11, 61, 46, 0.08);
  --shadow-lg: 0 28px 80px rgba(7, 39, 29, 0.14);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --container: 1180px;
  --header-height: 82px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink-700);
  background: linear-gradient(180deg, #fcfdfa 0%, #ffffff 24%, #f7faf7 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
  border: 0;
  background: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  overflow: clip;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  pointer-events: none;
  z-index: -1;
}

.page-shell::before {
  width: 480px;
  height: 480px;
  left: -160px;
  top: 120px;
  background: radial-gradient(circle, rgba(244, 197, 66, 0.16) 0%, rgba(244, 197, 66, 0) 72%);
}

.page-shell::after {
  width: 640px;
  height: 640px;
  right: -260px;
  top: 340px;
  background: radial-gradient(circle, rgba(17, 84, 64, 0.12) 0%, rgba(17, 84, 64, 0) 72%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(252, 253, 250, 0.88);
  border-bottom: 1px solid rgba(221, 230, 223, 0.85);
}

.site-header__inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--green-900);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand__highlight {
  color: #F4C542; /* your yellow */
}

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

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand__name {
  font-size: 1.1rem;
}

.brand__tag {
  font-size: 0.73rem;
  font-weight: 700;
  color: rgba(11, 61, 46, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav__links a {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(23, 34, 29, 0.9);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav__links a:hover,
.nav__links a.is-active {
  background: rgba(11, 61, 46, 0.08);
  color: var(--green-900);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(11, 61, 46, 0.14);
  color: var(--green-900);
}

.section {
  padding: 5rem 0;
}

.section--tight {
  padding: 3.25rem 0;
}

.section--soft {
  background: linear-gradient(180deg, rgba(245, 247, 244, 0.75) 0%, rgba(255, 255, 255, 0.96) 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(11, 61, 46, 0.08);
  color: var(--green-900);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.hero__grid,
.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 2rem;
  align-items: center;
}

.hero__copy h1,
.page-hero h1,
.section-title {
  margin: 0;
  font-family: "Roboto", "Manrope", "Segoe UI", sans-serif;
  color: var(--ink-900);
  letter-spacing: 0;
  line-height: 1.08;
}

.hero__copy h1,
.page-hero h1 {
  font-size: clamp(2.55rem, 5vw, 4.75rem);
  font-weight: 700;
}

.hero__copy p,
.page-hero p,
.section-copy {
  margin: 1.15rem 0 0;
  max-width: 62ch;
  color: var(--ink-600);
  font-size: 1.05rem;
}

.hero__actions,
.button-row {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

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

.metric-card {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(11, 61, 46, 0.08);
  box-shadow: var(--shadow-sm);
}

.metric-card strong {
  display: block;
  color: var(--green-900);
  font-size: 1.15rem;
  letter-spacing: -0.04em;
}

.metric-card span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.88rem;
  color: var(--ink-600);
}

.hero-card {
  position: relative;
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(11, 61, 46, 0.96) 0%, rgba(17, 84, 64, 0.96) 100%);
  color: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.hero-card::before,
.hero-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  opacity: 0.25;
}

.hero-card::before {
  width: 220px;
  height: 220px;
  top: -80px;
  right: -60px;
  border: 1px dashed rgba(255, 255, 255, 0.45);
}

.hero-card::after {
  width: 320px;
  height: 320px;
  inset: auto auto -140px -100px;
  background: radial-gradient(circle, rgba(244, 197, 66, 0.24) 0%, rgba(244, 197, 66, 0) 68%);
}

.hero-card__map {
  min-height: 240px;
  padding: 1rem 0 1.5rem;
  position: relative;
}

.route-dot,
.route-point {
  position: absolute;
  border-radius: 999px;
}

.route-dot {
  width: 12px;
  height: 12px;
  background: var(--gold-500);
  box-shadow: 0 0 0 8px rgba(244, 197, 66, 0.14);
}

.route-dot--a {
  top: 8%;
  left: 18%;
}

.route-dot--b {
  top: 42%;
  left: 64%;
}

.route-dot--c {
  bottom: 18%;
  left: 32%;
}

.route-point {
  width: 9px;
  height: 9px;
  background: rgba(255, 255, 255, 0.78);
}

.route-point--a {
  top: 15%;
  right: 18%;
}

.route-point--b {
  bottom: 22%;
  right: 14%;
}

.hero-card svg {
  width: 100%;
  height: auto;
  opacity: 0.9;
}

.hero-card__list {
  display: grid;
  gap: 0.9rem;
}

.hero-card__item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.hero-card__icon {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(244, 197, 66, 0.16);
  color: var(--gold-500);
  flex-shrink: 0;
}

.hero-card__item strong {
  display: block;
  font-size: 0.98rem;
}

.hero-card__item span {
  display: block;
  margin-top: 0.18rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.76);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 50px;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

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

.button.button--primary {
  background: var(--green-900);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(11, 61, 46, 0.16);
}

.button--primary:hover {
  background: var(--green-800);
}

.button--accent {
  background: var(--gold-500);
  color: var(--green-950);
}

.button--accent:hover {
  background: var(--gold-600);
}

.button--secondary {
  border-color: rgba(11, 61, 46, 0.22);
  color: var(--green-900);
  background: rgba(255, 255, 255, 0.9);
}

.button--secondary:hover {
  border-color: rgba(11, 61, 46, 0.38);
  background: rgba(11, 61, 46, 0.05);
}

.button--ghost {
  color: var(--green-900);
}

.button--full {
  width: 100%;
}

.button svg {
  width: 18px;
  height: 18px;
}

.grid-3,
.grid-4,
.card-grid {
  display: grid;
  gap: 1.2rem;
}

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

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

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

.panel,
.info-card,
.role-card,
.founder-card,
.contact-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(11, 61, 46, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.panel {
  padding: 1.5rem;
}

.info-card,
.role-card,
.contact-card {
  padding: 1.45rem;
}

.info-card h3,
.role-card h3,
.contact-card h3,
.founder-card h3,
.process-step h3 {
  margin: 0;
  color: var(--ink-900);
  font-size: 1.18rem;
  letter-spacing: -0.04em;
}

.info-card p,
.role-card p,
.contact-card p,
.founder-card p,
.section-intro p {
  margin: 0.8rem 0 0;
  color: var(--ink-600);
}

.section-heading {
  max-width: 700px;
  margin-bottom: 2rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.section-subtitle {
  margin: 0.95rem 0 0;
  color: var(--ink-600);
  font-size: 1.02rem;
}

.chip-list,
.mini-list,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.chip,
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.68rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(11, 61, 46, 0.08);
  background: rgba(255, 255, 255, 0.9);
  color: var(--green-900);
  font-weight: 700;
  font-size: 0.92rem;
}

.chip svg,
.tag svg {
  width: 16px;
  height: 16px;
}

.value-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.value-item {
  padding: 1.15rem 1.2rem;
  border-radius: var(--radius-md);
  background: rgba(11, 61, 46, 0.04);
  border: 1px solid rgba(11, 61, 46, 0.08);
}

.value-item strong {
  display: block;
  color: var(--green-900);
  font-size: 1rem;
}

.value-item span {
  display: block;
  margin-top: 0.45rem;
  color: var(--ink-600);
  font-size: 0.92rem;
}

.clients-strip {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.4rem;
  scrollbar-width: thin;
  scroll-snap-type: x proximity;
}

.clients-strip::-webkit-scrollbar {
  height: 6px;
}

.clients-strip::-webkit-scrollbar-thumb {
  background: rgba(11, 61, 46, 0.16);
  border-radius: 999px;
}

.client-logo {
  min-width: 180px;
  padding: 1.25rem 1.3rem;
  display: grid;
  place-items: center;
  border-radius: var(--radius-md);
  border: 1px solid rgba(11, 61, 46, 0.08);
  background: rgba(255, 255, 255, 0.88);
  opacity: 0.68;
  transition: opacity 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  scroll-snap-align: start;
}

.client-logo:hover {
  opacity: 1;
  transform: translateY(-2px);
  border-color: rgba(11, 61, 46, 0.18);
}

.client-logo img {
  width: 132px;
  height: 40px;
  object-fit: contain;
}

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

.process-step {
  padding: 1.5rem;
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(11, 61, 46, 0.08);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
}

.process-step__count {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(244, 197, 66, 0.16);
  color: var(--green-900);
  font-weight: 800;
  margin-bottom: 1rem;
}

.process-step p {
  margin: 0.8rem 0 0;
  color: var(--ink-600);
}

.cta-band {
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 60%, #0c3a2a 100%);
  color: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-lg);
}

.cta-band h2 {
  margin: 0;
  font-family: "Roboto", "Manrope", "Segoe UI", sans-serif;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.cta-band p {
  margin: 1rem 0 0;
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.78);
}

.cta-band .button-row {
  margin-top: 1.7rem;
}

.page-hero {
  padding: 3.6rem 0 3rem;
}

.page-hero__panel {
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(245, 247, 244, 0.96) 100%);
  border: 1px solid rgba(11, 61, 46, 0.08);
  box-shadow: var(--shadow-sm);
}

@media (min-width: 1025px) {
  .page-hero .split-layout {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
    align-items: start;
  }

  .page-hero .split-layout > .panel {
    justify-self: end;
  }

  .page-hero h1 {
    font-size: clamp(2.55rem, 4.2vw, 4rem);
  }
}

@media (min-width: 1025px) {
  body.page-companies .page-hero .split-layout {
    grid-template-columns: 1fr;
    gap: 1.4rem;
    align-items: start;
  }

  body.page-companies .page-hero__panel {
    padding: 2.35rem;
  }

  body.page-companies .page-hero h1 {
    font-size: clamp(2.5rem, 3.8vw, 4.1rem);
    max-width: none;
    text-wrap: balance;
  }

  body.page-companies .page-hero p {
    max-width: none;
    font-size: 1.06rem;
    text-wrap: balance;
  }

  body.page-companies .page-hero .split-layout > .panel {
    justify-self: stretch;
    align-self: stretch;
    padding: 1.85rem;
  }

  body.page-companies .page-hero .split-layout > .panel .section-title {
    font-size: 1.75rem;
  }

  body.page-companies .page-hero .split-layout > .panel .list-clean {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem 1.25rem;
  }

  body.page-companies .page-hero .split-layout > .panel .list-clean li {
    align-items: center;
  }
}

@media (min-width: 1025px) {
  body.page-candidates .page-hero .split-layout {
    grid-template-columns: 1fr;
    gap: 1.4rem;
    align-items: start;
  }

  body.page-candidates .page-hero {
    padding-bottom: 2.25rem;
  }

  body.page-candidates .page-hero__panel {
    padding: 2.35rem;
  }

  body.page-candidates .page-hero h1 {
    font-size: clamp(2.5rem, 3.8vw, 4.1rem);
    max-width: none;
    text-wrap: balance;
  }

  body.page-candidates .page-hero p {
    max-width: none;
    font-size: 1.06rem;
    text-wrap: balance;
  }
}

@media (min-width: 1025px) {
  body.page-candidates #current-roles .section-heading {
    max-width: none;
  }
}

@media (min-width: 1025px) {
  body.page-aboutus .page-hero p {
    max-width: none;
    text-wrap: balance;
  }
}

.list-clean {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.list-clean li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--ink-600);
}

.list-clean li svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--green-900);
}

.roles-accordion {
  display: grid;
  gap: 1rem;
}

.role-panel {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(11, 61, 46, 0.08);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.role-panel summary {
  list-style: none;
  padding: 1.2rem 1.35rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  font-weight: 800;
  color: var(--ink-900);
}

.role-panel summary::-webkit-details-marker {
  display: none;
}

.role-panel summary > span:last-child {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(11, 61, 46, 0.07);
  color: var(--green-900);
}

.role-title {
  display: block;
}

.role-meta {
  display: inline-flex;
  margin-top: 0.35rem;
  margin-right: 0.9rem;
  font-family: "Roboto", "Manrope", "Segoe UI", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-600);
  white-space: nowrap;
}

.role-panel__content h4 {
  margin: 1.25rem 0 0.65rem;
  font-size: 1.05rem;
  color: var(--ink-900);
}

.role-panel__content h4:first-child {
  margin-top: 0;
}

.role-bullets {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--ink-600);
  display: grid;
  gap: 0.45rem;
}

.role-section + .role-section {
  margin-top: 1.25rem;
}

@media (max-width: 820px) {
  .role-meta {
    display: block;
    margin-right: 0;
    white-space: normal;
  }
}

.role-panel[open] summary > span:last-child {
  background: rgba(244, 197, 66, 0.16);
}

.role-panel__content {
  padding: 0 1.35rem 1.35rem;
}

.role-panel__content p {
  margin: 0;
  color: var(--ink-600);
}

.role-panel__content .button {
  margin-top: 1rem;
}

.founder-card {
  overflow: hidden;
}

.founder-card img {
  aspect-ratio: 1.1 / 1;
  width: 100%;
  object-fit: cover;
  background: linear-gradient(180deg, rgba(11, 61, 46, 0.16) 0%, rgba(244, 197, 66, 0.2) 100%);
}

.founder-card__content {
  padding: 1.3rem 1.35rem 1.45rem;
}

.founder-role {
  display: inline-flex;
  margin-top: 0.35rem;
  padding: 0.34rem 0.72rem;
  border-radius: 999px;
  background: rgba(11, 61, 46, 0.08);
  color: var(--green-900);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bullet-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.bullet-list li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--ink-600);
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--gold-500);
}

.founder-link {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--green-900);
  font-weight: 800;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.2rem;
}

.contact-methods {
  display: grid;
  gap: 1rem;
}

.contact-card strong,
.contact-card a {
  color: var(--green-900);
}

.contact-card p + p {
  margin-top: 0.55rem;
}

.inline-form {
  padding: 1.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.field,
.field--full {
  display: grid;
  gap: 0.45rem;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink-900);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.78rem 0.95rem;
  border-radius: 12px;
  border: 1px solid rgba(11, 61, 46, 0.12);
  background: #ffffff;
  color: var(--ink-700);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.field input::placeholder,
.field textarea::placeholder {
  font-weight: 500;
  color: rgba(51, 51, 51, 0.45);
  font-style: italic;
  letter-spacing: 0.3px;
}

.field textarea {
  min-height: 110px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: rgba(11, 61, 46, 0.38);
  box-shadow: 0 0 0 4px rgba(17, 84, 64, 0.08);
}

.field--error input,
.field--error select,
.field--error textarea {
  border-color: #dc2626;
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.08);
}

.field--error input:focus,
.field--error select:focus,
.field--error textarea:focus {
  border-color: #dc2626;
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.12);
}

.field__error {
  display: block;
  color: #dc2626;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  font-weight: 500;
}

.field__hint {
  font-size: 0.8rem;
  color: var(--ink-600);
}

.form-status {
  margin-top: 0.95rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  display: none;
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.5;
}

.form-status.is-visible {
  display: block;
}

.form-status--success {
  background: rgba(22, 104, 81, 0.1);
  color: var(--green-900);
}

.form-status--pending {
  background: rgba(192, 147, 69, 0.12);
  color: var(--green-900);
}

.form-status--error {
  background: rgba(226, 72, 72, 0.08);
  color: #8a2323;
}

.form-status a.button {
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.65rem 1.2rem;
}

.modal-root {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: none;
}

.modal-root.is-open {
  display: block;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 39, 29, 0.56);
  backdrop-filter: blur(10px);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(100% - 1.2rem, 760px);
  max-height: calc(100vh - 2rem);
  margin: 1rem auto;
  border-radius: 26px;
  overflow: auto;
  background: rgba(252, 253, 250, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: var(--shadow-lg);
}

.modal__header {
  padding: 1.4rem 1.4rem 0.4rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.modal__header h2 {
  margin: 0;
  font-family: "Roboto", "Manrope", "Segoe UI", sans-serif;
  color: var(--ink-900);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.1;
  letter-spacing: 0;
}

.modal__header p {
  margin: 0.6rem 0 0;
  color: var(--ink-600);
}

.modal__close {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  color: var(--green-900);
  border: 1px solid rgba(11, 61, 46, 0.12);
  background: rgba(255, 255, 255, 0.92);
  flex-shrink: 0;
}

.modal__body {
  padding: 0.8rem 1.4rem 1.4rem;
}

.modal__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 0 0 1rem;
}

.modal__meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.82rem;
  border-radius: 999px;
  background: rgba(11, 61, 46, 0.05);
  color: var(--green-900);
  font-weight: 700;
  font-size: 0.86rem;
}

.modal__footer {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
}

.modal__footer .button {
  min-width: 180px;
}

.site-footer {
  padding: 1.6rem 0 2.4rem;
  background: var(--green-950);
  color: rgba(255, 255, 255, 0.76);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 1.5rem;
  padding: 2rem 0 1.4rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.86);
}

.site-footer h3 {
  margin: 0 0 0.8rem;
  color: var(--white);
  font-size: 1rem;
}

.site-footer p {
  margin: 0.6rem 0 0;
}

.footer-nav {
  display: grid;
  gap: 0.65rem;
}

.footer-bottom {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.sticky-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.95rem 1.15rem;
  border-radius: 999px;
  background: #0f8d46;
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(15, 141, 70, 0.24);
}

.sticky-whatsapp svg {
  width: 20px;
  height: 20px;
}

.muted {
  color: var(--ink-600);
}

.small {
  font-size: 0.92rem;
}

@media (max-width: 1024px) {
  .hero__grid,
  .split-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .grid-3,
  .process-grid,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 74px;
  }

  .nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1rem;
    left: 1rem;
    padding: 1rem;
    border-radius: 22px;
    border: 1px solid rgba(11, 61, 46, 0.08);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    align-items: stretch;
    display: none;
  }

  .nav.is-open {
    display: flex;
  }

  .nav__links,
  .nav__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .nav__links a,
  .nav__actions .button {
    width: 100%;
    justify-content: center;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero__meta,
  .value-list,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .page-hero {
    padding: 3.5rem 0;
  }

  .modal-panel {
    width: min(100% - 0.75rem, 760px);
    margin: 0.4rem auto;
    max-height: calc(100vh - 0.8rem);
    border-radius: 22px;
  }

  .modal__header,
  .modal__body {
    padding-inline: 1rem;
  }
}

@media (max-width: 580px) {
  .container {
    width: min(100% - 1.1rem, var(--container));
  }

  .hero__copy h1,
  .page-hero h1 {
    font-size: clamp(2.4rem, 12vw, 3.5rem);
  }

  .button,
  .sticky-whatsapp {
    width: 100%;
    justify-content: center;
  }

  .sticky-whatsapp {
    width: auto;
    left: 0.55rem;
    right: 0.55rem;
    bottom: 0.75rem;
    max-width: calc(100% - 1.1rem);
  }

  .button-row,
  .hero__actions,
  .modal__footer {
    flex-direction: column;
  }

  .grid-4,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-bottom: 6rem;
  }
}
