/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --green:        #93C13E;
  --green-dark:   #6E9E2A;
  --green-soft:   #DCEFB8;
  --green-tint:   #F3F8E8;
  --yellow:       #FBBF24;
  --ink:          #1B1B1F;
  --ink-soft:     #4B5263;
  --ink-mute:     #8A8F9C;
  --line:         #E8EAEC;
  --line-soft:    #F2F4F5;
  --bg:           #FFFFFF;
  --bg-alt:       #FAFAF7;

  --serif:  'Fraunces', Georgia, serif;
  --sans:   'Outfit', system-ui, sans-serif;

  --container: 1240px;
  --radius:    14px;
  --nav-h:     72px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  font-family: var(--sans);
  font-weight: 400;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: 0; }

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

.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--green-dark);
  text-transform: lowercase;
  display: inline-block;
  margin-bottom: 1.25rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 999px;
  transition: all 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  background: var(--green);
  color: var(--ink);
  font-weight: 600;
}
.btn--primary:hover {
  background: var(--green-dark);
  color: #fff;
  transform: translateY(-2px);
}

.btn--ghost {
  background: rgba(255,255,255,0.85);
  color: var(--ink);
  border: 1.5px solid var(--ink);
  font-weight: 600;
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--green);
  transform: translateY(-2px);
}

.btn--whatsapp {
  background: var(--green);
  color: var(--ink);
  font-weight: 600;
}
.btn--whatsapp:hover {
  background: var(--green-dark);
  color: #fff;
  transform: translateY(-2px);
}

.btn--full { width: 100%; justify-content: center; }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
}

.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.1rem 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}

.nav__logo { justify-self: start; }

.nav__actions {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.nav__leaf {
  color: var(--green);
  font-size: 1.1rem;
  display: inline-block;
  transform: translateY(-1px);
}

.nav__logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.footer__logo-img {
  height: 72px;
  width: auto;
  display: block;
  border-radius: 12px;
}

.nav__links {
  display: flex;
  gap: 2rem;
  justify-self: center;
}

.nav__links a {
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--ink-soft);
  position: relative;
  padding: 0.25rem 0;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 1px;
  background: var(--green);
  transition: width 0.25s ease;
}
.nav__links a:hover::after { width: 100%; }

.lang-toggle {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
  background: #fff;
}
.lang-toggle__btn {
  background: transparent;
  border: 0;
  padding: 5px 11px;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: 999px;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: color 0.2s ease, background 0.2s ease;
}
.lang-toggle__btn:hover { color: var(--ink); }
.lang-toggle__btn.is-active {
  background: var(--ink);
  color: var(--green);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--green);
  color: var(--ink);
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.25s;
}
.nav__cta:hover {
  background: var(--ink);
  color: var(--green);
  transform: translateY(-1px);
}
.nav__cta i { width: 16px; height: 16px; }

.nav__burger {
  display: none;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--green-tint);
  color: var(--ink);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: calc(100vh - var(--nav-h));
  height: calc(100dvh - var(--nav-h));
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  background-image:
    linear-gradient(110deg, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0.82) 50%, rgba(255,255,255,0.55) 100%),
    url('image2-2-1024x576.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__container {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(0.75rem, 2vh, 1.5rem);
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vh, 3rem) 32px clamp(1rem, 2.5vh, 2rem);
  position: relative;
  z-index: 2;
}

.hero .ticker {
  margin-top: auto;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--green-soft);
  color: var(--green-dark);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  width: fit-content;
}

.hero__eyebrow .dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(1.4); }
}

.hero__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
}

.hero__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.2rem, 5.5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: #0f1116;
  text-shadow: 0 1px 2px rgba(255,255,255,0.6);
}

.hero__title em {
  text-shadow: 0 1px 2px rgba(255,255,255,0.6);
}

.hero__visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 918 / 1024;
  max-height: min(48vh, 460px);
  width: 100%;
  background: transparent;
  justify-self: end;
}

.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom;
  display: block;
}

.hero__visual-tag {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink);
}

.hero__visual-tag .dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
}

.hero__title em {
  font-style: italic;
  color: var(--green-dark);
  font-weight: 400;
  font-variation-settings: 'opsz' 144;
}

.hero__bottom {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
  align-items: end;
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 1.5rem;
}

.hero__lead {
  font-size: 1rem;
  color: var(--ink);
  font-weight: 500;
  max-width: 520px;
  line-height: 1.55;
}

.hero__cta-group {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

/* ============================================================
   MOMENTS — full-width image break
   ============================================================ */
.moments {
  padding: 0;
}

.moments__image {
  position: relative;
  height: clamp(420px, 60vh, 620px);
  overflow: hidden;
}

.moments__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(1.05);
}

.moments__overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  color: #fff;
}

.moments__quote {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 4.5vw, 3.4rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 780px;
}

.moments__quote em {
  font-style: italic;
  color: var(--green);
}

.moments__caption {
  margin-top: 1.75rem;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.7);
}

/* ============================================================
   APPLY IMAGE
   ============================================================ */
.apply__image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  margin-bottom: 2.5rem;
}

.apply__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95);
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker {
  background: var(--green);
  color: var(--ink);
  padding: 1.1rem 0;
  overflow: hidden;
  border-top: 1px solid var(--green-dark);
  border-bottom: 1px solid var(--green-dark);
}

.ticker__track {
  display: flex;
  align-items: center;
  width: max-content;
  white-space: nowrap;
  animation: scroll-x var(--ticker-duration, 28s) linear infinite;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -0.005em;
}

.ticker__group {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-right: 2.5rem;
  flex-shrink: 0;
}

.ticker__pill {
  font-size: 0.7rem;
  color: var(--ink);
  opacity: 0.55;
}

@keyframes scroll-x {
  to { transform: translateX(calc(-1 * var(--ticker-group-width, 50%))); }
}

@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; }
}

/* ============================================================
   APPROACH
   ============================================================ */
.approach {
  padding: 7rem 0 6rem;
}

.approach__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-bottom: 6rem;
  align-items: start;
}

.approach__intro h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 480px;
}

.approach__intro h2 em,
.services__head h2 em,
.process__head h2 em,
.apply__info h2 em {
  font-style: italic;
  color: var(--green-dark);
}

.approach__body p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  max-width: 480px;
}

.approach__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 3px solid var(--green);
  border-bottom: 1px solid var(--ink);
  background: linear-gradient(to bottom, var(--green-tint), transparent);
  border-radius: 0 0 var(--radius) var(--radius);
}

.stat {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--green-soft);
}
.stat:last-child { border-right: 0; }

.stat__num {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  color: var(--green-dark);
  display: flex;
  align-items: baseline;
  gap: 0.1rem;
}

.stat__unit {
  font-size: 0.55em;
  color: var(--green-dark);
  font-style: italic;
  font-weight: 400;
}

.stat__label {
  font-size: 0.92rem;
  color: var(--ink-mute);
}

/* ============================================================
   SERVICES — editorial rows
   ============================================================ */
.services {
  padding: 6rem 0;
  background: var(--green-tint);
}

.services__head {
  margin-bottom: 4rem;
}

.services__head h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.services__list {
  border-top: 1px solid var(--ink);
}

.service-row {
  display: grid;
  grid-template-columns: 70px 1fr auto 50px;
  gap: 2rem;
  align-items: center;
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--line);
  transition: padding 0.4s cubic-bezier(0.2, 0.6, 0.2, 1), background 0.3s;
  position: relative;
}

.service-row:hover {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.service-row::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 0; height: 100%;
  background: var(--green);
  transition: width 0.4s cubic-bezier(0.2, 0.6, 0.2, 1);
  z-index: -1;
}

.service-row:hover::before { width: 100%; }

.service-row:hover .service-row__arrow i {
  transform: translate(2px, -2px);
}

.service-row__num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--ink-mute);
}

.service-row__main h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 0.4rem;
}

.service-row__main p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  max-width: 540px;
}

.service-row__amount {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--green-dark);
  white-space: nowrap;
}

.service-row__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: all 0.3s;
}

.service-row:hover .service-row__arrow {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--green);
}

.service-row__arrow i { transition: transform 0.3s; width: 18px; height: 18px; }

/* ============================================================
   PROCESS
   ============================================================ */
.process {
  padding: 7rem 0;
}

.process__head {
  margin-bottom: 4rem;
  max-width: 700px;
}

.process__head h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.process-card {
  padding: 2.5rem 2rem;
  background: var(--green-tint);
  border: 1px solid var(--green-soft);
  border-radius: var(--radius);
  transition: all 0.35s ease;
  position: relative;
}

.process-card:nth-child(2) {
  background: var(--green-soft);
}

.process-card:nth-child(3) {
  background: var(--green);
  color: var(--ink);
}
.process-card:nth-child(3) p { color: var(--ink); opacity: 0.8; }
.process-card:nth-child(3) .process-card__num { color: var(--ink); }

.process-card:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-6px);
  border-color: var(--ink);
}
.process-card:hover .process-card__num { color: var(--green); }
.process-card:hover p { color: rgba(255,255,255,0.8); opacity: 1; }

.process-card__num {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--green-dark);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.process-card:hover .process-card__num { color: var(--ink); }

.process-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.15;
  margin-bottom: 0.6rem;
  letter-spacing: -0.015em;
}

.process-card p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.process-card:hover p { color: var(--ink); }

/* ============================================================
   VOICES
   ============================================================ */
.voices {
  padding: 7rem 0;
  background: linear-gradient(135deg, #1a2818 0%, #2d4520 50%, #1a2818 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.voices::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--green);
}

.voices__inner { max-width: 900px; margin: 0 auto; text-align: center; padding: 0 32px; }

.voices .eyebrow {
  color: var(--green);
}

.voices__quote {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.4rem, 2.8vw, 2.1rem);
  line-height: 1.35;
  letter-spacing: -0.015em;
  margin: 1.5rem 0 3rem;
  min-height: 9em;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

@media (max-width: 600px) {
  .voices__quote {
    min-height: 14em;
    height: 14em;
    margin: 1rem 0 1.75rem;
    align-items: flex-start;
    padding-top: 0.25rem;
    overflow: hidden;
    font-size: clamp(1.15rem, 4.6vw, 1.35rem);
  }
  .voices__nav { margin-top: 1.5rem; }
  .voices__name,
  .voices__role { max-width: 200px; }
  .voices__author { min-height: 56px; align-items: center; }
}

@media (min-width: 601px) and (max-width: 960px) {
  .voices__quote {
    min-height: 11em;
    height: 11em;
    align-items: flex-start;
    overflow: hidden;
  }
}

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

.voices__avatar {
  width: 56px; height: 56px;
  background: var(--green);
  color: var(--ink);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
}

.voices__name {
  font-weight: 500;
  text-align: left;
  max-width: 260px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.voices__role {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  text-align: left;
  max-width: 260px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.voices__nav {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.voices__btn {
  width: 48px; height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
}

.voices__btn:hover {
  background: var(--green);
  color: var(--ink);
  border-color: var(--green);
}

.voices__btn i { width: 18px; height: 18px; }

/* ============================================================
   APPLY
   ============================================================ */
.apply {
  padding: 7rem 0;
}

.apply__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: start;
}

.apply__info h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.apply__info > p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  max-width: 440px;
}

.apply__details {
  list-style: none;
  margin-bottom: 2rem;
  border-top: 1px solid var(--line);
}

.apply__details li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}

.apply__details i {
  width: 18px; height: 18px;
  color: var(--green-dark);
}

/* ----- form (underline-only inputs) ----- */
.apply__form {
  background: var(--green-tint);
  border-radius: var(--radius);
  padding: 3rem 2.5rem;
  position: relative;
}

.apply__form h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.6rem;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.field {
  margin-bottom: 1.5rem;
  position: relative;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.field label {
  display: block;
  font-size: 0.78rem;
  color: var(--ink-soft);
  font-weight: 500;
  margin-bottom: 0.4rem;
  letter-spacing: 0.01em;
}

.field .optional {
  color: var(--ink-mute);
  font-style: italic;
  font-weight: 400;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  padding: 0.6rem 0;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-bottom-color: var(--green-dark);
}

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

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23558B2F' stroke-width='2'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0 center;
  background-size: 18px;
  padding-right: 26px;
}

.form-status {
  font-size: 0.9rem;
  margin-top: 1rem;
  text-align: center;
}

.form-note {
  font-size: 0.78rem;
  color: var(--ink-mute);
  text-align: center;
  margin-top: 1rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  color: #fff;
  padding: 5rem 0 2rem;
  border-top: 4px solid var(--green);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__brand .nav__logo { color: #fff; margin-bottom: 1rem; }
.footer__brand p {
  color: rgba(255,255,255,0.55);
  max-width: 320px;
  font-size: 0.95rem;
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer__cols h4 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1rem;
}

.footer__cols a,
.footer__cols span {
  display: block;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.footer__cols a:hover { color: var(--green); }

.footer__bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__powered {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.footer__powered a {
  color: var(--green);
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}
.footer__powered a:hover { color: #fff; }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 50;
  width: 56px; height: 56px;
  background: var(--green);
  color: var(--ink);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(147,193,62,0.4);
  transition: transform 0.25s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float i { width: 26px; height: 26px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .nav__inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 22px;
  }
  .nav__links { display: none; }
  .nav__cta   { display: none; }
  .nav__burger { display: inline-flex; }
  .nav__actions { gap: 0.5rem; }
  .nav__logo-img { height: 34px; }
  .lang-toggle { padding: 2px; }
  .lang-toggle__btn { padding: 4px 9px; font-size: 0.72rem; }
  .nav__links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    background: #fff;
    padding: 1.25rem 22px;
    border-bottom: 1px solid var(--line);
    gap: 1rem;
    z-index: 99;
    box-shadow: 0 12px 24px -16px rgba(0,0,0,0.12);
  }
  .nav__links.open a {
    width: 100%;
    font-size: 1rem;
    padding: 0.4rem 0;
  }

  .hero__top { grid-template-columns: 1fr; gap: 1.25rem; }
  .hero__visual {
    aspect-ratio: 16 / 10;
    max-height: 24vh;
    max-width: 320px;
    width: 100%;
    margin: 0 auto;
    justify-self: center;
  }
  .hero__visual img { object-position: center; }
  .hero__visual-tag { left: 50%; transform: translateX(-50%); }
  .hero__title { font-size: clamp(2rem, 9vw, 3.4rem); text-align: center; }
  .hero__bottom { grid-template-columns: 1fr; gap: 1rem; padding-top: 1rem; }
  .hero__lead { font-size: 0.95rem; text-align: center; }
  .hero__cta-group { justify-content: center; }
  .hero__eyebrow { margin: 0 auto; }

  .approach__grid { grid-template-columns: 1fr; gap: 2rem; margin-bottom: 4rem; }

  .approach__stats { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }

  .service-row {
    grid-template-columns: 50px 1fr 40px;
    gap: 1rem;
    padding: 1.5rem 0;
  }
  .service-row__amount { display: none; }

  .process__grid { grid-template-columns: 1fr 1fr; }

  .apply__grid { grid-template-columns: 1fr; gap: 3rem; }

  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .footer__cols { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 560px) {
  .container { padding: 0 22px; }
  .hero__container { padding: 3rem 22px 1.5rem; }
  .hero__title { font-size: 2.6rem; }
  .approach { padding: 4.5rem 0 4rem; }
  .services { padding: 4.5rem 0; }
  .process { padding: 4.5rem 0; }
  .voices  { padding: 4.5rem 0; }
  .apply   { padding: 4.5rem 0; }

  .process__grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .apply__form { padding: 2rem 1.5rem; }

  .footer__cols { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .footer__cols h4 { font-size: 0.7rem; }
  .footer__cols a, .footer__cols span { font-size: 0.82rem; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}
