/*
Theme Name: House Capital
Theme URI: https://housecapital.pe
Author: House Capital
Author URI: https://housecapital.pe
Description: Plantilla WordPress profesional para plataforma de inversión inmobiliaria. Diseño dark premium con Bootstrap 5, totalmente personalizable desde el Personalizador de WordPress. Incluye secciones: Hero, Estadísticas, Proyectos, Testimonios, FAQ y más.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: house-capital
Tags: real-estate, investment, dark, one-page, full-width, custom-colors, custom-logo, customizer
*/

/* ============================================================
   HOUSE CAPITAL — Custom Theme Styles
   ============================================================ */

:root {
  --hc-dark:    #060d1a;
  --hc-dark2:   #0d1b2e;
  --hc-dark3:   #0f2236;
  --hc-green:   #22c55e;
  --hc-green2:  #16a34a;
  --hc-gold:    #f5a623;
  --hc-text:    #e2e8f0;
  --hc-muted:   #94a3b8;
  --hc-border:  rgba(255,255,255,.09);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: #fff;
  color: #1e293b;
  margin: 0;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,.navbar-brand,.stat-num,.roi-num {
  font-family: 'Sora', sans-serif;
}

/* ─── NAVBAR ─── */
.navbar-hc {
  background: var(--hc-dark);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1050;
  border-bottom: 1px solid var(--hc-border);
}

.navbar-hc .navbar-brand {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-icon {
  background: var(--hc-green);
  border-radius: 8px;
  padding: 4px 7px;
  display: inline-flex;
}

.navbar-hc .nav-link {
  color: rgba(255,255,255,.75) !important;
  font-size: .88rem;
  font-weight: 500;
  padding: 6px 14px !important;
  transition: color .2s;
}
.navbar-hc .nav-link:hover { color: #fff !important; }

.btn-login {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.3);
  color: #fff;
  font-size: .85rem;
  font-weight: 600;
  border-radius: 8px;
  padding: 7px 18px;
  transition: all .2s;
  text-decoration: none;
}
.btn-login:hover { border-color: #fff; color: #fff; }

.btn-ver-proyectos {
  background: var(--hc-green);
  color: #fff;
  font-size: .85rem;
  font-weight: 700;
  border-radius: 8px;
  padding: 8px 20px;
  border: none;
  text-decoration: none;
  transition: background .2s;
}
.btn-ver-proyectos:hover { background: var(--hc-green2); color: #fff; }

/* ─── HERO ─── */
.hero {
  background: var(--hc-dark);
  min-height: 92vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 70px 0 50px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 70% 50%, rgba(34,197,94,.12) 0%, transparent 70%),
              radial-gradient(ellipse 50% 80% at 10% 50%, rgba(6,13,26,.8) 0%, transparent 60%);
  z-index: 1;
}

.hero-bg-img {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 58%;
  object-fit: cover;
  object-position: center;
  mask-image: linear-gradient(to left, rgba(0,0,0,.9) 40%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,.9) 40%, transparent 100%);
  opacity: .55;
}

.hero .container { position: relative; z-index: 2; }

.badge-pill-hero {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(34,197,94,.15);
  border: 1px solid rgba(34,197,94,.35);
  color: var(--hc-green);
  font-size: .75rem;
  font-weight: 600;
  border-radius: 50px;
  padding: 5px 14px;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.badge-pill-hero span.dot {
  width: 7px; height: 7px;
  background: var(--hc-green);
  border-radius: 50%;
  animation: blink 1.4s ease-in-out infinite;
}

@keyframes blink {
  0%,100% { opacity: 1; }
  50%      { opacity: .3; }
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.13;
  margin-bottom: 10px;
}
.hero h1 .green { color: var(--hc-green); }

.hero .subtitle {
  color: var(--hc-text);
  font-size: 1.05rem;
  font-weight: 400;
  margin-bottom: 6px;
}
.hero .subtitle strong { color: #fff; }

.hero .desc {
  color: var(--hc-muted);
  font-size: .9rem;
  max-width: 460px;
  line-height: 1.65;
  margin-bottom: 30px;
}

.btn-cta-primary {
  background: var(--hc-green);
  color: #fff;
  font-weight: 700;
  font-size: .92rem;
  border-radius: 10px;
  padding: 13px 28px;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .2s, transform .15s;
}
.btn-cta-primary:hover { background: var(--hc-green2); color: #fff; transform: translateY(-1px); }

.btn-cta-wa {
  background: rgba(255,255,255,.08);
  color: #fff;
  font-weight: 600;
  font-size: .92rem;
  border-radius: 10px;
  padding: 13px 24px;
  border: 1.5px solid rgba(255,255,255,.2);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .2s;
}
.btn-cta-wa:hover { background: rgba(255,255,255,.14); color: #fff; }

.wa-icon { width: 20px; }

.hero-investors {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
}

.avatars { display: flex; }
.avatars img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--hc-dark);
  margin-right: -8px;
  object-fit: cover;
}

.hero-investors p {
  color: var(--hc-muted);
  font-size: .82rem;
  margin: 0;
}
.hero-investors strong { color: #fff; }

/* ─── PROJECT CARD (Hero) ─── */
.project-card-hero {
  background: rgba(13,27,46,.92);
  border: 1px solid rgba(34,197,94,.25);
  border-radius: 18px;
  padding: 22px 24px;
  backdrop-filter: blur(12px);
  max-width: 320px;
  margin-left: auto;
}

.project-card-hero .label-top {
  font-size: .7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--hc-gold);
  font-weight: 700;
  margin-bottom: 10px;
}

.project-card-hero h4 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.project-card-hero .location {
  color: var(--hc-muted);
  font-size: .8rem;
  margin-bottom: 16px;
}

.metrics-row {
  display: flex;
  gap: 24px;
  margin-bottom: 16px;
}

.metric-item .val {
  font-family: 'Sora', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--hc-green);
  line-height: 1;
}

.metric-item .lbl {
  font-size: .72rem;
  color: var(--hc-muted);
  line-height: 1.3;
  margin-top: 2px;
}

.progress-hero {
  background: rgba(255,255,255,.1);
  border-radius: 6px;
  height: 5px;
  margin-bottom: 6px;
}
.progress-hero .bar {
  background: var(--hc-green);
  height: 100%;
  border-radius: 6px;
}

.chart-area {
  background: rgba(255,255,255,.04);
  border-radius: 10px;
  padding: 12px;
  margin-top: 12px;
  position: relative;
  height: 90px;
  overflow: hidden;
}

.chart-svg { width: 100%; height: 100%; }

.chart-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(34,197,94,.2);
  border: 1px solid var(--hc-green);
  border-radius: 8px;
  padding: 3px 9px;
  font-size: .72rem;
  font-weight: 700;
  color: var(--hc-green);
}

.chart-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 4px;
}
.chart-labels span { font-size: .65rem; color: var(--hc-muted); }

/* ─── STATS BAR ─── */
.stats-bar {
  background: var(--hc-dark2);
  border-top: 1px solid var(--hc-border);
  border-bottom: 1px solid var(--hc-border);
  padding: 22px 0;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 0;
}

.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(34,197,94,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--hc-green);
  flex-shrink: 0;
}

.stat-num {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.stat-desc {
  font-size: .78rem;
  color: var(--hc-muted);
  margin: 0;
}

.stat-divider {
  width: 1px;
  background: var(--hc-border);
  align-self: stretch;
}

.partners-label {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--hc-muted);
  font-weight: 600;
  margin-bottom: 8px;
}

.partner-logos {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.partner-logo {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: .85rem;
  letter-spacing: .5px;
  color: rgba(255,255,255,.55);
  padding: 4px 0;
}

/* ─── SECTION LABEL ─── */
.section-label {
  font-size: .73rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--hc-green);
  margin-bottom: 6px;
}

/* ─── HOW IT WORKS ─── */
.section-how {
  background: #f8fafc;
  padding: 70px 0;
}

.section-how h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  color: var(--hc-dark);
  margin-bottom: 4px;
}

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hc-green);
  font-size: 1.4rem;
}

.step-card {
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 18px;
  padding: 30px 24px;
  position: relative;
  transition: box-shadow .25s, transform .25s;
  height: 100%;
}
.step-card:hover {
  box-shadow: 0 12px 40px rgba(34,197,94,.13);
  transform: translateY(-4px);
}

.step-num {
  width: 38px;
  height: 38px;
  background: var(--hc-green);
  color: #fff;
  border-radius: 50%;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.step-icon-wrap {
  width: 64px;
  height: 64px;
  background: #f0fdf4;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.step-card h5 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--hc-dark);
  margin-bottom: 8px;
}

.step-card p {
  font-size: .85rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* ─── PROJECTS ─── */
.section-projects {
  padding: 75px 0;
  background: #fff;
}

.section-projects h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--hc-dark);
  margin-bottom: 4px;
}

.link-all {
  color: var(--hc-green);
  font-weight: 600;
  font-size: .88rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.link-all:hover { color: var(--hc-green2); }

.project-card {
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 18px;
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
  height: 100%;
}
.project-card:hover {
  box-shadow: 0 14px 40px rgba(0,0,0,.1);
  transform: translateY(-4px);
}

.project-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.project-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.project-card:hover .project-img-wrap img { transform: scale(1.05); }

.project-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  border-radius: 50px;
  padding: 4px 12px;
}

.badge-financing { background: #1e293b; color: var(--hc-green); }
.badge-demand    { background: var(--hc-gold); color: #fff; }
.badge-last      { background: #ef4444; color: #fff; }

.project-save {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: #64748b;
  cursor: pointer;
  transition: color .2s;
}
.project-save:hover { color: var(--hc-green); }

.project-viewers {
  position: absolute;
  bottom: 10px;
  left: 12px;
  background: rgba(0,0,0,.6);
  border-radius: 50px;
  padding: 3px 10px;
  font-size: .7rem;
  color: #fff;
}

.project-body {
  padding: 18px 20px 22px;
}

.project-body h5 {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 3px;
  color: var(--hc-dark);
}

.project-location {
  font-size: .78rem;
  color: #64748b;
  margin-bottom: 14px;
}

.roi-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--hc-green);
}

.roi-label {
  font-size: .7rem;
  color: #64748b;
  text-align: right;
}

.project-meta {
  display: flex;
  gap: 18px;
  margin-bottom: 14px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .78rem;
  color: #475569;
}

.meta-item i { color: var(--hc-green); font-size: .85rem; }
.meta-item span.lbl { font-size: .7rem; color: #94a3b8; }

.progress-proj {
  height: 5px;
  background: #e2e8f0;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 5px;
}
.progress-proj .bar { height: 100%; background: var(--hc-green); border-radius: 4px; }

.financed-label {
  font-size: .75rem;
  color: #475569;
  margin-bottom: 16px;
}

.btn-details {
  background: #fff;
  border: 1.5px solid #cbd5e1;
  color: #475569;
  font-size: .85rem;
  font-weight: 600;
  border-radius: 10px;
  padding: 9px 0;
  width: 100%;
  transition: all .2s;
}
.btn-details:hover { border-color: var(--hc-green); color: var(--hc-green); }

.btn-invest {
  background: var(--hc-green);
  color: #fff;
  font-size: .85rem;
  font-weight: 700;
  border-radius: 10px;
  padding: 9px 0;
  width: 100%;
  border: none;
  transition: background .2s;
}
.btn-invest:hover { background: var(--hc-green2); color: #fff; }

/* ─── TESTIMONIAL ─── */
.section-testimonial {
  padding: 0 0 75px;
}

.testi-card {
  background: #1c2e1e;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  min-height: 230px;
}
.testi-photo-col { position: relative; width: 38%; flex-shrink: 0; }
.testi-photo { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.testi-income-badge {
  position: absolute;
  bottom: 14px;
  left: 10px;
  background: #fff;
  border-radius: 12px;
  padding: 9px 13px;
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
  min-width: 138px;
}
.testi-income-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2px; }
.testi-amount { font-family: 'Sora', sans-serif; font-size: 1.25rem; font-weight: 800; color: #1e293b; }
.testi-income-lbl { font-size: .7rem; color: #64748b; display: flex; align-items: center; gap: 4px; }
.testi-content-col { flex: 1; padding: 26px 22px 22px; display: flex; flex-direction: column; justify-content: center; }
.testi-quote-mark { font-family: Georgia, serif; font-size: 4.5rem; color: rgba(34,197,94,.25); line-height: .65; margin-bottom: 8px; }
.testi-quote { font-size: .92rem; color: #e2e8f0; line-height: 1.65; margin-bottom: 18px; }
.testi-quote strong { color: #fff; }
.testi-author { display: flex; flex-direction: column; gap: 3px; }
.testi-name { font-family: 'Sora', sans-serif; font-weight: 700; color: #fff; font-size: .92rem; }
.testi-since { font-size: .78rem; color: #94a3b8; display: flex; align-items: center; flex-wrap: wrap; gap: 2px; }

/* ─── OPPORTUNITY ─── */
.opp2-card {
  background: var(--hc-dark2);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  min-height: 230px;
}
.opp2-body { flex: 1; padding: 26px 22px; display: flex; flex-direction: column; justify-content: center; z-index: 1; }
.opp-label { font-size: .7rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--hc-gold); font-weight: 700; margin-bottom: 8px; }
.opp2-title { color: #fff; font-size: 1.2rem; font-weight: 800; margin-bottom: 10px; }
.opp2-roi-row { display: flex; align-items: baseline; gap: 10px; margin-bottom: 12px; }
.opp2-roi { font-family: 'Sora', sans-serif; font-size: 2.6rem; font-weight: 900; color: #fff; line-height: 1; }
.opp2-roi-lbl { font-size: .76rem; color: var(--hc-muted); line-height: 1.35; }
.opp2-bottom { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 4px; flex-wrap: wrap; }
.opp-availability { font-size: .8rem; color: var(--hc-muted); }
.opp-availability strong { color: #fff; }
.opp2-img-col { width: 40%; flex-shrink: 0; position: relative; }
.opp2-img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.opp2-img-overlay { position: absolute; inset: 0; background: linear-gradient(to right, var(--hc-dark2) 0%, transparent 50%); }

.badge-financed-high {
  background: var(--hc-gold);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  border-radius: 50px;
  padding: 4px 14px;
  display: inline-block;
  margin-bottom: 12px;
}

.btn-invest-opp {
  background: var(--hc-gold);
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  border: none;
  border-radius: 10px;
  padding: 12px 20px;
  transition: opacity .2s;
  white-space: nowrap;
}
.btn-invest-opp:hover { opacity: .88; color: #fff; }

/* ─── WHY US ─── */
.section-why {
  background: #f8fafc;
  padding: 75px 0;
}

.section-why h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--hc-dark);
  margin-bottom: 50px;
}

.why-item {
  text-align: center;
  padding: 10px 16px;
}

.why-icon {
  width: 68px;
  height: 68px;
  background: #e8f5e9;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--hc-green);
  margin-bottom: 16px;
  transition: background .2s, transform .2s;
}
.why-item:hover .why-icon {
  background: var(--hc-green);
  color: #fff;
  transform: scale(1.08);
}

.why-item h6 {
  font-weight: 700;
  font-size: .95rem;
  color: var(--hc-dark);
  margin-bottom: 6px;
}

.why-item p {
  font-size: .82rem;
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

/* ─── FAQ ─── */
.section-faq {
  background: var(--hc-dark);
  padding: 80px 0;
}
.faq-title { font-size: clamp(1.8rem,3vw,2.5rem); font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 16px; }
.faq-subtitle { color: var(--hc-muted); font-size: .9rem; line-height: 1.6; margin-bottom: 28px; }
.faq-item {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .25s, background .25s;
  margin-bottom: 12px;
}
.faq-item:has(.faq-btn:not(.collapsed)) {
  border-color: rgba(34,197,94,.4);
  background: rgba(34,197,94,.05);
}
.faq-btn {
  width: 100%;
  background: transparent;
  border: none;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  cursor: pointer;
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  transition: color .2s;
}
.faq-btn:not(.collapsed) { color: var(--hc-green); }
.faq-icon {
  width: 30px; height: 30px;
  background: rgba(34,197,94,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  color: var(--hc-green);
  flex-shrink: 0;
  transition: transform .3s, background .2s;
}
.faq-btn:not(.collapsed) .faq-icon { background: var(--hc-green); color: #fff; transform: rotate(45deg); }
.faq-body { padding: 0 22px 20px; color: var(--hc-muted); font-size: .88rem; line-height: 1.7; }
.faq-body strong { color: #fff; }

/* ─── WA BANNER ─── */
.wa-banner {
  background: var(--hc-dark);
  padding: 28px 0;
  border-top: 1px solid var(--hc-border);
}

.wa-banner h4 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.wa-banner p {
  color: var(--hc-muted);
  font-size: .82rem;
  margin: 0;
}

.wa-input-wrap {
  display: flex;
  align-items: stretch;
  gap: 0;
  max-width: 380px;
}

.flag-selector {
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.2);
  border-right: none;
  border-radius: 10px 0 0 10px;
  color: #fff;
  font-size: .85rem;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  white-space: nowrap;
}

.wa-phone-input {
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.2);
  border-left: none;
  border-right: none;
  color: #fff;
  font-size: .85rem;
  padding: 10px 14px;
  flex: 1;
  outline: none;
}
.wa-phone-input::placeholder { color: var(--hc-muted); }

.btn-wa-submit {
  background: var(--hc-gold);
  color: #fff;
  font-weight: 700;
  font-size: .85rem;
  border: none;
  border-radius: 0 10px 10px 0;
  padding: 10px 20px;
  white-space: nowrap;
  transition: opacity .2s;
  cursor: pointer;
}
.btn-wa-submit:hover { opacity: .88; color: #fff; }

.wa-disclaimer {
  font-size: .72rem;
  color: var(--hc-muted);
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ─── FOOTER ─── */
footer.hc-footer {
  background: var(--hc-dark);
  border-top: 1px solid var(--hc-border);
  padding: 20px 0;
}

footer.hc-footer p {
  font-size: .78rem;
  color: var(--hc-muted);
  margin: 0;
}

footer.hc-footer a {
  color: var(--hc-muted);
  font-size: .78rem;
  text-decoration: none;
  transition: color .2s;
}
footer.hc-footer a:hover { color: #fff; }

/* ─── FLOATING WA ─── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  text-decoration: none;
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.1); color: #fff; }

/* ─── NAVBAR TOGGLER ─── */
.navbar-toggler { border-color: rgba(255,255,255,.3); }
.navbar-toggler-icon { filter: invert(1); }

/* ─── ANIMATIONS ─── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 991px) {
  .hero { min-height: auto; padding: 60px 0 40px; }
  .hero-bg-img { width: 100%; opacity: .2; mask-image: none; -webkit-mask-image: none; }
  .project-card-hero { margin: 30px auto 0; }
  .stat-divider { display: none; }
}

@media (max-width: 767px) {
  .hero { padding: 50px 0 35px; }
  .section-faq { padding: 60px 0; }
  .wa-input-wrap { max-width: 100%; }
  .metrics-row { gap: 16px; }
  .testi-card, .opp2-card { flex-direction: column; }
  .testi-photo-col { width: 100%; height: 200px; }
  .opp2-img-col { width: 100%; height: 160px; }
  .opp2-img-overlay { background: linear-gradient(to bottom, var(--hc-dark2) 0%, transparent 40%); }
  .opp2-bottom { flex-direction: column; align-items: flex-start; }
  .steps-row { flex-direction: column !important; }
  .steps-row .step-connector { transform: rotate(90deg); }
  .steps-row .step-card { width: 100%; }
}
