/* ==========================================================================
   Evolution Parking — Redesign
   Minimalist / Editorial / Award-style UI — no CSS framework, hand-rolled.
   ========================================================================== */

:root{
  --gold:        #eab308;
  --gold-dark:   #ca8a04;
  --gold-soft:   rgba(234,179,8,.10);
  --gold-line:   rgba(234,179,8,.35);

  --ink:         #111827;
  --ink-soft:    #374151;
  --muted:       #6b7280;
  --muted-2:     #9ca3af;

  --paper:       #faf9f7;
  --panel:       #ffffff;
  --panel-alt:   #f4f3f1;
  --line:        rgba(17,24,39,.09);
  --line-soft:   rgba(17,24,39,.06);

  --dark:        #17181a;
  --dark-soft:   #26272a;

  --green:       #16a34a;
  --red:         #dc2626;

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

  --maxw:        1360px;

  --ease:        cubic-bezier(.16,.84,.44,1);
  --dur:         .7s;

  font-size: 16px;
}

*, *::before, *::after{ box-sizing: border-box; }
.benefits-grid > *, .compare > *, .contact-grid > *, .footer-grid > *,
.upgrades-grid > *, .reviews-grid > *, .loc-grid > *, .trust-row > *{ min-width: 0; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *{ animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body{
  margin: 0;
  background: var(--paper);
  color: var(--ink-soft);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: 84px;
}
@media (min-width: 900px){ body{ padding-bottom: 0; } }

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
button{ font: inherit; cursor: pointer; }
ul{ margin: 0; padding: 0; list-style: none; }
input, textarea, select{ font: inherit; color: inherit; }

h1,h2,h3,h4{
  font-family: 'Syne', sans-serif;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
}

::selection{ background: var(--gold); color: #1a1400; }

.container{
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 1024px){ .container{ padding: 0 2.5rem; } }

/* ---------- Scroll progress bar ---------- */
.progress-bar{
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: var(--gold);
  z-index: 1000;
  transition: width .1s linear;
}

/* ---------- Reveal on scroll ---------- */
.reveal{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible{ opacity: 1; transform: translateY(0); }
.reveal-1{ transition-delay: .08s; }
.reveal-2{ transition-delay: .16s; }
.reveal-3{ transition-delay: .24s; }
.reveal-4{ transition-delay: .32s; }

/* ---------- Eyebrow / section head ---------- */
.eyebrow{
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-dark); margin-bottom: 1.1rem;
}
.eyebrow .dot{ width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse 2.2s infinite; }
.eyebrow .num{ color: var(--muted-2); font-weight: 600; }
@keyframes pulse{ 0%,100%{ opacity: 1; } 50%{ opacity: .35; } }

.section-head{ max-width: 620px; margin-bottom: 3.5rem; }
.section-head.center{ margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2{
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  font-weight: 700;
  margin-bottom: 1rem;
}
.section-head p{ color: var(--muted); font-size: 1.05rem; }
.section-head .accent{ color: var(--gold-dark); }

section{ position: relative; }
.section-pad{ padding: 6rem 0; }
@media (min-width: 1024px){ .section-pad{ padding: 8rem 0; } }
.bg-paper{ background: var(--paper); }
.bg-panel{ background: var(--panel); }
.bg-alt{ background: var(--panel-alt); }
.border-y{ border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.border-t{ border-top: 1px solid var(--line); }
.border-b{ border-bottom: 1px solid var(--line); }

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar{
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  background: rgba(250,249,247,.7);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.navbar.scrolled{
  background: rgba(250,249,247,.92);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px rgba(17,24,39,.05);
}
.nav-inner{
  display: flex; align-items: center;
  height: 5rem; gap: 1rem;
}
.brand{ flex-shrink: 0; }
.brand img{ height: 2.6rem; width: auto; }

.nav-links{ display: none; }
@media (min-width: 1024px){
  .nav-links{
    display: flex; align-items: center; justify-content: center;
    gap: 1.5rem; flex: 1 1 auto; min-width: 0;
  }
  .nav-links a{
    position: relative; font-size: .86rem; font-weight: 600; color: var(--ink-soft);
    padding: .4rem 0; white-space: nowrap; transition: color .2s;
  }
  .nav-links a::after{
    content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 1.5px;
    background: var(--gold); transition: width .25s var(--ease);
  }
  .nav-links a:hover{ color: var(--ink); }
  .nav-links a:hover::after{ width: 100%; }
}

.nav-actions{ display: flex; align-items: center; gap: .9rem; flex-shrink: 0; }

.nav-phone{
  display: none; align-items: center; gap: .5rem; font-size: .85rem; font-weight: 600;
  color: var(--ink-soft);
}
@media (min-width: 1280px){ .nav-phone{ display: inline-flex; } }
.nav-phone i{ color: var(--gold); }

.btn{
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  border-radius: 100px; font-weight: 700; font-size: .82rem; letter-spacing: .04em;
  text-transform: uppercase; padding: .85rem 1.7rem; border: 1px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
  white-space: nowrap;
}
.btn-gold{ background: var(--gold); color: #171200; box-shadow: 0 10px 24px rgba(234,179,8,.25); }
.btn-gold:hover{ background: #f3c320; transform: translateY(-2px); box-shadow: 0 14px 30px rgba(234,179,8,.35); }
.btn-ghost{ background: transparent; border-color: var(--line); color: var(--ink); }
.btn-ghost:hover{ border-color: var(--gold); color: var(--gold-dark); }
.btn-dark{ background: var(--dark); color: #fff; }
.btn-dark:hover{ background: var(--dark-soft); transform: translateY(-2px); }
.btn-block{ width: 100%; }
.btn-lg{ padding: 1.1rem 1.8rem; font-size: .9rem; }

.nav-cta{ display: none; }
@media (min-width: 640px){ .nav-cta{ display: inline-flex; } }

.burger{
  display: inline-flex; width: 2.6rem; height: 2.6rem; align-items: center; justify-content: center;
  border: 1px solid var(--line); border-radius: 50%; background: var(--panel); font-size: 1.1rem; color: var(--ink);
}
@media (min-width: 1024px){ .burger{ display: none; } }

/* Language dropdown (desktop) */
.lang{ position: relative; display: none; }
@media (min-width: 1024px){ .lang{ display: block; } }
.lang-btn{
  display: flex; align-items: center; gap: .5rem; font-size: .74rem; font-weight: 700; text-transform: uppercase;
  padding: .55rem .9rem; border-radius: 100px; border: 1px solid var(--line); background: var(--panel); color: var(--ink);
}
.lang-btn i:first-child{ color: var(--gold); }
.lang-menu{
  position: absolute; right: 0; top: calc(100% + .6rem);
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-sm);
  box-shadow: 0 20px 40px rgba(17,24,39,.12); min-width: 170px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all .2s var(--ease); z-index: 999; padding: .4rem;
}
.lang:hover .lang-menu{ opacity: 1; visibility: visible; transform: translateY(0); }
.lang-menu a{
  display: flex; align-items: center; gap: .7rem; padding: .55rem .7rem; border-radius: 8px; font-size: .85rem;
}
.lang-menu a:hover{ background: var(--panel-alt); }
.lang-menu a.active{ background: var(--gold-soft); color: var(--gold-dark); font-weight: 700; }
.lang-menu small{ display: block; font-size: .68rem; color: var(--muted); font-weight: 400; }

/* Mobile menu */
.mobile-menu{
  position: fixed; inset: 0; z-index: 490;
  background: var(--paper);
  transform: translateY(-100%);
  transition: transform .45s var(--ease);
  padding: 6.5rem 1.5rem 2rem;
  overflow-y: auto;
}
.mobile-menu.open{ transform: translateY(0); }
.mobile-menu a{ display: block; }
.mobile-links a{
  font-family: 'Syne', sans-serif; font-size: 1.7rem; font-weight: 700; color: var(--ink);
  padding: .7rem 0; border-bottom: 1px solid var(--line);
}
.mobile-menu .mm-phone{
  margin-top: 1.6rem; display: flex; align-items: center; gap: .6rem; font-weight: 700; color: var(--ink);
}
.mm-langs{ display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; margin-top: 1rem; }
.mm-langs a{
  text-align: center; padding: .7rem; border-radius: 10px; background: var(--panel); border: 1px solid var(--line);
  font-weight: 700; font-size: .85rem;
}
.mm-langs a.active{ background: var(--gold); border-color: var(--gold); color: #171200; }
.mm-label{ font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); margin-top: 2rem; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  position: relative;
  padding: 8.5rem 0 4rem;
  overflow: hidden;
  background: var(--paper);
  min-height: 480px; /* reserve layout space to avoid CLS from ::before during load */
}
@media (min-width: 1024px){ .hero{ padding: 10rem 0 5rem; min-height: 560px; } }

.hero::before{
  content: '';
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: repeating-linear-gradient(90deg, var(--line-soft) 0 1px, transparent 1px 8.33%);
  opacity: .6;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}

.hero-kicker{
  position: relative; z-index: 2;
  display: inline-flex; align-items: center; gap: .7rem;
  font-size: .78rem; font-weight: 600; color: var(--ink-soft);
  margin-bottom: 2.2rem; padding-right: 1rem;
}
.hero-pin{
  width: 2rem; height: 2rem; border-radius: 50%; background: var(--dark); color: var(--gold);
  display: flex; align-items: center; justify-content: center; font-size: .95rem; flex-shrink: 0;
}

.hero-main{
  position: relative; z-index: 2;
  display: grid; gap: 2rem;
  margin-bottom: 2.6rem;
}
@media (min-width: 900px){ .hero-main{ grid-template-columns: 1.6fr 1fr; gap: 3rem; align-items: start; } }
.hero-main > *{ min-width: 0; }

.hero-title{
  position: relative;
  font-size: clamp(2.3rem, 5.2vw, 4rem);
  font-weight: 700; line-height: 1.08; letter-spacing: -0.02em;
}
.hero-title .accent{ color: var(--gold-dark); }
.hero-ghost{
  position: absolute; left: -.1em; top: -.62em;
  font-size: clamp(3.6rem, 11vw, 8rem); font-weight: 800; white-space: nowrap;
  color: var(--ink); opacity: .04; z-index: -1; pointer-events: none; user-select: none;
  max-width: 100vw; overflow: hidden; text-overflow: clip;
}

.hero-photo{
  display: none;
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(17,24,39,.28);
  transform: rotate(1deg);
}
@media (min-width: 900px){
  .hero-photo{ display: block; height: clamp(320px, 26vw, 440px); margin-top: .4rem; }
}
.hero-photo img{ width: 100%; height: 100%; object-fit: cover; }
.hero-photo::after{
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(200deg, transparent 55%, rgba(17,17,17,.55));
}
.hero-photo-tag{
  position: absolute; left: 1rem; bottom: 1rem; z-index: 2;
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.92); backdrop-filter: blur(6px);
  color: var(--ink); font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
  padding: .55rem .9rem; border-radius: 100px;
}
.hero-photo-tag i{ color: var(--green); }

.hero-text{
  font-size: 1.05rem; color: var(--ink-soft); max-width: 36rem; font-weight: 300; line-height: 1.75;
  margin-top: 1.2rem;
}
.hero-text strong{ color: var(--ink); font-weight: 600; }

.hero-stats{ display: flex; flex-wrap: wrap; gap: 1.6rem; margin-top: 1.8rem; }
.stat{ padding-left: 1.6rem; border-left: 1px solid var(--line); }
.stat:first-child{ padding-left: 0; border-left: 0; }
.stat strong{ display: block; font-family: 'Syne', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--ink); }
.stat span{ display: block; font-size: .68rem; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); margin-top: .2rem; }

/* Booking bar */
.book-bar{
  position: relative; z-index: 2;
  display: grid; gap: 1.2rem;
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.6rem;
  margin-top: 2.4rem;
  box-shadow: 0 35px 70px -25px rgba(17,24,39,.22);
}
@media (min-width: 560px){ .book-bar{ padding: 1.9rem; } }
@media (min-width: 900px){
  .book-bar{
    grid-template-columns: auto auto 1fr auto 1fr auto;
    align-items: center; gap: 1.4rem; padding: .85rem .9rem .85rem 1.7rem;
    border-radius: 100px;
  }
}

.book-bar-label{ display: flex; align-items: center; gap: 1rem; }
.book-bar-label i{
  width: 3rem; height: 3rem; border-radius: 50%; background: var(--gold-soft); color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center; font-size: 1.25rem; flex-shrink: 0;
}
.book-bar-label strong{ display: block; font-size: 1rem; font-weight: 700; color: var(--ink); }
.book-bar-label span{ display: block; font-size: .74rem; color: var(--muted); margin-top: .1rem; }

.book-bar-divider{ display: none; width: 1px; height: 2.6rem; background: var(--line); }
@media (min-width: 900px){ .book-bar-divider{ display: block; } }

.book-bar-field{
  padding: .9rem 1.15rem;
  border-radius: var(--radius-sm);
  background: var(--panel-alt);
  border: 1px solid var(--line);
  transition: border-color .2s, background .2s, box-shadow .2s;
  min-width: 0;
}
.book-bar-field:focus-within{
  border-color: var(--gold-line); background: var(--gold-soft);
  box-shadow: 0 0 0 3px rgba(234,179,8,.14);
}
@media (min-width: 900px){
  .book-bar-field{ background: transparent; border-color: transparent; padding: .3rem 0; }
  .book-bar-field:focus-within{ background: transparent; box-shadow: none; }
}
.book-bar-field label{
  display: block; font-size: .64rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 700;
  color: var(--muted); margin-bottom: .35rem;
}
.book-bar-field input{
  width: 100%; border: 0; background: transparent; font-size: .95rem; font-weight: 600; color: var(--ink); padding: 0; min-width: 0;
}
.book-bar-field input:focus{ outline: none; }

.book-bar-submit{ border-radius: 100px; margin: 0; white-space: nowrap; padding: 1.05rem 1.8rem; }
@media (min-width: 900px){ .book-bar-submit{ padding: .95rem 1.7rem; } }

.book-bar-note{
  position: relative; z-index: 2; width: fit-content;
  display: flex; align-items: center; gap: .5rem;
  font-size: .74rem; font-weight: 600; color: var(--muted);
  margin: 1.2rem auto 0; padding: .55rem 1.1rem;
  background: var(--panel); border: 1px solid var(--line); border-radius: 100px;
}
.book-bar-note i{ color: var(--green); }

/* ==========================================================================
   Trust strip
   ========================================================================== */
.trust{ padding: 1.8rem 0; }
.trust-row{
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 2.2rem;
}
@media (min-width: 900px){ .trust-row{ justify-content: space-between; } }
.trust-item{ display: flex; align-items: center; gap: .9rem; }
.trust-stars{ display: flex; gap: 2px; color: var(--gold); font-size: .85rem; }
.trust-item small{ display: block; font-size: .72rem; font-weight: 700; color: var(--ink-soft); }
.trust-item img{ height: 1.3rem; opacity: .75; }
.trust-item .ico{ font-size: 1.6rem; color: var(--green); }
.trust-copy strong{ display: block; font-weight: 700; color: var(--ink); font-size: .88rem; }
.trust-copy span{ font-size: .74rem; color: var(--muted); }

/* ==========================================================================
   Benefits
   ========================================================================== */
.benefits-grid{
  display: grid; gap: 2.8rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px){ .benefits-grid{ grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px){ .benefits-grid{ grid-template-columns: repeat(4,1fr); } }

.benefit{ position: relative; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.benefit .idx{
  font-family: 'Syne', sans-serif; font-size: .78rem; font-weight: 700; color: var(--gold-dark);
  letter-spacing: .08em; margin-bottom: 1.1rem; display: block;
}
.benefit .ico{
  width: 3.2rem; height: 3.2rem; border-radius: 12px; background: var(--gold-soft); color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1.2rem;
  transition: transform .3s var(--ease);
}
.benefit:hover .ico{ transform: scale(1.08) rotate(-4deg); }
.benefit h3{ font-size: 1.15rem; font-weight: 700; margin-bottom: .6rem; }
.benefit p{ font-size: .92rem; color: var(--muted); line-height: 1.65; }

.callout{
  margin-top: 4.5rem; border-radius: var(--radius-md);
  background: linear-gradient(120deg, var(--gold-soft), rgba(234,179,8,.03));
  border: 1px solid var(--gold-line); padding: 1.8rem 2rem;
  display: flex; gap: 1.4rem; align-items: flex-start; max-width: 52rem; margin-left: auto; margin-right: auto;
}
.callout .ico{
  flex-shrink: 0; width: 3rem; height: 3rem; border-radius: 50%; background: rgba(234,179,8,.18);
  color: var(--gold-dark); display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
}
.callout h4{ font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.callout p{ font-size: .9rem; color: var(--ink-soft); line-height: 1.65; }

/* ==========================================================================
   How it works — timeline
   ========================================================================== */
.timeline{ max-width: 780px; margin: 0 auto; position: relative; }
.timeline::before{
  content: ''; position: absolute; left: 1.4rem; top: .5rem; bottom: .5rem; width: 1px;
  background: linear-gradient(to bottom, var(--gold), var(--line) 70%);
}
@media (min-width: 768px){ .timeline::before{ left: 50%; margin-left: -.5px; } }

.step{ position: relative; padding-left: 4rem; padding-bottom: 3.4rem; }
.step:last-child{ padding-bottom: 0; }
.step .marker{
  position: absolute; left: 0; top: 0; width: 2.9rem; height: 2.9rem; border-radius: 50%;
  background: var(--panel); border: 2px solid var(--line); display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-weight: 700; color: var(--ink); z-index: 2;
}
.step.is-first .marker{ border-color: var(--gold); color: var(--gold-dark); box-shadow: 0 0 0 6px var(--gold-soft); }
.step h3{ font-size: 1.2rem; font-weight: 700; margin-bottom: .5rem; }
.step p{ font-size: .92rem; color: var(--muted); max-width: 30rem; }

@media (min-width: 768px){
  .step{ padding-left: 0; width: 50%; }
  .step .marker{ left: auto; }
  .step:nth-child(odd){ padding-right: 3.4rem; text-align: right; margin-left: 0; }
  .step:nth-child(odd) .marker{ right: -1.45rem; left: auto; }
  .step:nth-child(even){ padding-left: 3.4rem; margin-left: 50%; }
  .step:nth-child(even) .marker{ left: -1.45rem; }
  .step:nth-child(odd) p{ margin-left: auto; }
}

/* ==========================================================================
   Comparison
   ========================================================================== */
.compare{ display: grid; gap: 1.4rem; grid-template-columns: 1fr; max-width: 980px; margin: 0 auto; }
@media (min-width: 900px){ .compare{ grid-template-columns: repeat(3,1fr); align-items: stretch; } }

.compare-col{
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 2rem 1.7rem; display: flex; flex-direction: column;
}
.compare-col.featured{
  border: 2px solid var(--gold); box-shadow: 0 25px 50px -20px rgba(234,179,8,.35);
  position: relative; z-index: 1;
}
@media (min-width: 900px){ .compare-col.featured{ transform: translateY(-1.2rem); } }
.compare-tag{
  position: absolute; top: -.9rem; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #171200; font-size: .68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; padding: .4rem 1rem; border-radius: 100px; white-space: nowrap;
}
.compare-head{ text-align: center; margin-bottom: 1.6rem; }
.compare-head span{ font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.compare-head h3{ font-size: 1.3rem; font-weight: 700; margin-top: .3rem; }
.compare-price{ font-family: 'Syne', sans-serif; font-size: 2.1rem; font-weight: 700; color: var(--ink); text-align: center; margin-bottom: 1.6rem; }
.compare-price.gold{ color: var(--gold-dark); }
.compare-price s{ display: block; font-size: .8rem; font-weight: 400; color: var(--muted-2); font-family: 'Inter',sans-serif; }
.compare-list{ display: flex; flex-direction: column; gap: 1rem; flex: 1; }
.compare-list li{ display: flex; align-items: flex-start; gap: .7rem; font-size: .88rem; }
.compare-list li b{ display: block; color: var(--ink); font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; margin-bottom: .15rem; }
.compare-list i{ margin-top: .15rem; font-size: 1.1rem; flex-shrink: 0; }
.i-ok{ color: var(--green); }
.i-bad{ color: var(--red); }
.i-neutral{ color: var(--muted); }

/* ==========================================================================
   Upgrades
   ========================================================================== */
.upgrades-grid{ display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
@media (min-width: 640px){ .upgrades-grid{ grid-template-columns: 1fr 1fr; } }

.upgrade-card{
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 1.7rem;
  display: flex; flex-direction: column; justify-content: space-between; transition: border-color .25s, box-shadow .25s, transform .25s;
}
.upgrade-card:hover{ border-color: var(--gold-line); box-shadow: 0 20px 40px -20px rgba(17,24,39,.15); transform: translateY(-3px); }
.upgrade-card .ico{
  width: 2.7rem; height: 2.7rem; border-radius: 50%; background: var(--gold-soft); color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 1rem;
}
.upgrade-card h4{ font-size: 1.05rem; font-weight: 700; margin-bottom: .3rem; }
.upgrade-card p{ font-size: .82rem; color: var(--muted); }
.upgrade-foot{ display: flex; align-items: flex-end; justify-content: space-between; border-top: 1px solid var(--line); padding-top: 1rem; margin-top: 1.3rem; }
.upgrade-foot span{ font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.upgrade-foot strong{ font-family: 'Syne', sans-serif; font-size: 1.35rem; color: var(--ink); }

.upgrade-featured{
  grid-column: 1 / -1; display: flex; align-items: center; gap: 1.6rem; position: relative; overflow: hidden;
  background: linear-gradient(120deg, var(--gold-soft), transparent);
  border: 2px solid var(--gold-line); border-radius: var(--radius-md); padding: 1.8rem;
}
.upgrade-featured .tag{
  position: absolute; top: 0; right: 0; background: var(--gold); color: #171200; font-size: .65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em; padding: .45rem 1rem; border-radius: 0 0 0 12px;
}
.upgrade-featured .ico{
  width: 4rem; height: 4rem; flex-shrink: 0; border-radius: 50%; background: rgba(234,179,8,.16); color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center; font-size: 1.7rem;
}
.upgrade-featured h4{ font-size: 1.25rem; font-weight: 700; margin-bottom: .3rem; }
.upgrade-featured p{ font-size: .88rem; color: var(--ink-soft); }
.upgrade-featured .price{ text-align: right; flex-shrink: 0; }
.upgrade-featured .price s{ display: block; font-size: .68rem; color: var(--muted-2); text-transform: uppercase; }
.upgrade-featured .price strong{ font-family: 'Syne', sans-serif; font-size: 2rem; color: var(--gold-dark); }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.reviews-grid{ display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
@media (min-width: 900px){ .reviews-grid{ grid-template-columns: repeat(3,1fr); } }
.review-card{
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 2rem;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.review-card:hover{ border-color: var(--gold-line); box-shadow: 0 20px 40px -20px rgba(17,24,39,.15); transform: translateY(-3px); }
.review-top{ display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.2rem; }
.review-top .stars{ color: var(--gold); font-size: .8rem; display: flex; gap: 1px; }
.review-top .src{ font-size: .65rem; font-weight: 700; text-transform: uppercase; color: var(--muted); }
.review-card blockquote{ margin: 0 0 1.5rem; font-size: .92rem; color: var(--ink-soft); line-height: 1.7; }
.review-person{ display: flex; align-items: center; gap: .8rem; }
.review-person .avatar{
  width: 2.3rem; height: 2.3rem; border-radius: 50%; background: var(--dark); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: .8rem; font-weight: 700;
}
.review-person span{ font-weight: 700; color: var(--ink); font-size: .88rem; }

/* ==========================================================================
   Map / location
   ========================================================================== */
.map-frame{
  border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--line); box-shadow: 0 30px 60px -25px rgba(17,24,39,.2);
}
.map-frame iframe{ width: 100%; height: 460px; border: 0; display: block; }
.loc-grid{ display: grid; gap: 1.2rem; grid-template-columns: 1fr; margin-top: 2.5rem; }
@media (min-width: 768px){ .loc-grid{ grid-template-columns: repeat(3,1fr); } }
.loc-card{ background: var(--panel-alt); border-radius: var(--radius-sm); padding: 1.8rem; text-align: center; }
.loc-card .ico{
  width: 2.9rem; height: 2.9rem; border-radius: 50%; background: var(--gold-soft); color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin: 0 auto 1rem;
}
.loc-card h3{ font-size: 1rem; font-weight: 700; margin-bottom: .4rem; }
.loc-card p{ font-size: .85rem; color: var(--muted); }
.loc-card a{ font-size: .85rem; font-weight: 700; color: var(--gold-dark); }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid{ display: grid; gap: 3.2rem; grid-template-columns: 1fr; }
@media (min-width: 1024px){ .contact-grid{ grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; } }
.contact-info h2{ font-size: clamp(2rem,4vw,2.8rem); margin-bottom: 1.2rem; }
.contact-info > p{ color: var(--muted); font-size: 1.02rem; margin-bottom: 2.2rem; max-width: 28rem; }
.contact-line{ display: flex; align-items: center; gap: 1rem; margin-bottom: 1.4rem; }
.contact-line .ico{
  width: 3rem; height: 3rem; border-radius: 12px; background: var(--dark); color: var(--gold);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0;
}
.contact-line small{ display: block; font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.contact-line strong{ font-size: 1.1rem; color: var(--ink); }

.contact-form{ background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2.2rem; }
.contact-form .field{ margin-bottom: 1.1rem; }
.field label{
  display: block; font-size: .66rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 700;
  color: var(--muted); margin-bottom: .4rem;
}
.field input{
  width: 100%; background: var(--panel-alt); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: .85rem .9rem; font-size: .92rem; color: var(--ink); transition: border-color .2s, box-shadow .2s;
  min-width: 0;
}
.field input:focus{
  outline: none; border-color: var(--gold); background: var(--panel);
  box-shadow: 0 0 0 3px var(--gold-soft);
}
.contact-form textarea{
  width: 100%; background: var(--panel-alt); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: .85rem .9rem; font-size: .92rem; resize: none; transition: border-color .2s, box-shadow .2s;
}
.contact-form textarea:focus{ outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-soft); }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer{ background: var(--dark); color: rgba(255,255,255,.6); padding: 5rem 0 2rem; }
.footer h4{ color: #fff; font-size: .92rem; font-weight: 700; margin-bottom: 1.1rem; text-transform: uppercase; letter-spacing: .06em; }
.footer-grid{ display: grid; gap: 2.6rem; grid-template-columns: 1fr; margin-bottom: 3.5rem; }
@media (min-width: 768px){ .footer-grid{ grid-template-columns: 1.3fr 1fr 1fr 1fr; } }
.footer-brand img{ height: 2.6rem; filter: brightness(0) invert(1); margin-bottom: 1.2rem; }
.footer-brand p{ font-size: .88rem; line-height: 1.7; max-width: 22rem; margin-bottom: 1.4rem; }
.footer-social{ display: flex; gap: .8rem; }
.footer-social a{
  width: 2.4rem; height: 2.4rem; border-radius: 50%; border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center; transition: border-color .2s, color .2s;
}
.footer-social a:hover{ border-color: var(--gold); color: var(--gold); }
.footer ul li{ margin-bottom: .7rem; font-size: .88rem; }
.footer ul li a:hover{ color: var(--gold); }
.footer ul li{ display: flex; align-items: flex-start; gap: .5rem; }
.footer ul li i{ color: var(--gold); margin-top: .2rem; }
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,.12); padding-top: 1.8rem;
  display: flex; flex-direction: column; gap: .6rem; font-size: .78rem;
}
@media (min-width: 768px){ .footer-bottom{ flex-direction: row; justify-content: space-between; align-items: center; } }
.footer-bottom a{ color: var(--gold); font-weight: 700; }
.footer-outro{
  font-family: 'Syne', sans-serif; font-weight: 800; color: rgba(255,255,255,.06);
  font-size: clamp(3rem, 12vw, 9rem); line-height: .85; letter-spacing: -.03em; text-align: center;
  margin: 1rem 0 3rem; user-select: none;
}

/* ==========================================================================
   Floating dock + sticky mobile bar
   ========================================================================== */
.dock{
  position: fixed; right: 1.1rem; bottom: 6.4rem; z-index: 400;
  display: flex; flex-direction: column; gap: .8rem; align-items: flex-end;
}
@media (min-width: 900px){ .dock{ bottom: 2rem; } }
.dock a{
  width: 3.3rem; height: 3.3rem; border-radius: 16px; display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; position: relative; box-shadow: 0 12px 28px rgba(17,24,39,.18);
  transition: transform .25s var(--ease), box-shadow .25s;
  border: 1px solid var(--line);
  background: var(--panel); color: var(--ink);
}
.dock a:hover{ transform: translateY(-3px) scale(1.05); }
.dock a.whatsapp{ background: #25D366; color: #fff; border-color: transparent; }
.dock a.mail{ background: var(--gold); color: #171200; border-color: transparent; }
.dock .tip{
  position: absolute; right: calc(100% + .7rem); top: 50%; transform: translateY(-50%);
  background: var(--dark); color: #fff; font-size: .72rem; font-weight: 700; padding: .45rem .8rem; border-radius: 8px;
  white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity .2s;
  display: none;
}
@media (min-width: 900px){ .dock .tip{ display: block; } }
.dock a:hover .tip{ opacity: 1; }

.sticky-bar{
  position: fixed; left: 0; bottom: 0; width: 100%; z-index: 450;
  background: rgba(250,249,247,.96); backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
  padding: .85rem 1rem; padding-bottom: calc(.85rem + env(safe-area-inset-bottom));
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  box-shadow: 0 -10px 25px rgba(17,24,39,.08);
}
@media (min-width: 900px){ .sticky-bar{ display: none; } }
.sticky-bar .avail{ font-size: .68rem; text-transform: uppercase; font-weight: 700; color: var(--green); display: flex; align-items: center; gap: .3rem; }
.sticky-bar .price{ font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.15rem; color: var(--ink); }
.sticky-bar .price span{ font-size: .68rem; font-weight: 400; color: var(--muted); font-family: 'Inter', sans-serif; }

/* ==========================================================================
   Promo popup
   ========================================================================== */
.popup{
  position: fixed; inset: 0; z-index: 900; display: flex; align-items: center; justify-content: center; padding: 1.2rem;
  opacity: 0; pointer-events: none; transition: opacity .4s var(--ease);
}
.popup.open{ opacity: 1; pointer-events: auto; }
.popup-overlay{ position: absolute; inset: 0; background: rgba(17,17,17,.72); backdrop-filter: blur(4px); }
.popup-card{
  position: relative; background: var(--panel); border: 1px solid var(--gold-line); border-radius: var(--radius-lg);
  max-width: 26rem; width: 100%; padding: 2.4rem; box-shadow: 0 40px 90px rgba(0,0,0,.4);
  transform: translateY(18px) scale(.97); transition: transform .4s var(--ease);
}
.popup.open .popup-card{ transform: translateY(0) scale(1); }
.popup-close{
  position: absolute; top: 1.1rem; right: 1.1rem; width: 2.2rem; height: 2.2rem; border-radius: 50%;
  border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; color: var(--muted);
  background: transparent;
}
.popup-close:hover{ color: var(--ink); border-color: var(--ink); }
.popup-tag{
  display: inline-block; background: var(--gold); color: #171200; font-size: .62rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em; padding: .4rem .9rem; border-radius: 100px; margin-bottom: 1rem;
}
.popup-card h2{ font-size: 1.7rem; font-weight: 700; line-height: 1.25; margin-bottom: .6rem; }
.popup-card h2 span{ color: var(--gold-dark); }
.popup-card > p{ font-size: .9rem; color: var(--muted); margin-bottom: 1.4rem; }
.popup-list{ background: var(--panel-alt); border-radius: var(--radius-sm); padding: 1rem 1.1rem; margin-bottom: 1.6rem; display: flex; flex-direction: column; gap: .8rem; }
.popup-list div{ display: flex; align-items: center; gap: .7rem; font-size: .84rem; color: var(--ink-soft); }
.popup-list .ico{ width: 2rem; height: 2rem; border-radius: 50%; background: var(--gold-soft); color: var(--gold-dark); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.popup-skip{ text-align: center; font-size: .7rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); margin-top: 1.1rem; cursor: pointer; }
.popup-skip:hover{ color: var(--ink-soft); }
.popup-fine{ text-align: center; font-size: .68rem; color: var(--muted-2); margin-top: .4rem; }

/* Utility */
.text-center{ text-align: center; }
.mt-lg{ margin-top: 4.5rem; }

/* ==========================================================================
   Compatibility shim
   form-handler.js injects a few Tailwind-style utility classes at runtime
   (privacy checkbox, reCAPTCHA badge, toast notifications). These rules
   translate the exact classes it uses into the redesign's visual language,
   without pulling in Tailwind itself.
   ========================================================================== */
.privacy-checkbox{ margin: 1rem 0; }
.privacy-checkbox label.flex{ display: flex; align-items: flex-start; gap: .7rem; cursor: pointer; }
.privacy-checkbox input[type="checkbox"]{
  margin-top: .2rem; width: 1.1rem; height: 1.1rem; accent-color: var(--gold); border-radius: 4px; flex-shrink: 0;
}
.privacy-checkbox .text-xs{ font-size: .76rem; color: var(--muted); line-height: 1.6; }

.recaptcha-info{ font-size: .68rem; color: var(--muted-2); text-align: center; margin-top: .6rem; }
.recaptcha-info i{ color: var(--gold-dark); }

/* Hide the floating Google reCAPTCHA v3 badge site-wide (invisible challenge, no checkbox needed).
   Google's terms require the disclosure text/links to remain visible instead — see .recaptcha-info above. */
.grecaptcha-badge{ visibility: hidden !important; }

.form-notification{
  position: fixed; top: 1.2rem; right: 1.2rem; z-index: 2000; max-width: 24rem;
  padding: 1rem 1.1rem; border-radius: var(--radius-sm); box-shadow: 0 25px 50px rgba(0,0,0,.25);
  transform: translateX(120%); transition: transform .35s var(--ease); color: #fff; font-size: .88rem;
}
.form-notification.bg-green-500{ background: var(--green); }
.form-notification.bg-red-500{ background: var(--red); }
.form-notification.bg-blue-500{ background: #2563eb; }
.form-notification .flex{ display: flex; align-items: flex-start; gap: .7rem; }
.form-notification .flex-1{ flex: 1; }
.form-notification .font-medium{ font-weight: 600; display: block; }
.form-notification .mt-3{ margin-top: .8rem; }
.form-notification .flex.gap-2{ display: flex; gap: .5rem; }
.form-notification button{ background: transparent; border: 0; color: #fff; opacity: .85; }
.form-notification button:hover{ opacity: 1; }
.form-notification a.inline-flex{
  display: inline-flex; align-items: center; gap: .4rem; padding: .5rem .8rem; border-radius: 8px;
  font-size: .82rem; font-weight: 600; color: #fff; background: rgba(255,255,255,.18);
}
.form-notification a.inline-flex:hover{ background: rgba(255,255,255,.3); }

.animate-spin{ display: inline-block; animation: spin 1s linear infinite; }
@keyframes spin{ to{ transform: rotate(360deg); } }
