/* ============================================================
   Patio Limpio PR — Luxury Landscape Design
   Mobile-first, custom properties, no framework dependencies
   ============================================================ */

:root {
  --green-deep:    #0d2416;
  --green-mid:     #1a5c32;
  --green-rich:    #2D7A4F;
  --green-light:   #52B788;
  --green-pale:    #e8f5ee;
  --gold:          #c9a84c;
  --gold-light:    #e8c96d;
  --dark:          #0a0a0a;
  --charcoal:      #1a1a1a;
  --text:          #1F2937;
  --text-muted:    #6B7280;
  --border:        #E5E7EB;
  --border-dark:   rgba(255,255,255,.1);
  --bg-light:      #F7F9F5;
  --white:         #FFFFFF;

  --font-head:     'Montserrat', sans-serif;
  --font-body:     'Inter', sans-serif;

  --radius-sm:     4px;
  --radius-md:     10px;
  --radius-lg:     18px;

  --shadow-sm:     0 1px 3px rgba(0,0,0,.08);
  --shadow-md:     0 4px 20px rgba(0,0,0,.10);
  --shadow-lg:     0 12px 40px rgba(0,0,0,.14);
  --shadow-xl:     0 24px 60px rgba(0,0,0,.18);

  --max-width:     1160px;
  --section-gap:   96px;
  --nav-logo-width: 190px;
  --nav-logo-height: 70px;
  --hero-logo-width: 320px;
  --hero-logo-height: 126px;
  --footer-logo-width: 210px;
  --footer-logo-height: 82px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
:target { scroll-margin-top: 72px; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* Utility */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 24px);
}
.section { padding-block: var(--section-gap); }
.section--alt { background: var(--bg-light); }
.section--dark { background: var(--green-deep); color: var(--white); }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green-rich);
  margin-bottom: 14px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}
.section--dark .section-eyebrow { color: var(--gold-light); }
.section--dark .section-eyebrow::before { background: var(--gold-light); }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 18px;
  letter-spacing: -.01em;
}
.section--dark .section-title { color: var(--white); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}
.section--dark .section-subtitle { color: rgba(255,255,255,.65); }

.section-header {
  margin-bottom: 56px;
  min-height: 220px;
}
.section-header--center { text-align: center; }
.section-header--center .section-subtitle { margin-inline: auto; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .04em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all .22s ease;
  min-width: 0;
  max-width: 100%;
  text-align: center;
  white-space: normal;
  text-transform: uppercase;
}
.btn-primary {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,.35);
}
.btn-dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn-dark:hover {
  background: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}
.btn-green {
  background: var(--green-mid);
  color: var(--white);
  border-color: var(--green-mid);
}
.btn-green:hover {
  background: var(--green-deep);
  border-color: var(--green-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}
.btn-whatsapp:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.35);
}
.btn-lg { padding: 17px 36px; font-size: .92rem; }
.btn-full { width: 100%; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,.5); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 12px;
  min-width: 0;
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: var(--nav-logo-width);
  height: var(--nav-logo-height);
  transition: opacity .2s;
}
.nav__logo:hover { opacity: .85; }
.nav__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.nav__logo-fallback {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1rem;
  color: var(--white);
  letter-spacing: .04em;
  display: none;
}

.nav__links { display: none; gap: 32px; }
.nav__links a {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.nav__links a:hover { color: var(--white); }

.nav__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  min-width: 0;
  flex-shrink: 0;
}

.lang-toggle {
  display: flex;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.lang-toggle button {
  padding: 6px 12px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  font-family: var(--font-head);
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,.45);
  transition: all .2s;
}
.lang-toggle button.active { background: var(--green-mid); color: var(--white); }

.nav__cta { display: none; }

.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 16px 24px 24px;
  background: #111;
  border-top: 1px solid rgba(255,255,255,.07);
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  padding: 11px 0;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .04em;
  border-bottom: 1px solid rgba(255,255,255,.06);
  color: rgba(255,255,255,.75);
}
.nav__mobile-ctas {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

@media (max-width: 430px) {
  .nav__logo {
    width: 148px;
    height: 58px;
  }
  .lang-toggle button {
    padding: 6px 9px;
  }
}

@media (min-width: 720px) {
  .nav__links {
    display: flex;
    gap: clamp(14px, 2vw, 28px);
  }
  .nav__links a {
    font-size: clamp(.68rem, 1vw, .78rem);
    letter-spacing: .08em;
  }
  .nav__hamburger { display: none; }
}

@media (min-width: 720px) and (max-width: 900px) {
  .nav__logo {
    width: 168px;
    height: 64px;
  }
}

@media (min-width: 1120px) {
  .nav__cta { display: flex; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100svh;
  padding-top: 70px;
  background: linear-gradient(150deg, var(--green-deep) 0%, #112d1d 55%, #0a1a10 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 30%, rgba(82,183,136,.1) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(201,168,76,.06) 0%, transparent 60%);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to top, var(--white), transparent);
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding-block: 80px 120px;
  display: grid;
  gap: 48px;
  align-items: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.hero__eyebrow-line {
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero__title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -.02em;
  margin-bottom: 24px;
}
.hero__title em {
  font-style: normal;
  color: var(--gold-light);
}

.hero__subtitle {
  font-size: clamp(.95rem, 2.2vw, 1.1rem);
  color: rgba(255,255,255,.7);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.75;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
}
.hero__trust-dot {
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero__visual { display: none; }

@media (min-width: 960px) {
  .hero__inner { grid-template-columns: 1.1fr .9fr; }
  .hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .hero__visual-card {
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    width: 100%;
    max-width: 380px;
  }
  .hero__visual-logo {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: var(--hero-logo-height);
  }
  .hero__visual-logo img {
    width: min(100%, var(--hero-logo-width));
    height: var(--hero-logo-height);
    object-fit: contain;
  }
  .hero__visual-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .hero__stat {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-md);
    padding: 16px;
    text-align: center;
  }
  .hero__stat-num {
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--gold-light);
    line-height: 1;
  }
  .hero__stat-label {
    font-size: .72rem;
    color: rgba(255,255,255,.5);
    margin-top: 4px;
    letter-spacing: .06em;
    text-transform: uppercase;
  }
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--charcoal);
  padding-block: 28px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.trust-strip__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 48px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.7);
}
.trust-item__dot {
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.trust-item__text {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* ============================================================
   SERVICES — 6 cards, 3×2 symmetric grid
   ============================================================ */
.services-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  min-height: 268px;
  display: flex;
  flex-direction: column;
  transition: all .28s ease;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--green-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.service-card:hover::after { transform: scaleX(1); }

.service-card__num {
  font-family: var(--font-head);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.service-card__title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.3;
  min-height: 2.6em;
  display: flex;
  align-items: flex-start;
}
.service-card__desc {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.65;
  min-height: 7em;
}

/* ============================================================
   PLANS
   ============================================================ */
.plans-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .plans-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .plans-grid { grid-template-columns: repeat(3, 1fr); } }

.plan-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: all .28s;
}
.plan-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-5px);
}
.plan-card--featured {
  border-color: var(--gold);
  background: var(--dark);
  color: var(--white);
  position: relative;
}
.plan-card--featured::before {
  content: attr(data-badge);
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--dark);
  font-size: .7rem;
  font-weight: 800;
  font-family: var(--font-head);
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.plan-card__header {
  text-align: center;
  min-height: 58px;
}
.plan-card__name {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 4px;
  letter-spacing: -.01em;
}
.plan-card--featured .plan-card__name { color: var(--white); }
.plan-card__freq {
  font-size: .75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 600;
}
.plan-card--featured .plan-card__freq { color: rgba(255,255,255,.5); }

.plan-card__divider {
  height: 1px;
  background: var(--border);
}
.plan-card--featured .plan-card__divider { background: rgba(255,255,255,.1); }

.plan-card__includes {
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1;
}
.plan-include {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  line-height: 1.5;
}
.plan-include__check {
  color: var(--gold);
  font-size: .9rem;
  flex-shrink: 0;
  margin-top: 1px;
  font-weight: 700;
}
.plan-card--featured .plan-include { color: rgba(255,255,255,.85); }

/* ============================================================
   COMMERCIAL SECTION
   ============================================================ */
.commercial-section {
  background: linear-gradient(150deg, #0a0a0a 0%, #0d1f14 50%, #0a1a10 100%);
  color: var(--white);
  overflow: hidden;
  position: relative;
}
.commercial-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,.06) 0%, transparent 70%);
  pointer-events: none;
}
.commercial-section::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(82,183,136,.05) 0%, transparent 70%);
  pointer-events: none;
}

.commercial-inner {
  display: grid;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 960px) { .commercial-inner { grid-template-columns: 1fr 1fr; } }

.commercial-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.commercial-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.commercial-title {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -.01em;
  margin-bottom: 18px;
}
.commercial-title em { font-style: normal; color: var(--gold-light); }

.commercial-subtitle {
  color: rgba(255,255,255,.65);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 32px;
}

.commercial-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.commercial-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: .9rem;
  color: rgba(255,255,255,.8);
  min-height: 46px;
}
.commercial-feature__icon {
  width: 32px;
  height: 32px;
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
}

.commercial-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.commercial-stat {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  min-height: 128px;
}
.commercial-stat__num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 6px;
}
.commercial-stat__label {
  font-size: .75rem;
  color: rgba(255,255,255,.45);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.commercial-stat--wide {
  grid-column: span 2;
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  padding: 20px 24px;
}
.commercial-stat--wide .commercial-stat__body { font-size: .88rem; color: rgba(255,255,255,.55); }
.commercial-stat--wide .commercial-stat__headline { font-weight: 700; color: var(--white); margin-bottom: 4px; }

/* ============================================================
   QUOTE FORM
   ============================================================ */
.quote-section { background: var(--bg-light); }
.quote-wrapper {
  display: grid;
  gap: 56px;
  align-items: start;
  min-width: 0;
}
@media (min-width: 1024px) { .quote-wrapper { grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr); } }

.quote-info__title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 16px;
  letter-spacing: -.01em;
  line-height: 1.2;
}
.quote-info__desc {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  min-height: 82px;
}
.quote-info__perks {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.quote-perk {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .88rem;
  font-weight: 600;
}
.quote-perk__icon {
  width: 32px;
  height: 32px;
  background: var(--green-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .88rem;
  flex-shrink: 0;
}
.quote-ctas { display: flex; flex-direction: column; gap: 10px; }

.quote-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  min-width: 0;
}
@media (max-width: 480px) { .quote-form { padding: 28px 20px; } }

.form-row {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
  min-width: 0;
}
@media (min-width: 560px) { .form-row--2col { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); } }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text);
}
.form-group label span { color: var(--gold); }

.form-control {
  width: 100%;
  min-width: 0;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  min-height: 52px;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
}
.form-control:focus {
  outline: none;
  border-color: var(--green-rich);
  box-shadow: 0 0 0 3px rgba(45,122,79,.1);
}
.form-control::placeholder { color: #9CA3AF; }
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 96px; }

.form-submit { margin-top: 20px; }
.form-note {
  text-align: center;
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: 10px;
  letter-spacing: .02em;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success__icon { font-size: 3rem; margin-bottom: 14px; }
.form-success__title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--green-deep);
  margin-bottom: 10px;
}
.form-success__desc { color: var(--text-muted); font-size: .95rem; margin-bottom: 20px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #060606;
  color: rgba(255,255,255,.55);
  padding-block: 60px 30px;
  border-top: 1px solid rgba(255,255,255,.05);
}
.footer__grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
  margin-bottom: 48px;
}
@media (min-width: 900px) { .footer__grid { grid-template-columns: 1.6fr 1fr 1fr; } }

.footer__brand-logo {
  display: inline-flex;
  align-items: center;
  width: var(--footer-logo-width);
  height: var(--footer-logo-height);
  margin-bottom: 16px;
}
.footer__brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer__brand-desc {
  font-size: .88rem;
  line-height: 1.7;
  max-width: 280px;
  min-height: 72px;
}

.footer__col-title {
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 20px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  transition: color .2s;
  letter-spacing: .01em;
}
.footer__links a:hover { color: var(--gold-light); }

.footer__contact { display: flex; flex-direction: column; gap: 11px; }
.footer__contact-item { display: flex; align-items: center; gap: 10px; font-size: .88rem; }
.footer__contact-item a:hover { color: var(--gold-light); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 26px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: .8rem;
  letter-spacing: .02em;
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.floating-cta {
  position: fixed;
  bottom: clamp(14px, 4vw, 24px);
  right: clamp(14px, 4vw, 24px);
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.floating-cta__label {
  background: var(--dark);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  pointer-events: none;
  opacity: 0;
  transform: translateX(4px);
  transition: all .2s;
}
.floating-cta:hover .floating-cta__label { opacity: 1; transform: translateX(0); }
.floating-cta__btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 24px rgba(37,211,102,.45);
  transition: transform .2s, box-shadow .2s;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.floating-cta__btn:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(37,211,102,.55);
}

/* ============================================================
   LANGUAGE TOGGLE VISIBILITY
   ============================================================ */
[data-lang] { display: none; }
[data-lang].lang-visible { display: block; }
span[data-lang].lang-visible { display: inline; }
li[data-lang].lang-visible { display: flex; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
/* cyrillic-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7W0Q5n-wU.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa0ZL7W0Q5n-wU.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2ZL7W0Q5n-wU.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1pL7W0Q5n-wU.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2pL7W0Q5n-wU.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7W0Q5n-wU.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7W0Q5nw.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7W0Q5n-wU.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa0ZL7W0Q5n-wU.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2ZL7W0Q5n-wU.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1pL7W0Q5n-wU.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2pL7W0Q5n-wU.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7W0Q5n-wU.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7W0Q5nw.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7W0Q5n-wU.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa0ZL7W0Q5n-wU.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2ZL7W0Q5n-wU.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1pL7W0Q5n-wU.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2pL7W0Q5n-wU.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7W0Q5n-wU.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7W0Q5nw.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WRhyyTh89ZNpQ.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459W1hyyTh89ZNpQ.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WZhyyTh89ZNpQ.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WdhyyTh89ZNpQ.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WlhyyTh89Y.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WRhyyTh89ZNpQ.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459W1hyyTh89ZNpQ.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WZhyyTh89ZNpQ.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WdhyyTh89ZNpQ.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WlhyyTh89Y.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WRhyyTh89ZNpQ.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459W1hyyTh89ZNpQ.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WZhyyTh89ZNpQ.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WdhyyTh89ZNpQ.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WlhyyTh89Y.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
