/* ═══════════════════════════════════════════════
   RETIXUS — Shared Stylesheet
   Fonts: Playfair Display + Outfit (Google Fonts)
   Colors: #080808 / #C9A84C / #F8F4EE
═══════════════════════════════════════════════ */

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

:root {
  --black:   #080808;
  --black2:  #0d0d0d;
  --black3:  #111111;
  --surface: #141414;
  --footer:  #040404;
  --gold:    #C9A84C;
  --gold2:   #e0be72;
  --gold3:   #a8882e;
  --white:   #F8F4EE;
  --muted:   rgba(248,244,238,0.55);
  --border:  rgba(201,168,76,0.45);
  --topbar-h: 40px;
  --nav-h:   72px;
  --offset:  112px; /* topbar + nav */
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  padding-top: var(--offset);
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold3); border-radius: 2px; }

img, svg { display: block; }
a { color: inherit; text-decoration: none; }

/* ── Typography ─────────────────────────────── */
.playfair { font-family: 'Playfair Display', serif; }

.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 3rem;
  line-height: 1.75;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.section-tag::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.gold { color: var(--gold); }

/* ── Layout ─────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 5vw; }
section { padding: 100px 5vw; }

.page-hero {
  min-height: 46vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 80px 5vw 64px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

/* ── Page ticker ── */
.page-ticker { background: var(--black); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 0.9rem 0; }
.ticker-wrap { overflow: hidden; mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%); -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%); }
.ticker-track { display: flex; align-items: center; gap: 1.6rem; white-space: nowrap; width: max-content; animation: ticker-scroll 22s linear infinite; }
.ticker-track span { font-size: .82rem; font-weight: 600; color: var(--gold); letter-spacing: .04em; }
.ticker-track .ticker-dot { opacity: .35; font-size: 1rem !important; }
@keyframes ticker-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-33.333%); } }
.page-ticker--muted { border-top: none; }
.page-ticker--muted .ticker-track span { color: var(--muted); }
.ticker-track--rev { animation-direction: reverse; animation-duration: 28s; }

.page-hero::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.07) 0%, transparent 65%);
  pointer-events: none;
}

/* ── Buttons ─────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 13px 30px;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.22s, border-color 0.22s, box-shadow 0.22s, color 0.22s;
  border: 1px solid transparent;
}

.btn-gold { background: var(--gold); color: var(--black); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold2); border-color: var(--gold2); box-shadow: 0 0 28px rgba(201,168,76,0.28); }

.btn-ghost { background: transparent; color: var(--gold); border-color: rgba(201,168,76,0.45); }
.btn-ghost:hover { border-color: var(--gold); box-shadow: 0 0 16px rgba(201,168,76,0.1); }

.btn-full { display: block; width: 100%; text-align: center; }

.gold-divider {
  width: 120px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.2rem 0;
}

/* ── TOPBAR ──────────────────────────────────── */
#topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--topbar-h);
  background: var(--footer);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  z-index: 101;
  display: flex;
  align-items: center;
}

.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5vw;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.topbar-item:hover { color: var(--gold); }

.topbar-item svg { width: 12px; height: 12px; color: var(--gold); }

.topbar-right {
  font-size: 0.68rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4caf50;
  animation: pulse-dot 2.5s infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}

/* ── NAVIGATION ──────────────────────────────── */
#nav {
  position: fixed;
  top: var(--topbar-h);
  left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}

#nav.scrolled {
  background: rgba(8,8,8,0.94);
  border-bottom-color: var(--border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5vw;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.nav-logo img { width: 96px; height: 96px; object-fit: contain; }

.nav-logo-text { display: none; }

.nav-links { display: flex; align-items: center; gap: 2.4rem; list-style: none; }

.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  position: relative;
  padding-bottom: 3px;
  transition: color 0.2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-burger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.4rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.nav-overlay.open { opacity: 1; pointer-events: auto; }

.nav-overlay a {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-overlay a:hover { color: var(--gold); }

/* ── FOOTER ──────────────────────────────────── */
footer { background: var(--footer); border-top: 1px solid var(--gold); padding: 3rem 5vw 2rem; }

.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.footer-brand { display: flex; flex-direction: column; gap: 0.4rem; align-self: start; }

.footer-logo { display: flex; align-items: flex-start; gap: 10px; text-decoration: none; }
.footer-logo img { width: auto !important; height: 160px !important; max-width: 220px; object-fit: contain; }

.footer-logo-text { display: none; }

.footer-tagline { font-size: 0.84rem; color: var(--muted); line-height: 1.6; max-width: 240px; }

.footer-contact-item { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--muted); margin-bottom: 0.5rem; }
.footer-contact-item a { color: var(--muted); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--gold); }
.footer-contact-item svg { width: 13px; height: 13px; color: var(--gold); flex-shrink: 0; }

.footer-col-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-links-list { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links-list a { font-size: 0.82rem; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-links-list a:hover { color: var(--gold); }

.footer-bottom {
  max-width: 1100px;
  margin: 1.6rem auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy { font-size: 0.74rem; color: var(--muted); }

.footer-bottom-links { display: flex; gap: 1.4rem; }
.footer-bottom-links a { font-size: 0.74rem; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--gold); }

/* ── CTA SECTION (shared) ────────────────────── */
.cta-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 110px 5vw;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 450px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.09) 0%, transparent 65%);
  pointer-events: none;
}

.cta-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2.4rem;
  position: relative;
}

.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }
.cta-note { font-size: 0.76rem; color: var(--muted); margin-top: 1.4rem; position: relative; }

/* ── STATS BAR ───────────────────────────────── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
}

.stat-cell {
  padding: 2rem 1.8rem;
  border-right: 1px solid var(--border);
  text-align: center;
  transition: background 0.25s;
}

.stat-cell:last-child { border-right: none; }
.stat-cell:hover { background: rgba(201,168,76,0.04); }

.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label { font-size: 0.79rem; color: var(--muted); }

/* ── PROCESS STEPS ───────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  position: relative;
}

.process-step {
  padding: 2.4rem 2rem;
  border-right: 1px solid var(--border);
  transition: background 0.25s;
  position: relative;
}

.process-step:last-child { border-right: none; }
.process-step:hover { background: rgba(201,168,76,0.03); }

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.55;
  line-height: 1;
  margin-bottom: 1rem;
}

.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step-desc { font-size: 0.86rem; color: var(--muted); line-height: 1.65; }

/* ── WHY US GRID ─────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
}

.why-cell {
  padding: 2.4rem 2rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.25s;
}

.why-cell:nth-child(3n) { border-right: none; }
.why-cell:nth-child(4),
.why-cell:nth-child(5),
.why-cell:nth-child(6) { border-bottom: none; }
.why-cell:hover { background: rgba(201,168,76,0.04); }

.why-icon {
  width: 40px; height: 40px;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.why-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.why-desc { font-size: 0.86rem; color: var(--muted); line-height: 1.65; }

/* ── PORTFOLIO CARDS ─────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.portfolio-card {
  background: var(--black2);
  padding: 2.4rem 2rem;
  transition: background 0.25s;
  position: relative;
}

.portfolio-card:hover { background: #101010; }

.portfolio-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.portfolio-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.portfolio-result {
  font-size: 0.84rem;
  color: var(--muted);
  margin-bottom: 1.4rem;
  line-height: 1.6;
}

.portfolio-stat {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.portfolio-stat-label { font-size: 0.76rem; color: var(--muted); }

/* ── GUARANTEE STRIP ─────────────────────────── */
.guarantee-strip {
  border: 1px solid var(--gold);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(201,168,76,0.03);
  position: relative;
  overflow: hidden;
}

.guarantee-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 0%, rgba(201,168,76,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.guarantee-cell {
  padding: 2.4rem 2rem;
  border-right: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.guarantee-cell:last-child { border-right: none; }

.guarantee-icon {
  width: 36px; height: 36px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.guarantee-title { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 600; margin-bottom: 0.3rem; }
.guarantee-desc { font-size: 0.83rem; color: var(--muted); line-height: 1.6; }

/* ── CLIENT LOGOS ────────────────────────────── */
.clients-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border: 1px solid var(--border);
  overflow: hidden;
  flex-wrap: wrap;
}

.client-cell {
  padding: 1.4rem 2rem;
  border-right: 1px solid var(--border);
  flex: 1;
  min-width: 120px;
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(248,244,238,0.25);
  letter-spacing: 0.06em;
  transition: color 0.2s;
}

.client-cell:last-child { border-right: none; }
.client-cell:hover { color: var(--muted); }

/* ── COST EXPLANATION ────────────────────────── */
.cost-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.cost-factors {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  margin-top: 1.5rem;
}

.cost-factor {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.4rem 1.6rem;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.cost-factor:last-child { border-bottom: none; }
.cost-factor:hover { background: rgba(201,168,76,0.03); }

.cost-factor-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.6;
  flex-shrink: 0;
  line-height: 1.4;
}

.cost-factor-text strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.cost-factor-text span { font-size: 0.84rem; color: var(--muted); }

.cost-price-cards {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.cost-price-card {
  background: var(--black2);
  padding: 1.8rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: background 0.2s;
}

.cost-price-card:hover { background: #101010; }
.cost-price-card.highlight { background: rgba(201,168,76,0.06); border-left: 2px solid var(--gold); }

.cost-price-name { font-size: 0.92rem; font-weight: 500; }
.cost-price-val  { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--gold); white-space: nowrap; }

/* ── REVIEWS (shared) ────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.review-card {
  background: var(--black2);
  padding: 2.4rem 2rem;
  transition: background 0.25s;
  display: flex;
  flex-direction: column;
}
.review-card .review-author { margin-top: auto; }

.review-card:hover { background: #101010; }

.stars { display: flex; gap: 3px; margin-bottom: 1.2rem; }
.star  { color: var(--gold); font-size: 0.88rem; }

.review-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.97rem;
  line-height: 1.7;
  color: var(--white);
  padding-left: 1rem;
  border-left: 2px solid var(--gold);
  margin-bottom: 1.6rem;
}

.review-author { display: flex; align-items: center; gap: 12px; }

.avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold3), var(--gold2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--black);
  flex-shrink: 0;
}

.author-name    { font-size: 0.88rem; font-weight: 600; }
.author-company { font-size: 0.76rem; color: var(--muted); }

/* ── PRICING CARDS ───────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.pricing-card {
  background: var(--black2);
  padding: 2.4rem 2rem;
  position: relative;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}

.pricing-card:hover { background: #101010; transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }

.pricing-card.featured { background: #0c0c0a; border: 1px solid var(--gold); margin: -1px; z-index: 2; }
.pricing-card.featured:hover { box-shadow: 0 12px 40px rgba(201,168,76,0.12); }

.badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.plan-name { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.8rem; }
.plan-price { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 700; line-height: 1; margin-bottom: 0.3rem; }
.plan-price span { font-family: 'Outfit', sans-serif; font-size: 0.88rem; font-weight: 400; color: var(--muted); }
.featured .plan-price { color: var(--gold); }

.plan-divider { width: 100%; height: 1px; background: var(--border); margin: 1.4rem 0; }

.plan-features { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2rem; }
.plan-features li { font-size: 0.87rem; color: var(--muted); display: flex; align-items: flex-start; gap: 8px; }
.plan-features li::before { content: '—'; color: var(--gold); flex-shrink: 0; margin-top: 1px; }
.featured .plan-features li { color: var(--white); }

/* ── GOLD LIST ───────────────────────────────── */
.gold-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-top: 1.4rem; }
.gold-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.92rem; }
.gold-list li::before { content: '—'; color: var(--gold); flex-shrink: 0; }

/* ── METRICS GRID ────────────────────────────── */
.metrics-grid { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--border); }
.metric-cell { padding: 2rem 1.8rem; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); transition: background 0.25s; }
.metric-cell:nth-child(2n) { border-right: none; }
.metric-cell:nth-child(3),
.metric-cell:nth-child(4) { border-bottom: none; }
.metric-cell:hover { background: rgba(201,168,76,0.04); }
.metric-value { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 0.4rem; }
.metric-label { font-size: 0.82rem; color: var(--muted); }

/* ── SECTION LINK ────────────────────────────── */
.section-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: gap 0.2s;
}

.section-link:hover { gap: 14px; }
.section-link::after { content: '→'; }

/* ── SCROLL REVEAL ───────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ── MOBILE ──────────────────────────────────── */
@media (max-width: 900px) {
  :root { --topbar-h: 0px; --nav-h: 60px; --offset: 60px; }

  #topbar { display: none; }

  section { padding: 72px 5vw; }

  .nav-links, .nav-cta-wrap { display: none; }
  .nav-burger { display: flex; }

  .stats-bar { grid-template-columns: 1fr 1fr; }
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell:nth-child(1), .stat-cell:nth-child(2) { border-bottom: 1px solid var(--border); }

  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-step:nth-child(2) { border-right: none; }
  .process-step:nth-child(1), .process-step:nth-child(2) { border-bottom: 1px solid var(--border); }

  .why-grid { grid-template-columns: 1fr 1fr; }
  .why-cell:nth-child(2n) { border-right: none; }
  .why-cell:nth-child(5), .why-cell:nth-child(6) { border-bottom: none; }
  .why-cell:nth-child(3) { border-right: 1px solid var(--border); }

  .portfolio-grid { grid-template-columns: 1fr; background: none; border: none; gap: 1rem; }
  .portfolio-card { border: 1px solid var(--border); }

  .guarantee-strip { grid-template-columns: 1fr; }
  .guarantee-cell { border-right: none; border-bottom: 1px solid rgba(201,168,76,0.3); }
  .guarantee-cell:last-child { border-bottom: none; }

  .reviews-grid { grid-template-columns: 1fr; background: none; border: none; gap: 1rem; }
  .review-card { border: 1px solid var(--border); }

  .pricing-grid { grid-template-columns: 1fr; background: none; border: none; gap: 1rem; }
  .pricing-card.featured { margin: 0; }

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

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .clients-row .client-cell { min-width: 100px; }
}

@media (max-width: 600px) {
  .process-steps { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--border); }
  .process-step:last-child { border-bottom: none; }

  .why-grid { grid-template-columns: 1fr; }
  .why-cell { border-right: none; }
  .why-cell:nth-child(n) { border-bottom: 1px solid var(--border); }
  .why-cell:last-child { border-bottom: none; }

  .stats-bar { grid-template-columns: 1fr 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn { width: 100%; text-align: center; }

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

/* ── WhatsApp floating button ── */
.whatsapp-float {
  position: fixed;
  bottom: 1.6rem;
  left: 1.6rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: .7rem;
  background: #25D366;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .03em;
  text-decoration: none;
  padding: .7rem 1.1rem .7rem .9rem;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
  transition: transform .2s, box-shadow .2s;
}
.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(37,211,102,.5);
}
.whatsapp-float i { font-size: 1.3rem; flex-shrink: 0; }
