/* ===== NOBLEZA AI AGENCY — style.css ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
  --gold: #D4AF37;
  --gold-light: #F0D060;
  --cyan: #00D4FF;
  --cyan-dim: rgba(0,212,255,0.12);
  --dark: #080810;
  --dark-2: #0F0F1A;
  --dark-3: #161625;
  --dark-4: #1E1E32;
  --dark-5: #26263D;
  --text: #E8E8F5;
  --text-muted: #7878A0;
  --text-dim: #4A4A6A;
  --radius: 14px;
  --radius-sm: 8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--dark);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5 { font-family: 'Poppins', sans-serif; }
a { color: var(--gold); text-decoration: none; }
img { max-width: 100%; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--dark-5); border-radius: 3px; }

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 2.5rem;
  background: rgba(8,8,16,0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212,175,55,0.1);
}
.nav-logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 800; font-size: 1.15rem;
  color: var(--gold); letter-spacing: 0.5px;
  display: flex; align-items: center; gap: 0.4rem;
}
.nav-links { display: flex; gap: 1.75rem; list-style: none; }
.nav-links a {
  color: var(--text-muted); font-size: 0.88rem; font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--gold); color: var(--dark);
  padding: 0.5rem 1.3rem; border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.88rem;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 9rem 1.5rem 5rem;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 800px 400px at 50% 30%, rgba(212,175,55,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 400px 400px at 80% 80%, rgba(0,212,255,0.05) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(212,175,55,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 100%);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.25);
  color: var(--gold); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 0.45rem 1.1rem; border-radius: 50px;
  margin-bottom: 1.75rem;
}
#hero h1 {
  font-size: clamp(2.4rem, 6.5vw, 4.2rem);
  font-weight: 800; line-height: 1.12;
  max-width: 820px; margin-bottom: 1.35rem;
}
#hero h1 .gold { color: var(--gold); }
#hero h1 .cyan { color: var(--cyan); }
#hero p {
  font-size: clamp(1rem, 2.5vw, 1.18rem);
  color: var(--text-muted); max-width: 580px; margin-bottom: 2.5rem;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--gold); color: var(--dark);
  padding: 0.9rem 2.2rem; border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.98rem;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 0 30px rgba(212,175,55,0.2);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 4px 40px rgba(212,175,55,0.35); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: transparent; color: var(--text);
  padding: 0.9rem 2.2rem; border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.98rem;
  border: 1px solid rgba(255,255,255,0.15);
  transition: border-color 0.2s, transform 0.15s;
}
.btn-secondary:hover { border-color: rgba(212,175,55,0.4); color: var(--gold); transform: translateY(-2px); }
.hero-stats {
  display: flex; gap: 3rem; margin-top: 4rem; flex-wrap: wrap; justify-content: center;
}
.hero-stat span {
  display: block; font-family: 'Poppins', sans-serif;
  font-weight: 800; font-size: 2rem; color: var(--gold);
}
.hero-stat p { font-size: 0.82rem; color: var(--text-muted); }

/* ===== SECTION BASICS ===== */
section { padding: 5.5rem 1.5rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  text-align: center; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 0.65rem;
}
.section-title {
  text-align: center;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  font-weight: 700; margin-bottom: 0.85rem;
}
.section-sub {
  text-align: center; color: var(--text-muted);
  max-width: 560px; margin: 0 auto 3.5rem;
  font-size: 0.98rem;
}

/* ===== SERVICES ===== */
#services { background: var(--dark-2); }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--dark-3); border: 1px solid rgba(212,175,55,0.1);
  border-radius: var(--radius); padding: 2rem;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.service-card:hover { border-color: rgba(212,175,55,0.35); transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }
.service-card:hover::before { opacity: 1; }
.service-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.service-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.service-card p { color: var(--text-muted); font-size: 0.91rem; }

/* ===== WHAT YOU CAN DO ===== */
#ai-power { background: var(--dark); }
.power-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}
.power-item {
  background: var(--dark-3);
  border: 1px solid rgba(0,212,255,0.1);
  border-radius: var(--radius); padding: 1.5rem;
  display: flex; align-items: flex-start; gap: 1rem;
  transition: border-color 0.2s;
}
.power-item:hover { border-color: rgba(0,212,255,0.35); }
.power-dot {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--cyan-dim); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.power-item h4 { font-size: 0.92rem; font-weight: 700; margin-bottom: 0.25rem; }
.power-item p { font-size: 0.83rem; color: var(--text-muted); }

/* ===== PRICING ===== */
#pricing { background: var(--dark-2); }
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem; align-items: start;
}
.pricing-card {
  background: var(--dark-3); border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius); padding: 2.25rem;
  position: relative; transition: transform 0.25s, border-color 0.25s;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 50px rgba(212,175,55,0.15);
}
.featured-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--dark);
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.7rem;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 0.3rem 1rem; border-radius: 50px;
  white-space: nowrap;
}
.pricing-tier { font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.75rem; }
.pricing-card h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.25rem; }
.pricing-price {
  margin: 1.25rem 0;
  display: flex; align-items: baseline; gap: 0.3rem;
}
.price-num {
  font-family: 'Poppins', sans-serif; font-weight: 800;
  font-size: 2.6rem; color: var(--gold);
}
.price-period { color: var(--text-muted); font-size: 0.88rem; }
.pricing-desc { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
.includes-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.75rem; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.5rem; }
.pricing-features li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.88rem; }
.pricing-features li .chk { color: #4ADE80; font-size: 0.8rem; flex-shrink: 0; margin-top: 2px; }
.pricing-features li .ex { color: var(--text-dim); font-size: 0.8rem; flex-shrink: 0; margin-top: 2px; }
.pricing-features li.not { color: var(--text-dim); }
.pricing-cta {
  display: block; text-align: center; width: 100%;
  background: rgba(212,175,55,0.12); color: var(--gold);
  border: 1px solid rgba(212,175,55,0.3);
  padding: 0.85rem; border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.92rem;
  transition: background 0.2s, border-color 0.2s;
  cursor: pointer;
}
.pricing-cta:hover { background: rgba(212,175,55,0.22); border-color: var(--gold); }
.pricing-card.featured .pricing-cta {
  background: var(--gold); color: var(--dark); border-color: var(--gold);
}
.pricing-card.featured .pricing-cta:hover { background: var(--gold-light); }
.pricing-note {
  text-align: center; color: var(--text-muted); font-size: 0.82rem;
  margin-top: 2rem;
}

/* ===== HOW IT WORKS ===== */
#how { background: var(--dark); }
.steps {
  display: flex; flex-direction: column; gap: 0;
  max-width: 680px; margin: 0 auto;
}
.step {
  display: flex; align-items: flex-start; gap: 1.5rem;
  position: relative; padding-bottom: 2.5rem;
}
.step:last-child { padding-bottom: 0; }
.step-line {
  position: absolute; left: 23px; top: 48px;
  width: 2px; height: calc(100% - 48px);
  background: linear-gradient(to bottom, rgba(212,175,55,0.3), transparent);
}
.step:last-child .step-line { display: none; }
.step-num {
  flex-shrink: 0; width: 48px; height: 48px;
  background: rgba(212,175,55,0.1); border: 2px solid rgba(212,175,55,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.1rem;
  color: var(--gold); position: relative; z-index: 1;
}
.step-content { padding-top: 0.6rem; }
.step-content h3 { font-size: 1.12rem; font-weight: 700; margin-bottom: 0.35rem; }
.step-content p { color: var(--text-muted); font-size: 0.91rem; }

/* ===== WHY ===== */
#why { background: var(--dark-2); }
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.why-card {
  background: var(--dark-3); border-radius: var(--radius);
  padding: 2rem; border-left: 3px solid var(--gold);
  transition: transform 0.2s;
}
.why-card:hover { transform: translateY(-3px); }
.why-icon { font-size: 1.8rem; margin-bottom: 0.75rem; }
.why-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.35rem; }
.why-card p { color: var(--text-muted); font-size: 0.88rem; }

/* ===== EVENTS ===== */
#events { background: var(--dark); }
.events-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.event-card {
  background: var(--dark-3);
  border: 1px solid rgba(0,212,255,0.12);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}
.event-card:hover { border-color: rgba(0,212,255,0.4); transform: translateY(-4px); }
.event-banner {
  background: linear-gradient(135deg, var(--dark-4), var(--dark-5));
  padding: 2rem; display: flex; align-items: center; justify-content: center;
  font-size: 3rem; min-height: 120px;
  border-bottom: 1px solid rgba(0,212,255,0.1);
}
.event-body { padding: 1.5rem; }
.event-tag {
  display: inline-block; background: var(--cyan-dim); color: var(--cyan);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 0.25rem 0.75rem; border-radius: 50px; margin-bottom: 0.75rem;
}
.event-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; }
.event-card p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1rem; }
.event-meta { font-size: 0.8rem; color: var(--text-dim); display: flex; align-items: center; gap: 0.4rem; }
.event-cta {
  display: inline-block; margin-top: 1rem;
  background: var(--cyan-dim); color: var(--cyan);
  border: 1px solid rgba(0,212,255,0.25);
  padding: 0.5rem 1.1rem; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.83rem;
  transition: background 0.2s;
}
.event-cta:hover { background: rgba(0,212,255,0.2); }

/* ===== INTAKE FORM ===== */
#intake { background: var(--dark-2); }
.intake-wrap {
  max-width: 720px; margin: 0 auto;
  background: var(--dark-3);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: 18px; padding: 3rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.25rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group:last-child { margin-bottom: 0; }
label {
  display: block; font-size: 0.82rem; font-weight: 600;
  margin-bottom: 0.4rem; color: var(--text-muted); letter-spacing: 0.3px;
}
input, select, textarea {
  width: 100%; background: var(--dark-4);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: var(--radius-sm); padding: 0.8rem 1rem;
  color: var(--text); font-family: 'Inter', sans-serif; font-size: 0.93rem;
  transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.08);
}
select option { background: var(--dark-4); }
textarea { resize: vertical; min-height: 110px; }
.checkbox-group { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 0.25rem; }
.checkbox-item { display: flex; align-items: center; gap: 0.6rem; }
.checkbox-item input[type="checkbox"] {
  width: 16px; height: 16px; accent-color: var(--gold);
  cursor: pointer; flex-shrink: 0;
}
.checkbox-item label { font-size: 0.88rem; color: var(--text); margin: 0; font-weight: 400; cursor: pointer; }
.btn-submit {
  width: 100%; background: var(--gold); color: var(--dark);
  border: none; padding: 1.05rem;
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1rem;
  cursor: pointer; transition: background 0.2s, transform 0.15s;
  margin-top: 1rem;
}
.btn-submit:hover { background: var(--gold-light); transform: translateY(-1px); }
.form-note { text-align: center; color: var(--text-muted); font-size: 0.8rem; margin-top: 0.85rem; }
.thank-you { display: none; text-align: center; padding: 2.5rem 1rem; }
.thank-you .ty-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.thank-you h3 { color: var(--gold); font-size: 1.6rem; margin-bottom: 0.5rem; }
.thank-you p { color: var(--text-muted); max-width: 420px; margin: 0 auto; }

/* ===== WHATSAPP AGENT SPOTLIGHT ===== */
#whatsapp-agent { padding: 5.5rem 1.5rem; }
.wa-spotlight {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center;
}
.wa-left { display: flex; flex-direction: column; gap: 1.75rem; }
.wa-feature { display: flex; gap: 1.1rem; align-items: flex-start; }
.wa-icon {
  font-size: 1.5rem; flex-shrink: 0;
  width: 50px; height: 50px;
  background: linear-gradient(135deg, rgba(0,212,255,0.1), rgba(212,175,55,0.1));
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.wa-feature h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.3rem; }
.wa-feature p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }
.wa-feature em { color: var(--cyan); font-style: normal; font-weight: 500; }

/* Phone mockup */
.wa-right { display: flex; justify-content: center; }
.wa-phone {
  width: 100%; max-width: 340px;
  background: #0d1117;
  border-radius: 24px;
  border: 1px solid rgba(0,212,255,0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
  overflow: hidden;
  font-size: 0.85rem;
}
.wa-phone-header {
  background: #1a2332;
  padding: 1rem 1.25rem;
  display: flex; align-items: center; gap: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.wa-avatar {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--cyan));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.wa-contact { font-weight: 700; font-size: 0.92rem; }
.wa-status { font-size: 0.73rem; color: #4CAF50; }
.wa-chat {
  padding: 1rem;
  display: flex; flex-direction: column; gap: 0.6rem;
  background: #0a1628;
  min-height: 300px;
}
.wa-msg {
  max-width: 82%; padding: 0.6rem 0.85rem;
  border-radius: 12px; font-size: 0.8rem; line-height: 1.5;
}
.wa-msg.received {
  background: #1e2d3d; color: var(--text);
  border-bottom-left-radius: 3px; align-self: flex-start;
}
.wa-msg.sent {
  background: linear-gradient(135deg, #1a4a2e, #1e5c38);
  color: #e8f5e9; border-bottom-right-radius: 3px;
  align-self: flex-end;
}
.wa-msg strong { color: var(--gold); }
.wa-input-bar {
  background: #1a2332; padding: 0.85rem 1.25rem;
  color: var(--text-dim); font-size: 0.82rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}

@media (max-width: 900px) {
  .wa-spotlight { grid-template-columns: 1fr; }
  .wa-right { margin-top: 1rem; }
}

/* ===== PITCH BOX ===== */
.pitch-box {
  max-width: 780px; margin: 0 auto; text-align: center;
  background: linear-gradient(135deg, var(--dark-3), var(--dark-4));
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 20px; padding: 3rem 2.5rem;
  position: relative;
}
.pitch-quote {
  font-size: 6rem; line-height: 1; color: var(--gold);
  opacity: 0.2; font-family: Georgia, serif;
  position: absolute; top: 0.5rem; left: 1.5rem;
}
.pitch-text {
  font-family: 'Poppins', sans-serif; font-weight: 700;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  line-height: 1.4; margin-bottom: 1rem; position: relative;
}
.pitch-sub { color: var(--text-muted); margin-bottom: 2rem; font-size: 1rem; }

/* ===== ROI ===== */
#roi { background: var(--dark-2); }
.roi-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2.5rem; align-items: start;
}
.roi-pitch { display: flex; flex-direction: column; gap: 1.5rem; }
.roi-pitch-item { display: flex; gap: 1rem; align-items: flex-start; }
.roi-pitch-icon {
  font-size: 1.6rem; flex-shrink: 0;
  width: 48px; height: 48px;
  background: rgba(212,175,55,0.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.roi-pitch-item h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.3rem; }
.roi-pitch-item p { font-size: 0.85rem; color: var(--text-muted); }
.roi-pitch-item strong { color: var(--gold); }

.roi-calc {
  background: var(--dark-3); border: 1px solid rgba(212,175,55,0.15);
  border-radius: var(--radius); padding: 2rem;
  position: sticky; top: 90px;
}
.roi-calc h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.25rem; }
.roi-calc-sub { font-size: 0.83rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.roi-input { margin-bottom: 1.25rem; }
.roi-input label { display: block; font-size: 0.83rem; font-weight: 600; color: var(--text-muted); margin-bottom: 0.4rem; }
.roi-input label span { color: var(--gold); font-weight: 700; }
.roi-input input[type=range] {
  width: 100%; accent-color: var(--gold);
  height: 4px; background: var(--dark-5);
  border: none; border-radius: 2px; padding: 0;
  cursor: pointer;
}
.roi-results { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.07); }
.roi-result-item { display: flex; justify-content: space-between; align-items: center; font-size: 0.88rem; }
.roi-result-item.total { padding-top: 0.75rem; border-top: 1px solid rgba(212,175,55,0.2); }
.roi-result-item.total .roi-result-label { font-weight: 700; font-size: 0.95rem; }
.roi-result-item.total .roi-result-val { font-size: 1.4rem; font-weight: 800; color: var(--gold); }
.roi-result-label { color: var(--text-muted); }
.roi-result-val { font-weight: 700; font-size: 0.95rem; }
.roi-result-val.gold { color: var(--gold); }

@media (max-width: 900px) {
  .roi-wrap { grid-template-columns: 1fr; }
  .roi-calc { position: static; }
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark-2);
  border-top: 1px solid rgba(212,175,55,0.08);
  padding: 3rem 1.5rem 2rem;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 2rem;
  justify-content: space-between; align-items: flex-start;
  margin-bottom: 2.5rem;
}
.footer-brand .nav-logo { font-size: 1.2rem; }
.footer-brand p { color: var(--text-muted); font-size: 0.85rem; max-width: 260px; margin-top: 0.6rem; }
.footer-links h4 { font-size: 0.8rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.85rem; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links li a { color: var(--text-muted); font-size: 0.87rem; transition: color 0.2s; }
.footer-links li a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.5rem;
  padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.8rem; color: var(--text-dim);
}
.footer-bottom span { color: var(--gold); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  nav { padding: 0.9rem 1.25rem; }
  section { padding: 4rem 1.25rem; }
  .form-row { grid-template-columns: 1fr; }
  .intake-wrap { padding: 2rem 1.25rem; }
  .hero-stats { gap: 2rem; }
  .footer-inner { flex-direction: column; }
}
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: center; }
}
