/* ---------- HERO ---------- */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  position: relative;
  overflow: hidden;
  padding: 96px 0 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 20px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  font-size: clamp(38px, 5.4vw, 64px);
  color: #fff;
  font-weight: 900;
}

.hero-copy p.lede {
  margin-top: 24px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.78);
  max-width: 480px;
}

.hero-actions {
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.hero-art {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
  min-height: 320px;
}

.hero-art img {
  width: 120%;
  max-width: 640px;
  height: auto;
  object-fit: contain;
  opacity: 0.95;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.25));
}

.tusk-divider {
  display: block;
  width: 100%;
  line-height: 0;
  position: relative;
  z-index: 2;
  margin-top: 60px;
}

.tusk-divider svg {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- PROBLEMA ---------- */
.problema {
  background: var(--paper);
}

.problema .wrap {
  max-width: 820px;
}

.problema p {
  font-size: 19px;
  color: var(--ink-soft);
  line-height: 1.75;
}

.problema strong {
  color: var(--navy);
  font-weight: 700;
}

.problema .highlight {
  color: var(--orange-strong);
  font-weight: 700;
}

.gracias {
  text-align: center;
  padding: 60px 0;
}

.gracias .eyebrow {
  justify-content: center;
}

.gracias p {
  margin-top: 18px;
}

.gracias .gracias-cta {
  margin-top: 32px;
}

.gracias-cta a {
  text-decoration: none;
}

/* ---------- SERVICIOS ---------- */
.servicios {
  background: var(--card);
}

.servicios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ---------- METODO ---------- */
.metodo {
  background: var(--navy);
  color: #fff;
}

.metodo .section-head h2 {
  color: #fff;
}

.metodo .section-head p {
  color: rgba(255, 255, 255, 0.72);
}

.metodo-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.metodo-step {
  padding: 0 28px 0 0;
  position: relative;
}

.metodo-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 26px;
  right: 0;
  width: 1px;
  height: calc(100% - 26px);
  background: rgba(255, 255, 255, 0.16);
}

.metodo-step:first-child {
  padding-left: 0;
}

.metodo-step + .metodo-step {
  padding-left: 28px;
}

.step-num {
  font-family: var(--ff-mono);
  font-weight: 600;
  font-size: 15px;
  color: var(--orange-on-dark);
  margin-bottom: 16px;
}

.metodo-step h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #fff;
}

.metodo-step .step-tag {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
  display: block;
}

.metodo-step p.desc {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
}

/* ---------- PORTFOLIO ---------- */
.portfolio {
  background: var(--paper);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ---------- PLANES ---------- */
.planes {
  background: var(--card);
}

.planes-panel {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-radius: 28px;
  padding: 64px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.planes-panel::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(234, 92, 28, 0.35) 0%, rgba(234, 92, 28, 0) 70%);
}

.planes-copy .eyebrow {
  color: var(--orange-on-dark);
}

.planes-copy h2 {
  color: #fff;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
}

.planes-copy p {
  color: rgba(255, 255, 255, 0.78);
  margin-top: 18px;
  font-size: 16.5px;
  line-height: 1.7;
}

.planes-list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}

.planes-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: #fff;
  font-size: 15.5px;
  font-weight: 500;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.planes-list li:first-child {
  border-top: none;
}

.planes-list svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  stroke: var(--orange-on-dark);
}

.planes-cta {
  margin-top: 30px;
}

/* ---------- EQUIPO ---------- */
.equipo {
  background: var(--cream);
}

.equipo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* ---------- CONTACTO ---------- */
.contacto {
  background: var(--black);
  color: #fff;
}

.contacto .section-head h2 {
  color: #fff;
}

.contacto .section-head p {
  color: rgba(255, 255, 255, 0.65);
}

.contacto-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
}

.contacto-side p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  margin-top: 16px;
}

.contacto-side .mini-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.contacto-side .mini-logo img {
  height: 30px;
  width: auto;
}

.contacto-heading {
  font-size: 32px;
}
