/* ============ Your LocalLift — "Sitio Oficial" design ============
   Implemented from the Claude Design project file
   "LocalLift - Sitio Oficial.html" (Website improvement ideas). */

:root {
  --cream: #fbf6ed;
  --ink: #1d2c30;
  --terra: #e8542f;
  --terra-2: #f0703c;
  --rust: #c43e1d;
  --gold: #ffb525;
  --gold-2: #ffc754;
  --teal: #0f766b;
  --soft: #5a6f74;
  --line: #e8dcc8;
  --ink-on-dark: #9fb9b4;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Bricolage Grotesque", var(--font-body);
  --font-serif: "DM Serif Display", Georgia, serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; }
a { color: var(--rust); text-decoration: none; }
a:hover { color: var(--terra); }
::selection { background: var(--gold); color: var(--ink); }

.container { max-width: 1200px; margin-inline: auto; }

/* ---------- typography ---------- */

.h-serif {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(32px, 3.5vw, 44px);
  letter-spacing: -0.01em;
  line-height: 1.12;
  text-wrap: balance;
}
.h-serif em { font-style: italic; color: var(--rust); }

/* ---------- accessibility ---------- */

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--ink); color: var(--cream);
  padding: 0.7rem 1.2rem; border-radius: 0 0 12px 0; font-weight: 700;
}
.skip-link:focus { left: 0; }

a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* ---------- nav (dark bar) ---------- */

.nav-wrap { position: sticky; top: 0; z-index: 50; background: var(--ink); }

.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 48px; color: var(--cream);
  font-family: var(--font-display);
  position: relative;
}

.logo { font-weight: 800; font-size: 24px; color: var(--cream); letter-spacing: -0.01em; }
.logo span { color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 24px; list-style: none; font-size: 14px; font-weight: 700; }
.nav-links a:not(.btn-nav) { color: var(--cream); }
.nav-links a:not(.btn-nav):hover { color: var(--gold); }
.lang-link { opacity: 0.7; }
.lang-link:hover { opacity: 1; }

.btn-nav {
  background: var(--gold); color: var(--ink) !important;
  border-radius: 10px; padding: 11px 20px; font-weight: 800;
}
.btn-nav:hover { background: var(--gold-2); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 10px; }
.nav-toggle span { width: 24px; height: 3px; background: var(--cream); border-radius: 2px; transition: transform 0.2s ease, opacity 0.2s ease; }

/* ---------- hero (orange) ---------- */

.hero {
  background: linear-gradient(120deg, var(--terra), var(--terra-2), var(--rust), var(--terra));
  background-size: 300% 300%;
  animation: ll-gradient 16s ease infinite;
  color: var(--cream);
  padding: 72px 48px 64px;
  position: relative; overflow: hidden;
  font-family: var(--font-display);
}
.hero::after {
  content: ""; position: absolute; right: -60px; top: -60px;
  width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--gold), var(--terra-2) 70%);
  opacity: 0.85;
  animation: ll-drift 14s ease-in-out infinite;
}
.hero::before {
  content: ""; position: absolute; left: -90px; bottom: -110px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle at 60% 40%, rgba(15, 118, 107, 0.55), transparent 72%);
  animation: ll-drift2 18s ease-in-out infinite;
}

@keyframes ll-gradient { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
@keyframes ll-glow { 0%, 100% { box-shadow: 0 0 28px rgba(232, 84, 47, 0.55); } 50% { box-shadow: 0 0 44px rgba(255, 181, 37, 0.75); } }
@keyframes ll-float { 0%, 100% { transform: translateY(0) rotate(-6deg); } 50% { transform: translateY(-12px) rotate(-3deg); } }
@keyframes ll-drift { 0%, 100% { transform: translate(0, 0) scale(1); } 33% { transform: translate(40px, -24px) scale(1.08); } 66% { transform: translate(-28px, 20px) scale(0.95); } }
@keyframes ll-drift2 { 0%, 100% { transform: translate(0, 0) scale(1); } 40% { transform: translate(-36px, 26px) scale(1.1); } 75% { transform: translate(24px, -18px) scale(0.92); } }
@keyframes ll-sheen { 0% { transform: translateX(-150%) skewX(-18deg); } 100% { transform: translateX(350%) skewX(-18deg); } }

.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 44px; align-items: end;
  max-width: 1200px; margin-inline: auto;
}

.sticker {
  display: inline-block; background: var(--ink); color: var(--gold);
  border-radius: 8px; padding: 7px 14px;
  font-weight: 800; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  transform: rotate(-2deg); margin-bottom: 22px;
}

.hero h1 {
  font-weight: 800; font-size: clamp(48px, 6vw, 78px);
  line-height: 0.98; letter-spacing: -0.03em; text-transform: uppercase;
}
.hero h1 em { font-style: normal; color: var(--gold); }

.hero .lead {
  font-family: var(--font-body);
  font-size: 18px; margin: 24px 0 30px; max-width: 28em; color: #ffe3d6;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.btn-gold {
  display: inline-block; background: var(--gold); color: var(--ink);
  border-radius: 14px; padding: 18px 30px;
  font-weight: 800; font-size: 17px; white-space: nowrap;
  box-shadow: 6px 6px 0 var(--ink);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  text-transform: uppercase;
}
.btn-gold:hover { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 var(--ink); color: var(--ink); }
.hero .btn-gold { position: relative; overflow: hidden; }
.hero .btn-gold::before {
  content: ""; position: absolute; top: 0; bottom: 0; left: 0; width: 40%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  animation: ll-sheen 3.5s ease-in-out infinite;
  pointer-events: none;
}

.btn-cream {
  display: inline-block; border: 3px solid var(--cream); color: var(--cream);
  border-radius: 14px; padding: 15px 26px;
  font-weight: 800; font-size: 17px; white-space: nowrap;
  text-transform: uppercase;
  transition: background 0.15s ease;
}
.btn-cream:hover { background: rgba(255, 255, 255, 0.12); color: var(--cream); }

/* hero visual — animated growth chart */
.hero-photo { position: relative; }

.growth-frame {
  width: 100%; height: 360px; border-radius: 22px;
  border: 4px solid var(--ink); box-shadow: 10px 10px 0 var(--ink);
  background: linear-gradient(160deg, #16262b, var(--ink));
  color: var(--cream);
  padding: 22px 24px 18px;
  display: flex; flex-direction: column;
}

.growth-head, .growth-foot {
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 800; font-size: 12px; letter-spacing: 0.1em;
}
.growth-head { color: var(--cream); }
.growth-foot { color: #7fa09b; margin-top: 10px; }
.growth-arrow { font-size: 26px; color: var(--gold); line-height: 1; }

.growth-bars {
  flex: 1; display: flex; align-items: flex-end; gap: 10px;
  margin-top: 14px; border-bottom: 2px solid rgba(255, 255, 255, 0.15); padding-bottom: 2px;
}
.gbar {
  flex: 1; height: var(--h);
  background: linear-gradient(180deg, var(--gold), #d99a1f);
  border-radius: 7px 7px 3px 3px;
  transform-origin: bottom; transform: scaleY(0);
}
.gbar-hot { background: linear-gradient(180deg, var(--terra-2), var(--terra)); }
.reveal.in .gbar { animation: grow-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.reveal.in .gbar:nth-child(2) { animation-delay: 0.08s; }
.reveal.in .gbar:nth-child(3) { animation-delay: 0.16s; }
.reveal.in .gbar:nth-child(4) { animation-delay: 0.24s; }
.reveal.in .gbar:nth-child(5) { animation-delay: 0.32s; }
.reveal.in .gbar:nth-child(6) { animation-delay: 0.4s; }
.reveal.in .gbar:nth-child(7) { animation-delay: 0.48s; }
@keyframes grow-up { to { transform: scaleY(1); } }

/* ---------- results / scaling section ---------- */

.results-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 34px;
}
.result-card {
  background: #fff; border: 2px solid var(--ink); border-radius: 18px;
  padding: 24px; box-shadow: 6px 6px 0 var(--q, var(--terra));
}
.result-num {
  font-family: var(--font-serif); font-size: 46px; line-height: 1; color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.result-label { font-size: 14px; color: var(--soft); font-weight: 600; margin-top: 6px; }
.mini-bars {
  display: flex; align-items: flex-end; gap: 6px; height: 64px; margin-top: 16px;
  border-bottom: 2px solid var(--line); padding-bottom: 2px;
}
.mini-bars span {
  flex: 1; height: var(--h); background: var(--q, var(--terra));
  border-radius: 5px 5px 2px 2px;
  transform-origin: bottom; transform: scaleY(0);
}
.reveal.in .mini-bars span { animation: grow-up 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.reveal.in .mini-bars span:nth-child(2) { animation-delay: 0.08s; }
.reveal.in .mini-bars span:nth-child(3) { animation-delay: 0.16s; }
.reveal.in .mini-bars span:nth-child(4) { animation-delay: 0.24s; }
.reveal.in .mini-bars span:nth-child(5) { animation-delay: 0.32s; }
.results-note { text-align: center; font-size: 13.5px; color: var(--soft); margin-top: 22px; }

.badge-float {
  position: absolute; left: -22px; top: -34px;
  background: var(--teal); color: #fff; border-radius: 999px;
  padding: 12px 18px; font-weight: 800; font-size: 15px;
  transform: rotate(-6deg); box-shadow: 4px 4px 0 var(--ink);
  animation: ll-float 5s ease-in-out infinite;
}

/* ---------- marquee strip ---------- */

.marquee {
  background: var(--ink); color: var(--cream); padding: 14px 0;
  font-family: var(--font-display); font-weight: 800; font-size: 15px;
  letter-spacing: 0.06em; white-space: nowrap; overflow: hidden;
}
.marquee-track { display: inline-block; animation: marquee 28s linear infinite; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- papel picado dividers ---------- */

.cenefa {
  height: 26px;
  clip-path: polygon(0 0,100% 0,100% 40%,97.5% 100%,95% 40%,92.5% 100%,90% 40%,87.5% 100%,85% 40%,82.5% 100%,80% 40%,77.5% 100%,75% 40%,72.5% 100%,70% 40%,67.5% 100%,65% 40%,62.5% 100%,60% 40%,57.5% 100%,55% 40%,52.5% 100%,50% 40%,47.5% 100%,45% 40%,42.5% 100%,40% 40%,37.5% 100%,35% 40%,32.5% 100%,30% 40%,27.5% 100%,25% 40%,22.5% 100%,20% 40%,17.5% 100%,15% 40%,12.5% 100%,10% 40%,7.5% 100%,5% 40%,2.5% 100%,0 40%);
}
.cenefa--terra { background: var(--terra); }
.cenefa--ink { background: var(--ink); }
.cenefa--flip { transform: scaleY(-1); }

/* ---------- sections ---------- */

.section { padding: 72px 48px; }
.section-tight { padding: 0 48px 72px; }

/* ---------- services grid ---------- */

.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  margin-top: 34px; border-top: 1px solid var(--line);
}
.svc { padding: 28px 26px; border-bottom: 1px solid var(--line); border-left: 1px solid var(--line); }
.svc:nth-child(3n + 1) { border-left: 0; padding-left: 0; }
.svc-num { font-family: var(--font-serif); font-size: 22px; color: var(--terra); }
.svc h3 { font-size: 17px; font-weight: 700; margin: 6px 0; }
.svc p { font-size: 14px; color: var(--soft); }

.svc-cta { grid-column: span 2; background: #fdf3e3; display: flex; flex-direction: column; justify-content: center; padding-left: 26px !important; }
.svc-cta h3 { margin-top: 0; }
.svc-cta a { font-weight: 800; }

/* ---------- pricing table ---------- */

.price-table {
  border: 2px solid var(--ink); border-radius: 18px; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr 1fr; background: #fff;
  margin-top: 26px;
}
.price-col { padding: 32px; display: flex; flex-direction: column; }
.price-col + .price-col { border-left: 2px solid var(--ink); }
.price-col.dark { background: var(--ink); color: var(--cream); position: relative; border-left: 0; }
.price-col.dark + .price-col { border-left: 0; }

.plan-label { font-weight: 700; font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--soft); }
.dark .plan-label { color: var(--ink-on-dark); }

.plan-price { font-family: var(--font-serif); font-size: 48px; margin: 6px 0; }
.plan-price small { font-size: 18px; color: var(--soft); font-family: var(--font-body); }
.dark .plan-price small { color: var(--ink-on-dark); }

.plan-tag { font-size: 14px; color: var(--teal); font-weight: 600; margin-bottom: 14px; }
.dark .plan-tag { color: var(--gold); }

.plan-features { list-style: none; margin-bottom: 22px; display: grid; gap: 8px; font-size: 13.5px; color: var(--soft); flex: 1; }
.dark .plan-features { color: #c6d7d3; }
.plan-features li::before { content: "✓ "; }

.plan-badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--gold); color: var(--ink);
  border-radius: 999px; padding: 4px 12px; font-size: 11.5px; font-weight: 800;
}

.btn-plan {
  display: block; text-align: center;
  border: 2px solid var(--ink); color: var(--ink);
  border-radius: 999px; padding: 12px; font-weight: 700; font-size: 14px; white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}
.btn-plan:hover { background: var(--ink); color: var(--cream); }

.btn-plan-hot {
  display: block; text-align: center;
  background: linear-gradient(135deg, var(--terra), var(--terra-2), var(--gold), var(--terra));
  background-size: 280% 280%;
  animation: ll-gradient 7s ease infinite, ll-glow 4s ease-in-out infinite;
  color: #fff;
  border-radius: 999px; padding: 13px; font-weight: 700; font-size: 14px; white-space: nowrap;
  box-shadow: 0 0 28px rgba(232, 84, 47, 0.55);
  transition: filter 0.15s ease;
}
.btn-plan-hot:hover { filter: brightness(1.08); color: #fff; }

.pricing-note { text-align: center; font-size: 13.5px; color: var(--soft); margin-top: 16px; }

/* ---------- brand showcase ---------- */

.section-sub { font-size: 15.5px; color: var(--soft); margin: 0 0 30px; max-width: 44em; }

.brands-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.brand-card {
  border: 2px solid var(--ink); border-radius: 18px; overflow: hidden;
  background: #fff; display: flex; flex-direction: column;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.brand-card:hover { transform: translateY(-4px); box-shadow: 8px 8px 0 var(--bshadow, var(--gold)); }
.brand-logo { padding: 22px 24px; display: grid; place-items: center; }
.brand-logo img { width: 150px; height: 150px; object-fit: contain; mix-blend-mode: multiply; }
.brand-body { padding: 20px 24px 24px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.brand-swatches { display: flex; gap: 8px; }
.brand-swatches span { width: 34px; height: 34px; border-radius: 50%; border: 2px solid var(--ink); }
.brand-body p { margin: 0; font-size: 13.5px; color: var(--soft); }
.brand-scope { margin-top: auto; font-size: 12px; font-weight: 700; letter-spacing: 0.06em; }

/* ---------- process (dark) ---------- */

.process {
  background:
    radial-gradient(700px 380px at 80% 0%, rgba(232, 84, 47, 0.2), transparent 65%),
    radial-gradient(520px 340px at 0% 100%, rgba(15, 118, 107, 0.26), transparent 70%),
    var(--ink);
  color: #e8f0ee;
  position: relative; overflow: hidden;
}
.process::before {
  content: ""; position: absolute; right: -8%; top: -30%;
  width: 640px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 84, 47, 0.28), transparent 65%);
  animation: ll-drift 20s ease-in-out infinite;
  pointer-events: none;
}
.process::after {
  content: ""; position: absolute; left: -10%; bottom: -35%;
  width: 520px; height: 440px; border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 118, 107, 0.34), transparent 68%);
  animation: ll-drift2 24s ease-in-out infinite;
  pointer-events: none;
}
.process .container { position: relative; z-index: 1; }
.process .h-serif { color: #fff; margin-bottom: 34px; }
.process .h-serif em {
  font-style: italic;
  background: linear-gradient(92deg, var(--gold), var(--terra-2));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; list-style: none; }
.step-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px; padding: 24px;
  backdrop-filter: blur(8px);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.step-card:hover { border-color: rgba(255, 181, 37, 0.5); background: rgba(255, 255, 255, 0.07); }
.step-num { font-family: var(--font-serif); font-size: 44px; color: var(--gold); line-height: 1; text-shadow: 0 0 24px rgba(255, 181, 37, 0.45); }
.step-card h3 { font-size: 16.5px; font-weight: 700; margin: 10px 0 6px; color: #fff; }
.step-card p { font-size: 14px; color: var(--ink-on-dark); }

/* ---------- quotes ---------- */

.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 34px; }
.quote {
  background: #fff; border: 2px solid var(--ink); border-radius: 18px;
  padding: 26px; box-shadow: 6px 6px 0 var(--q, var(--terra));
}
.quote p { font-size: 15px; }
.quote footer { margin-top: 14px; color: var(--soft); font-size: 13px; font-weight: 600; }

/* ---------- FAQ ---------- */

.faq-wrap { max-width: 760px; margin-inline: auto; }
.faq-list { display: grid; gap: 12px; margin-top: 26px; }
.faq-list details { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 18px 22px; }
.faq-list summary {
  font-weight: 700; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+"; flex: none; width: 28px; height: 28px; border-radius: 50%;
  background: #fdece4; color: var(--rust);
  display: grid; place-items: center; font-size: 17px; font-weight: 800;
}
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p { margin-top: 11px; color: var(--soft); font-size: 15px; }

/* ---------- contact (orange) ---------- */

.contact {
  background:
    radial-gradient(620px 380px at 90% 0%, rgba(255, 181, 37, 0.22), transparent 65%),
    radial-gradient(480px 320px at 0% 100%, rgba(29, 44, 48, 0.28), transparent 70%),
    var(--terra);
  color: #fff;
  position: relative; overflow: hidden;
}
.contact::before {
  content: ""; position: absolute; right: -6%; top: -32%;
  width: 560px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 181, 37, 0.3), transparent 65%);
  animation: ll-drift2 19s ease-in-out infinite;
  pointer-events: none;
}
.contact::after {
  content: ""; position: absolute; left: -8%; bottom: -38%;
  width: 480px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(29, 44, 48, 0.35), transparent 70%);
  animation: ll-drift 23s ease-in-out infinite;
  pointer-events: none;
}
.contact-grid { position: relative; z-index: 1; }
.contact-grid {
  max-width: 1200px; margin-inline: auto;
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 52px; align-items: center;
}
.contact .h-serif { color: #fff; }
.contact .h-serif em { color: #fff; }
.contact-copy p { color: #ffd9c9; margin: 16px 0 22px; font-size: 15.5px; }
.contact-points { list-style: none; display: grid; gap: 9px; font-weight: 600; font-size: 15px; }
.contact-points li { display: flex; gap: 10px; align-items: baseline; }
.contact-points li::before { content: "✓"; color: var(--gold); }

.contact-form {
  background: var(--cream); border: 4px solid var(--ink); border-radius: 22px;
  padding: 32px; box-shadow: 10px 10px 0 var(--ink);
  display: grid; gap: 15px; color: var(--ink);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.contact-form label { display: grid; gap: 5px; font-size: 13.5px; font-weight: 600; }
.contact-form input, .contact-form select, .contact-form textarea {
  font: inherit; font-size: 15px; padding: 12px 14px;
  border: 2px solid var(--line); border-radius: 12px; background: #fff; width: 100%;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--terra);
}
.contact-form textarea { resize: vertical; }

.btn-submit {
  width: 100%; background: var(--gold); color: var(--ink);
  border: none; border-radius: 14px; padding: 16px;
  font-family: var(--font-display); font-weight: 800; font-size: 16px; cursor: pointer;
  text-transform: uppercase;
  transition: background 0.15s ease;
}
.btn-submit:hover { background: var(--gold-2); }

.hp { position: absolute; left: -9999px; height: 0; width: 0; opacity: 0; }
.form-status { font-size: 14px; font-weight: 700; min-height: 1.2em; }
.form-status.ok { color: var(--teal); }
.form-status.err { color: #8f1f1f; }
.form-privacy { font-size: 12.5px; color: var(--soft); text-align: center; }

/* ---------- footer ---------- */

.footer { background: var(--ink); color: var(--ink-on-dark); padding: 48px 48px 22px; }
.footer-grid {
  max-width: 1200px; margin-inline: auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px;
  padding-bottom: 30px; border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.logo-footer { font-family: var(--font-display); font-weight: 800; font-size: 22px; color: var(--cream); margin-bottom: 8px; }
.logo-footer span { color: var(--gold); }
.footer p { font-size: 14px; }
.footer-heading { color: var(--cream); font-weight: 700; margin-bottom: 10px; font-size: 14.5px; }
.footer ul { list-style: none; display: grid; gap: 7px; font-size: 14px; }
.footer a { color: var(--ink-on-dark); }
.footer a:hover { color: var(--cream); }
.footer-bottom { max-width: 1200px; margin: 20px auto 0; font-size: 12.5px; color: #6f8d88; }

/* ---------- "chat now" line in contact ---------- */

.chat-now {
  margin-top: 20px; font-size: 14.5px; color: #ffd9c9;
  background: rgba(29, 44, 48, 0.35); border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px; padding: 14px 16px;
}
.chat-now a { color: var(--gold); font-weight: 800; text-decoration: underline; }
.chat-now a:hover { color: var(--gold-2); }

/* ---------- Sofía hint bubble ---------- */

.fab-hint {
  position: fixed; right: 18px; bottom: 84px; z-index: 60;
  max-width: 250px;
  background: #fff; color: var(--ink);
  border: 2px solid var(--ink); border-radius: 16px 16px 4px 16px;
  padding: 12px 32px 12px 14px;
  font-size: 13.5px; line-height: 1.45;
  box-shadow: 6px 6px 0 rgba(29, 44, 48, 0.25);
  animation: hint-pop 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.fab-hint[hidden] { display: none; }
.fab-hint strong { display: block; }
.fab-hint-link {
  display: block; margin-top: 7px; width: fit-content;
  color: var(--teal); font-weight: 700; text-decoration: none;
  border-bottom: 2px solid var(--gold);
}
.fab-hint-link:hover { color: var(--terra); }
.fab-hint-close {
  position: absolute; top: 4px; right: 8px;
  background: none; border: 0; font-size: 17px; color: var(--soft); cursor: pointer;
  line-height: 1; padding: 4px;
}
@keyframes hint-pop { from { opacity: 0; transform: translateY(8px) scale(0.96); } }

/* ---------- Telegram FAB (chat with Sofía) ---------- */

.telegram-fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  display: flex; align-items: center; gap: 8px;
  background: #26a5e4; color: #fff; font-weight: 700; font-size: 15px;
  padding: 12px 19px; border-radius: 999px;
  box-shadow: 0 12px 30px rgba(16, 90, 128, 0.45);
  transition: transform 0.16s ease;
}
.telegram-fab:hover { transform: translateY(-3px) scale(1.03); color: #fff; }

/* ---------- reveal-on-scroll ---------- */

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  .btn-gold, .telegram-fab { transition: none; }
  .gbar, .mini-bars span, .reveal.in .gbar, .reveal.in .mini-bars span { animation: none; transform: none; }
  .fab-hint { animation: none; }
  .hero, .hero::before, .hero::after,
  .process::before, .process::after, .contact::before, .contact::after,
  .badge-float, .btn-plan-hot, .hero .btn-gold::before { animation: none; }
}

/* ---------- responsive ---------- */

@media (max-width: 980px) {
  .nav { padding: 14px 24px; }

  /* collapse the menu before the links get cramped */
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    background: var(--ink); border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 14px 24px 20px; gap: 6px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    z-index: 50;
  }
  .nav-links.open { display: flex; }
  .nav-links a:not(.btn-nav) { display: block; padding: 10px 4px; }
  .nav-links .btn-nav { text-align: center; margin-top: 6px; }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .hero, .section, .contact { padding-left: 24px; padding-right: 24px; }
  .section-tight { padding: 0 24px 64px; }
  .footer { padding: 40px 24px 20px; }

  .hero-grid, .contact-grid { grid-template-columns: 1fr; align-items: start; gap: 36px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .svc:nth-child(3n + 1) { border-left: 1px solid var(--line); padding-left: 26px; }
  .svc:nth-child(2n + 1) { border-left: 0; padding-left: 0; }
  .steps { grid-template-columns: 1fr 1fr; }
  .quotes { grid-template-columns: 1fr; }
  .price-table { grid-template-columns: 1fr; }
  .price-col + .price-col { border-left: 0; border-top: 2px solid var(--ink); }
  .brands-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .steps, .form-row, .services-grid, .results-grid { grid-template-columns: 1fr; }
  .svc, .svc:nth-child(3n + 1) { border-left: 0; padding-left: 0; }
  .growth-frame { height: 280px; }
  .fab-hint { max-width: 210px; bottom: 78px; }
  .telegram-fab span { display: none; }
  .telegram-fab { padding: 13px; }
}
