/* ── HERO ── */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 0.4fr;
  position: relative;
  overflow: hidden;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(100px, 14vh, 140px) clamp(16px, 5vw, 64px) clamp(40px, 6vh, 60px);
  max-width: 900px;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-eyebrow::before {
  content: '';
  width: 40px; height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-weight: 300;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  line-height: 1.06;
  margin-bottom: 1.5rem;
  color: var(--white);
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-desc {
  font-size: clamp(0.9rem, 1.05vw, 1rem);
  line-height: 1.75;
  color: rgba(245,242,236,0.7);
  max-width: 480px;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.hero-right {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0.85;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--black) 0%, transparent 25%),
              linear-gradient(to top, var(--black) 0%, transparent 30%);
  z-index: 1;
}
.hero-gold-line {
  position: absolute;
  left: 0; top: 50%;
  width: 3px; height: 40%;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  transform: translateY(-50%);
  z-index: 2;
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--dark-2);
  border-top: 1px solid rgba(184,151,42,0.2);
  border-bottom: 1px solid rgba(184,151,42,0.2);
  padding: 2.5rem clamp(16px, 5vw, 64px);
  display: flex;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,242,236,0.7);
  margin-top: 0.4rem;
}
.stat-divider { width: 1px; height: 50px; background: rgba(184,151,42,0.2); }

/* ── CALCULATOR ── */
.calc-section {
  padding: clamp(4rem, 8vh, 7rem) clamp(16px, 5vw, 64px);
  position: relative;
  background: var(--dark);
}
.calc-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.section-subtitle {
  font-size: 0.85rem;
  color: rgba(245,242,236,0.7);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto;
}
.calc-container {
  max-width: 960px;
  margin: 0 auto;
  background: var(--dark-2);
  border: 1px solid rgba(184,151,42,0.2);
  padding: 3rem;
  position: relative;
}
.calc-container::before {
  content: '';
  position: absolute;
  top: -1px; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.calc-steps {
  display: flex;
  gap: 0;
  margin-bottom: 3rem;
  border-bottom: 1px solid rgba(245,242,236,0.1);
}
.calc-step-tab {
  flex: 1;
  padding: 1rem;
  text-align: center;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,242,236,0.7);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.3s;
}
.calc-step-tab.active { color: var(--gold); border-bottom-color: var(--gold); }
.calc-step-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: rgba(184,151,42,0.3);
  margin-bottom: 0.3rem;
  transition: color 0.3s;
}
.calc-step-tab.active .calc-step-num { color: var(--gold); }
.step-panel { display: none; }
.step-panel.active { display: block; }
.step-intro { font-size: 0.78rem; color: rgba(245,242,236,0.7); margin-bottom: 1.5rem; line-height: 1.7; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
.form-group input, .form-group select {
  background: var(--dark-3);
  border: 1px solid rgba(245,242,236,0.12);
  color: var(--white);
  padding: 0.9rem 1rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
  -webkit-appearance: none;
}
.form-group input:focus, .form-group select:focus { border-color: var(--gold); }
.form-group select option { background: var(--dark-3); }
.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}
.calc-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}
.calc-note {
  font-size: 0.72rem;
  color: rgba(245,242,236,0.7);
  line-height: 1.6;
  padding: 1rem;
  border-left: 2px solid var(--gold);
  background: rgba(184,151,42,0.05);
  margin-bottom: 1.5rem;
}
.nav-btn-row { display: flex; gap: 1rem; margin-top: 1.5rem; }
.btn-back {
  flex: 1;
  background: transparent;
  border: 1px solid rgba(245,242,236,0.2);
  color: rgba(245,242,236,0.7);
  padding: 0.9rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-back:hover { border-color: var(--gold); color: var(--gold); }
.btn-next {
  flex: 2;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border: none;
  color: var(--black);
  padding: 0.9rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-next:hover { transform: translateY(-1px); box-shadow: 0 8px 25px rgba(184,151,42,0.25); }

/* ── RESULTS ── */
.result-header { text-align: center; margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(245,242,236,0.1); }
.result-header p { color: rgba(245,242,236,0.7); font-size: 0.8rem; }
.result-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--gold-light);
  margin-bottom: 0.3rem;
}
.result-tipo { color: var(--gold); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; }
.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}
.result-card {
  background: var(--dark-3);
  border: 1px solid rgba(184,151,42,0.15);
  padding: 1.2rem;
  position: relative;
  overflow: hidden;
}
.result-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: linear-gradient(to bottom, var(--gold), var(--gold-dark));
}
.result-card-label {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,242,236,0.7);
  margin-bottom: 0.5rem;
}
.result-card-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--white);
}
.result-card.highlight { border-color: rgba(184,151,42,0.5); background: rgba(184,151,42,0.05); }
.result-card.highlight .result-card-value { color: var(--gold); font-size: 2rem; }
.result-total {
  text-align: center;
  background: linear-gradient(135deg, rgba(184,151,42,0.1), rgba(184,151,42,0.05));
  border: 1px solid rgba(184,151,42,0.3);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.result-total-label { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.result-total-value { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 300; color: var(--gold-light); }
.result-disclaimer { font-size: 0.68rem; color: rgba(245,242,236,0.45); text-align: center; line-height: 1.7; margin-bottom: 1.5rem; }

/* ── SERVICES ── */
.services-section {
  padding: clamp(4rem, 8vh, 7rem) clamp(16px, 5vw, 64px);
  background: var(--black);
  position: relative;
}
.services-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.trab-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.trab-service-card {
  background: var(--dark-2);
  border: 1px solid rgba(184,151,42,0.12);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s;
}
.trab-service-card:hover { border-color: rgba(184,151,42,0.4); transform: translateY(-4px); }
.trab-service-icon { font-size: 2rem; display: block; margin-bottom: 1rem; }
.trab-service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--off-white);
  margin-bottom: 0.8rem;
}
.trab-service-card p { font-size: 0.8rem; line-height: 1.7; color: var(--gray); }

/* ── ABOUT ── */
.about-section {
  padding: clamp(4rem, 8vh, 7rem) clamp(16px, 5vw, 64px);
  background: var(--dark);
}
.about-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  max-width: 960px;
  margin: 0 auto;
  align-items: start;
}
.about-photo-wrap { position: relative; }
.about-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  filter: brightness(0.9);
}
.about-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 8px -8px -8px 8px;
  border: 1px solid rgba(184,151,42,0.25);
  z-index: -1;
}
.about-name {
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.about-name em { font-style: italic; color: var(--gold-light); }
.about-role {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.about-bio { font-size: 0.9rem; line-height: 1.9; color: rgba(245,242,236,0.7); margin-bottom: 2rem; }
.credentials-list { list-style: none; margin-bottom: 2rem; }
.credentials-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(245,242,236,0.06);
  font-size: 0.85rem;
  color: rgba(245,242,236,0.7);
  line-height: 1.6;
}
.credentials-list li strong { color: var(--white); }
.cred-icon { color: var(--gold); flex-shrink: 0; }
.oab-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: rgba(184,151,42,0.08);
  border: 1px solid rgba(184,151,42,0.3);
  padding: 0.8rem 1.5rem;
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}

/* ── WHY US ── */
.why-section {
  padding: clamp(4rem, 8vh, 7rem) clamp(16px, 5vw, 64px);
  background: var(--black);
  position: relative;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
.why-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--dark-2);
  border: 1px solid rgba(184,151,42,0.1);
  transition: all 0.3s;
}
.why-card:hover { border-color: rgba(184,151,42,0.4); }
.why-icon { font-size: 2rem; display: block; margin-bottom: 1rem; }
.why-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--off-white);
  margin-bottom: 0.8rem;
}
.why-desc { font-size: 0.8rem; line-height: 1.7; color: var(--gray); }

/* ── CTA FINAL ── */
.cta-final-trab {
  padding: clamp(4rem, 8vh, 7rem) clamp(16px, 5vw, 64px);
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.cta-final-trab::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .calc-grid { grid-template-columns: 1fr 1fr; }
  .trab-services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-photo-wrap { max-width: 240px; margin: 0 auto; }
  .stat-divider { display: none; }
  .stats-bar { flex-wrap: wrap; }
  .calc-container { padding: 1.5rem; }
  .calc-grid { grid-template-columns: 1fr; }
  .calc-grid-2col { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .trab-services-grid { grid-template-columns: 1fr; }
  .calc-steps { font-size: 0.55rem; }
  .calc-step-num { font-size: 1.2rem; }
  .nav-btn-row { flex-direction: column; }
  .btn-back, .btn-next { flex: unset; width: 100%; padding: 1rem; }
  .form-group input, .form-group select { padding: 1rem; font-size: 16px; }
}
