/* ════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
#hero {
  min-height: 96vh;
  padding: 140px 0 80px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
  width: 100%;
  max-width: 860px;
}
.hero-left {
  position: relative;
}
.hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink-mute);
  margin-bottom: 32px;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.8rem, 7.5vw, 7.2rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
  color: var(--ink);
  margin-bottom: 32px;
}
.hero-sub {
  font-size: 1.18rem;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 40px;
  letter-spacing: -0.01em;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Hero RIGHT — floating cards */
.hero-right {
  position: relative;
  height: 540px;
}
.h-card {
  position: absolute;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 12px 32px rgba(14, 13, 20, 0.08), 0 2px 8px rgba(14, 13, 20, 0.04);
  font-size: 0.84rem;
}
.h-card-1 {
  top: 20px;
  right: 0;
  width: 240px;
}
.h-card-1 .hc-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.h-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--green));
  flex-shrink: 0;
}
.h-card-1 strong {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.h-card-1 .hc-time {
  font-size: 0.7rem;
  color: var(--ink-light);
  margin-left: auto;
}
.h-card-1 p {
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--ink-soft);
}

.h-card-2 {
  top: 200px;
  left: -30px;
  width: 200px;
}
.h-card-2 .hc-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
  font-size: 0.74rem;
  color: var(--ink-mute);
}
.h-card-2 .hc-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 8px;
}
.h-card-2 .hc-bar {
  height: 4px;
  background: #f7f7f7;
  border-radius: 2px;
  overflow: hidden;
}
.h-card-2 .hc-fill {
  height: 100%;
  width: 78%;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  border-radius: 2px;
}

.h-card-3 {
  bottom: 0;
  right: 30px;
  width: 260px;
  padding: 18px;
}
.h-laptop-svg {
  width: 100%;
  height: 90px;
  background: linear-gradient(135deg, var(--ink), var(--ink2));
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
}
.h-laptop-svg::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 60%;
  background: linear-gradient(180deg, rgba(123, 63, 228, 0.15), transparent);
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.h-card-3 .hc-prod-name {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 2px;
}
.h-card-3 .hc-prod-spec {
  font-size: 0.74rem;
  color: var(--ink-mute);
  display: flex;
  align-items: center;
  gap: 6px;
}
.intel-tag {
  display: inline-block;
  background: #0071c5;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 3px;
}

.hero-strip {
  position: absolute;
  bottom: 32px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
  font-size: 0.72rem;
  color: var(--ink-mute);
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.hero-strip-line {
  width: 24px;
  height: 1px;
  background: var(--ink-light);
}

/* ════════════════════════════════════════════════════
   HOW IT WORKS — 3 pasos
═══════════════════════════════════════════════════════ */
#how {
  background: #ffffff;
  border-top: 1px solid var(--line);
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.how-step {
  padding: 48px 32px 48px 0;
  border-right: 1px solid var(--line);
}
.how-step:last-child {
  border-right: none;
}
.how-step .num {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--orange);
  margin-bottom: 32px;
}
.how-step h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 20px;
  color: var(--ink);
}
.how-step p {
  font-size: 0.96rem;
  color: var(--ink-soft);
  line-height: 1.6;
  letter-spacing: -0.005em;
  max-width: 280px;
}

/* ════════════════════════════════════════════════════
   SERVICES — alternating rows + mockups
═══════════════════════════════════════════════════════ */
#services {
  background: #ffffff;
}
.service-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
  border-top: 1px solid var(--line);
}
.service-row:last-of-type {
  border-bottom: 1px solid var(--line);
}
.service-row.flip {
  grid-template-columns: 1.2fr 1fr;
}
.service-row.flip .service-text {
  order: 2;
}
.service-row.flip .service-mockup {
  order: 1;
}
.service-text .num {
  display: block;
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--orange);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.service-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 24px;
  color: var(--ink);
}
.service-text p {
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 480px;
  letter-spacing: -0.005em;
}
.service-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.service-features li {
  font-size: 0.95rem;
  color: var(--ink-soft);
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}
.service-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 1px;
  background: var(--orange);
}
.service-mockup {
  aspect-ratio: 5 / 4;
  background: linear-gradient(135deg, #f5f5f5, #ebebeb);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-mockup svg {
  width: 100%;
  height: 100%;
}

/* ════════════════════════════════════════════════════
   WHY US — 4 promesas
═══════════════════════════════════════════════════════ */
#why {
  background: #f7f7f7;
  border-top: 1px solid var(--line);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}
.why-item {
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
}
.why-item:nth-child(odd) {
  padding-right: 48px;
  border-right: 1px solid var(--line);
}
.why-item:nth-child(even) {
  padding-left: 48px;
}
.why-item:nth-last-child(-n + 2) {
  border-bottom: none;
}
.why-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.why-item h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 14px;
  color: var(--ink);
}
.why-item p {
  font-size: 0.98rem;
  color: var(--ink-soft);
  line-height: 1.6;
  letter-spacing: -0.005em;
  max-width: 440px;
}

/* ════════════════════════════════════════════════════
   WORK — bento gallery
═══════════════════════════════════════════════════════ */
#work {
  background: #ffffff;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.work-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
  cursor: pointer;
  transition: all 0.35s var(--ease-spring);
  position: relative;
}
.work-item:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
  box-shadow: 0 16px 40px rgba(14, 13, 20, 0.1);
}
.w-large { grid-column: span 4; aspect-ratio: 16 / 10; }
.w-medium { grid-column: span 2; aspect-ratio: 1 / 1; }
.w-wide { grid-column: span 3; aspect-ratio: 5 / 3; }
.w-tall { grid-column: span 3; aspect-ratio: 4 / 3; }

.work-visual {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 24px;
}
.work-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(14, 13, 20, 0.08);
  backdrop-filter: blur(8px);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 5px 10px;
  border-radius: 6px;
}
.work-tag.dark {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}
.work-caption {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  pointer-events: none;
}
.work-caption strong {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.work-caption.dark strong {
  color: #fff;
}
.work-arr {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.work-arr.light {
  background: #ffffff;
  color: var(--ink);
}
.work-item:hover .work-arr {
  transform: translate(2px, -2px);
}

/* ════════════════════════════════════════════════════
   USE CASES — soluciones por rubro
═══════════════════════════════════════════════════════ */
#cases {
  background: #f7f7f7;
  border-top: 1px solid var(--line);
}
.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}
.case-item {
  padding: 56px 0;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  border-bottom: 1px solid var(--line);
}
.case-item:nth-child(odd) {
  padding-right: 48px;
  border-right: 1px solid var(--line);
}
.case-item:nth-child(even) {
  padding-left: 48px;
}
.case-item:nth-last-child(-n + 2) {
  border-bottom: none;
}
.case-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #ffffff;
}
.case-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--ink);
  stroke-width: 1.5;
  fill: none;
}
.case-text h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 10px;
  color: var(--ink);
}
.case-text p {
  font-size: 0.94rem;
  color: var(--ink-soft);
  line-height: 1.6;
  letter-spacing: -0.005em;
  max-width: 420px;
  margin-bottom: 14px;
}
.case-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.case-stack span {
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--ink-mute);
  background: #ffffff;
  padding: 3px 9px;
  border-radius: 5px;
  border: 1px solid var(--line);
}

/* ════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════ */
#testimonials {
  background: #ffffff;
  border-top: 1px solid var(--line);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: all 0.3s var(--ease-out);
}
.testi-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 122, 0, 0.3);
  box-shadow: 0 12px 28px rgba(14, 13, 20, 0.06);
}
.testi-card .quote {
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.55;
  letter-spacing: -0.005em;
  flex: 1;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line2);
}
.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.testi-name {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.testi-role {
  font-size: 0.78rem;
  color: var(--ink-mute);
}

/* ════════════════════════════════════════════════════
   FAQ — accordion
═══════════════════════════════════════════════════════ */
#faq {
  background: #ffffff;
  border-top: 1px solid var(--line);
}
.faq-grid {
  max-width: 780px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1.3;
  transition: color 0.25s;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary:hover {
  color: var(--orange);
}
.faq-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border: 1px solid var(--ink);
  border-radius: 50%;
  position: relative;
  transition: all 0.3s;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--ink);
  transition: all 0.3s;
}
.faq-icon::before {
  width: 11px;
  height: 1.5px;
  transform: translate(-50%, -50%);
}
.faq-icon::after {
  width: 1.5px;
  height: 11px;
  transform: translate(-50%, -50%);
}
.faq-item[open] .faq-icon {
  background: var(--orange);
  border-color: var(--orange);
}
.faq-item[open] .faq-icon::before,
.faq-item[open] .faq-icon::after {
  background: #ffffff;
}
.faq-item[open] .faq-icon::after {
  transform: translate(-50%, -50%) scaleY(0);
}
.faq-answer {
  padding: 0 0 32px;
  max-width: 640px;
}
.faq-answer p {
  font-size: 0.98rem;
  color: var(--ink-soft);
  line-height: 1.65;
  letter-spacing: -0.005em;
  margin-bottom: 12px;
}
.faq-answer p:last-child {
  margin-bottom: 0;
}
.faq-answer strong {
  color: var(--ink);
  font-weight: 600;
}

/* ════════════════════════════════════════════════════
   CTA FINAL
═══════════════════════════════════════════════════════ */
#cta {
  background: var(--ink);
  color: var(--bg);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--ink2);
}
#cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1100px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    ellipse,
    rgba(255, 122, 0, 0.15),
    transparent 70%
  );
  pointer-events: none;
}
.cta-inner {
  position: relative;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}
.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 24px;
}
.cta-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.5vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.95;
  color: var(--bg);
  margin-bottom: 32px;
}
.cta-title .em {
  color: var(--violet-light);
}
.cta-sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
  max-width: 540px;
  margin: 0 auto 40px;
  letter-spacing: -0.01em;
}
.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
