/* BROKR — Landing page styles */

/* ── Navbar ──────────────────────────────────────────────────────────────── */

.home-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3.5rem;
  height: 72px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.home-navbar.at-top {
  background: transparent;
}

.home-navbar.scrolled {
  background: var(--color-blanco);
  box-shadow: 0 1px 0 rgba(2, 11, 45, 0.08);
}

.navbar-logo img {
  height: 24px;
  display: block;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.navbar-links a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.home-navbar.at-top .navbar-links a {
  color: rgba(255, 255, 255, 0.8);
}

.home-navbar.at-top .navbar-links a:hover {
  color: var(--color-celeste);
}

.home-navbar.scrolled .navbar-links a {
  color: var(--color-azul-oscuro);
}

.home-navbar.scrolled .navbar-links a:hover {
  color: var(--color-azul);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.navbar-area {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.home-navbar.at-top .navbar-area {
  color: rgba(255, 255, 255, 0.75);
}

.home-navbar.at-top .navbar-area:hover {
  color: var(--color-celeste);
}

.home-navbar.scrolled .navbar-area {
  color: var(--color-azul-oscuro);
}

.home-navbar.scrolled .navbar-area:hover {
  color: var(--color-azul);
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  padding: 0.65rem 1.4rem;
  border-radius: 3px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn--primary {
  background: var(--color-azul);
  color: var(--color-blanco);
}

.btn--primary:hover {
  background: #1a2dc7;
  color: var(--color-blanco);
}

.btn--outline-white {
  background: transparent;
  color: var(--color-blanco);
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn--outline-white:hover {
  border-color: var(--color-blanco);
  background: rgba(255, 255, 255, 0.08);
}

.btn--celeste {
  background: var(--color-celeste);
  color: var(--color-azul-oscuro);
}

.btn--celeste:hover {
  background: #02b38a;
  color: var(--color-azul-oscuro);
}

.btn-arrow {
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.2s;
}

.btn:hover .btn-arrow {
  transform: translateX(3px);
}

/* ── Hero ────────────────────────────────────────────────────────────────── */

.hero {
  min-height: 100vh;
  background: var(--color-azul-oscuro);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  padding: 72px 2rem 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 65% 30%, rgba(33, 56, 239, 0.45) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 15% 85%, rgba(3, 204, 158, 0.18) 0%, transparent 55%);
  pointer-events: none;
}

.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.05);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-ring--1 { width: 750px; height: 750px; }
.hero-ring--2 { width: 530px; height: 530px; border-color: rgba(255,255,255,0.04); }
.hero-ring--3 { width: 320px; height: 320px; border-color: rgba(255,255,255,0.03); }

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 760px;
}

.hero-logo {
  width: 210px;
  margin-bottom: 0.25rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 4.5vw, 2.9rem);
  font-weight: 700;
  color: var(--color-blanco);
  line-height: 1.18;
  margin: 0;
}

.hero-title em {
  font-style: normal;
  color: var(--color-celeste);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  max-width: 560px;
  margin: 0;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.7rem;
  font-family: var(--font-body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 1;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
}

/* ── Intro ───────────────────────────────────────────────────────────────── */

.intro {
  padding: 6rem 3.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.intro__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--color-azul);
  line-height: 1.25;
}

.intro__body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.intro__body p {
  font-family: var(--font-body);
  font-size: 0.975rem;
  color: var(--color-azul-oscuro);
  line-height: 1.75;
}

.intro__body p strong {
  color: var(--color-azul);
}

.intro__body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 0;
}

.intro__body ul li {
  font-family: var(--font-body);
  font-size: 0.925rem;
  color: var(--color-azul-oscuro);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.6;
}

.intro__body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-celeste);
}

.intro__cta {
  margin-top: 0.75rem;
}

/* ── Section base ────────────────────────────────────────────────────────── */

.section-divider {
  text-align: center;
  padding: 1.5rem 0 0;
}

.section-divider-cta {
  display: flex;
  justify-content: center;
  padding: 3.5rem 0;
}

/* ── Feature split sections ──────────────────────────────────────────────── */

.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}

.feature-split--reverse .feature-split__visual {
  order: 2;
}

.feature-split--reverse .feature-split__content {
  order: 1;
}

.feature-split__visual {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
}

.feature-split__visual--dark {
  background: linear-gradient(135deg, var(--color-azul-oscuro) 0%, #0d1f6e 100%);
}

.feature-split__visual--blue {
  background: linear-gradient(135deg, var(--color-azul) 0%, #1228bf 100%);
}

.feature-split__visual--teal {
  background: linear-gradient(135deg, #01a67f 0%, var(--color-celeste) 100%);
}

.feature-split__visual--light {
  background: #f0f4ff;
}

.feature-split__content {
  padding: 4.5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}

.feature-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-celeste);
}

.feature-title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 700;
  color: var(--color-azul);
  line-height: 1.25;
  margin: 0;
}

.feature-body {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #3a4260;
  line-height: 1.75;
  margin: 0;
}

.feature-body strong {
  color: var(--color-azul-oscuro);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1.5rem;
}

.feature-list li {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: #3a4260;
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.55;
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-celeste);
}

.feature-list--single {
  grid-template-columns: 1fr;
}

.feature-link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-azul);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.feature-link:hover {
  color: var(--color-celeste);
}

/* ── Mockups CSS ─────────────────────────────────────────────────────────── */

/* Shared mockup frame */
.mockup {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.25rem;
  width: 80%;
  max-width: 360px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.mockup--light {
  background: var(--color-blanco);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 24px 80px rgba(33, 56, 239, 0.15);
}

.mockup-titlebar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mockup--light .mockup-titlebar {
  border-bottom-color: rgba(0, 0, 0, 0.06);
}

.mockup-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.mockup--light .mockup-dot {
  background: #dde2f0;
}

.mockup-title {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  margin-left: 0.25rem;
}

.mockup--light .mockup-title {
  color: #8a93b2;
}

/* Policy card mockup */
.mock-poliza {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mock-card {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  padding: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mock-card-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  flex-shrink: 0;
}

.mock-card-icon--blue  { background: var(--color-azul); opacity: 0.8; }
.mock-card-icon--teal  { background: var(--color-celeste); opacity: 0.8; }
.mock-card-icon--light { background: rgba(255,255,255,0.25); }

.mock-card-lines {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.mock-line {
  height: 7px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.15);
}

.mock-line--w100 { width: 100%; }
.mock-line--w70  { width: 70%; }
.mock-line--w50  { width: 50%; }
.mock-line--w40  { width: 40%; }
.mock-line--w85  { width: 85%; }
.mock-line--teal { background: rgba(3, 204, 158, 0.5); }
.mock-line--blue { background: rgba(33, 56, 239, 0.5); }

.mock-badge {
  font-size: 0.6rem;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.5rem;
  border-radius: 99px;
  flex-shrink: 0;
}

.mock-badge--green  { background: rgba(3, 204, 158, 0.25); color: #03cc9e; }
.mock-badge--yellow { background: rgba(255, 200, 50, 0.2); color: #ffc832; }
.mock-badge--blue   { background: rgba(33, 56, 239, 0.3); color: #a8b6ff; }

/* Flow/automation mockup */
.mock-flow {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.mock-flow-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mock-flow-node {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 0.55rem 0.75rem;
  flex: 1;
}

.mock-flow-node-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.mock-flow-node-dot--teal  { background: var(--color-celeste); }
.mock-flow-node-dot--blue  { background: var(--color-azul); opacity: 0.9; }
.mock-flow-node-dot--white { background: rgba(255,255,255,0.4); }

.mock-flow-arrow {
  color: rgba(255,255,255,0.25);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.mock-flow-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-celeste);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.65rem;
  color: var(--color-azul-oscuro);
  font-weight: 700;
}

/* Dashboard/BI mockup */
.mock-dashboard {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.mock-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.5rem;
}

.mock-stat {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 6px;
  padding: 0.6rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.mock-stat-value {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
}

.mock-stat-label {
  height: 5px;
  border-radius: 3px;
  background: rgba(255,255,255,0.12);
  width: 80%;
}

.mock-chart {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 0.75rem;
  display: flex;
  align-items: flex-end;
  gap: 0.35rem;
  height: 80px;
}

.mock-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  opacity: 0.85;
}

.mock-bar--blue  { background: var(--color-azul); }
.mock-bar--teal  { background: var(--color-celeste); }
.mock-bar--faded { background: rgba(255,255,255,0.15); }

/* CRM/client mockup */
.mock-client {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mock-client-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.mock-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-azul), var(--color-celeste));
  flex-shrink: 0;
}

.mock-client-info {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.mock-client-info .mock-line {
  background: rgba(0,0,0,0.1);
}

.mock-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.mock-field {
  background: #f4f6fd;
  border-radius: 5px;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.mock-field-label {
  height: 5px;
  border-radius: 3px;
  background: rgba(33, 56, 239, 0.15);
  width: 60%;
}

.mock-field-value {
  height: 7px;
  border-radius: 3px;
  background: rgba(0,0,0,0.12);
  width: 85%;
}

/* API/integration mockup */
.mock-api {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.mock-api-hub {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-azul);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 8px rgba(33, 56, 239, 0.2), 0 0 0 16px rgba(33, 56, 239, 0.08);
}

.mock-api-hub-inner {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
}

.mock-api-row {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  width: 100%;
}

.mock-api-node {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 0.5rem 0.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  align-items: center;
  flex: 1;
}

.mock-api-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-celeste);
}

.mock-api-connector {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.15);
}

/* EMO mockup */
.mock-emo {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.mock-emo-card {
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-left: 3px solid rgba(255,200,50,0.5);
}

.mock-emo-card--received {
  border-left-color: rgba(3,204,158,0.6);
}

.mock-emo-info { flex: 1; }

.mock-badge--pending {
  background: rgba(255,200,50,0.2);
  color: #ffc832;
}

.mock-emo-report {
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 0.75rem;
  border: 1px solid rgba(255,255,255,0.08);
}

.mock-emo-report-header {
  padding-bottom: 0.45rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 0.45rem;
}

.mock-emo-rows {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.mock-emo-row {
  height: 5px;
  width: 100%;
  border-radius: 3px;
  background: rgba(255,255,255,0.08);
}

/* Chat mockup */
.mock-chat {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mock-chat-name {
  text-align: center;
  font-size: 0.65rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  padding-bottom: 0.45rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 0.1rem;
}

.mock-bubble {
  display: flex;
  gap: 0.4rem;
  align-items: flex-start;
  max-width: 84%;
}

.mock-bubble--bot {
  align-self: flex-start;
}

.mock-bubble--user {
  align-self: flex-end;
  flex-direction: column;
  background: rgba(255,255,255,0.1);
  border-radius: 12px 12px 3px 12px;
  padding: 0.5rem 0.7rem;
  max-width: 78%;
}

.mock-bubble-avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.mock-bubble-text {
  background: rgba(33,56,239,0.65);
  border-radius: 12px 12px 12px 3px;
  padding: 0.55rem 0.7rem;
  flex: 1;
}

.mock-chat-input {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 0.4rem 0.6rem 0.4rem 0.75rem;
  margin-top: 0.2rem;
}

.mock-chat-send {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-celeste);
  flex-shrink: 0;
}

/* Wellness/Nutrition mockup */
.mock-wellness {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mock-imc {
  background: #eef1fb;
  border-radius: 8px;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mock-imc-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: #5a6480;
}

.mock-imc-label strong {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-azul-oscuro);
  margin: 0 0.15rem;
}

.mock-imc-status {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--color-celeste);
}

.mock-imc-bar {
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(to right, #03cc9e 0%, #ffc832 55%, #ff6b6b 100%);
  position: relative;
}

.mock-imc-dot {
  position: absolute;
  left: 18%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-azul);
  border: 2px solid white;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.mock-wellness-menu {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.mock-wellness-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #f4f7fe;
  border-radius: 6px;
  padding: 0.5rem 0.65rem;
}

.mock-wellness-icon {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  flex-shrink: 0;
}

.mock-wellness-icon--green  { background: rgba(3,204,158,0.25); }
.mock-wellness-icon--orange { background: rgba(255,140,50,0.25); }
.mock-wellness-icon--blue   { background: rgba(33,56,239,0.2); }
.mock-wellness-icon--teal   { background: rgba(3,204,158,0.18); }

/* Activity/Points mockup */
.mock-activity {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  width: 100%;
}

.mock-activity-ring {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-activity-steps {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.mock-activity-num {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
}

.mock-activity-sub {
  font-family: var(--font-body);
  font-size: 0.55rem;
  color: rgba(255,255,255,0.38);
  margin-top: 0.15rem;
}

.mock-activity-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.4rem;
  width: 100%;
}

.mock-activity-stat {
  background: rgba(255,255,255,0.07);
  border-radius: 6px;
  padding: 0.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  align-items: center;
}

.mock-activity-stat-val {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
}

.mock-activity-stat-lbl {
  height: 4px;
  width: 70%;
  border-radius: 2px;
  background: rgba(255,255,255,0.1);
}

.mock-promo-card {
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 0.6rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
}

.mock-promo-img {
  width: 32px;
  height: 32px;
  border-radius: 5px;
  background: rgba(255,200,50,0.2);
  flex-shrink: 0;
}

.mock-promo-info { flex: 1; }

.mock-pts-badge {
  font-size: 0.6rem;
  font-family: var(--font-body);
  font-weight: 700;
  background: rgba(255,200,50,0.22);
  color: #ffc832;
  padding: 0.2rem 0.45rem;
  border-radius: 99px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── Benefits grid ───────────────────────────────────────────────────────── */

.benefits {
  background: #f5f7ff;
  padding: 5.5rem 3.5rem;
}

.benefits__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.benefits__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-celeste);
  display: block;
  margin-bottom: 0.75rem;
}

.benefits__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-azul-oscuro);
  margin: 0 0 1rem;
}

.benefits__subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #5a6480;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 4rem;
  max-width: 960px;
  margin: 0 auto;
}

.benefit-card {
  background: transparent;
  border-radius: 0;
  padding: 1.75rem 0;
  display: flex;
  flex-direction: row;
  gap: 1.25rem;
  align-items: flex-start;
  border: none;
  border-bottom: 1px solid rgba(33, 56, 239, 0.08);
  transition: none;
}

.benefit-card:hover {
  box-shadow: none;
  transform: none;
}

.benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--color-blanco);
  border: 1px solid rgba(33, 56, 239, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(33, 56, 239, 0.07);
}

.benefit-icon svg {
  width: 26px;
  height: 26px;
}

.benefit-card:nth-last-child(-n+2) {
  border-bottom: none;
}

.benefit-text {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
  padding-top: 0.1rem;
}

.benefit-title {
  font-family: var(--font-heading);
  font-size: 0.975rem;
  font-weight: 700;
  color: var(--color-azul-oscuro);
  margin: 0;
}

.benefit-desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: #5a6480;
  line-height: 1.65;
  margin: 0;
}

/* ── Contact CTA ─────────────────────────────────────────────────────────── */

.contact-cta {
  padding: 5rem 3.5rem;
  display: flex;
  justify-content: center;
}

.contact-cta__box {
  background: var(--color-blanco);
  border: 1px solid rgba(33, 56, 239, 0.1);
  border-radius: 16px;
  padding: 4rem;
  max-width: 860px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  box-shadow: 0 16px 64px rgba(33, 56, 239, 0.08);
}

.contact-cta__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-celeste);
  display: block;
  margin-bottom: 0.75rem;
}

.contact-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--color-azul-oscuro);
  line-height: 1.25;
  margin: 0 0 1rem;
}

.contact-cta__right {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact-info-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--color-azul);
  margin-top: 0.1rem;
}

.contact-info-item a,
.contact-info-item span {
  font-family: var(--font-body);
  font-size: 0.925rem;
  color: var(--color-azul-oscuro);
  text-decoration: none;
  line-height: 1.5;
}

.contact-info-item a:hover {
  color: var(--color-azul);
}

/* ── Footer ──────────────────────────────────────────────────────────────── */

.home-footer {
  background: var(--color-azul-oscuro);
  padding: 4rem 3.5rem 2.5rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-top {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-logo img {
  height: 30px;
  display: block;
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.45);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.footer-social a:hover {
  border-color: var(--color-celeste);
  color: var(--color-celeste);
}

.footer-social svg {
  width: 15px;
  height: 15px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-nav-col h4 {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 1rem;
}

.footer-nav-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-nav-col ul li a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav-col ul li a:hover {
  color: var(--color-celeste);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-credit {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
}

.footer-credit a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-credit a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ── Hero: split layout overrides ───────────────────────────────────────── */

.hero {
  text-align: left;
  padding: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 4rem;
  min-height: 100vh;
}

.hero-content {
  align-items: flex-start;
  max-width: none;
  padding-bottom: 4rem;
}

.hero-actions {
  justify-content: flex-start;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(3, 204, 158, 0.3);
  border-radius: 99px;
  font-size: 0.72rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--color-celeste);
  letter-spacing: 0.04em;
  background: rgba(3, 204, 158, 0.07);
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-celeste);
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

/* ── Hero visual (dashboard mockup) ─────────────────────────────────────── */

.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0 4rem;
}

.hero-dashboard {
  width: 100%;
  max-width: 520px;
  background: rgba(10, 20, 65, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 40px 120px rgba(0, 0, 0, 0.55),
    0 0 80px rgba(33, 56, 239, 0.22);
  transform: perspective(1200px) rotateY(-6deg) rotateX(2deg);
  transition: transform 0.4s ease;
  backdrop-filter: blur(8px);
}

.hero-dashboard:hover {
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
}

.hdash-titlebar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1rem;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hdash-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}

.hdash-tab {
  font-family: var(--font-body);
  font-size: 0.63rem;
  color: rgba(255, 255, 255, 0.3);
  margin-left: 0.35rem;
  letter-spacing: 0.02em;
}

.hdash-body {
  display: flex;
  height: 340px;
}

.hdash-sidebar {
  width: 130px;
  flex-shrink: 0;
  background: rgba(0, 0, 0, 0.2);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hdash-brand {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--color-azul);
}

.hdash-nav {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.hdash-nav-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.5rem;
  border-radius: 6px;
  border: 1px solid transparent;
}

.hdash-nav-item--active {
  background: rgba(33, 56, 239, 0.22);
  border-color: rgba(33, 56, 239, 0.28);
}

.hdash-nav-icon {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.hdash-nav-item--active .hdash-nav-icon {
  background: var(--color-azul);
  opacity: 0.9;
}

.hdash-nav-label {
  height: 5px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.09);
  flex: 1;
}

.hdash-nav-item--active .hdash-nav-label {
  background: rgba(255, 255, 255, 0.3);
}

.hdash-main {
  flex: 1;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  overflow: hidden;
  min-width: 0;
}

.hdash-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hdash-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-azul), var(--color-celeste));
  flex-shrink: 0;
}

.hdash-line {
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
}
.hdash-line--title       { height: 7px; width: 110px; margin-bottom: 0.3rem; background: rgba(255,255,255,0.22); }
.hdash-line--sub         { height: 5px; width: 75px; }
.hdash-line--chart-title { height: 5px; width: 85px; background: rgba(255,255,255,0.18); }
.hdash-line--name        { height: 6px; width: 100%; background: rgba(255,255,255,0.18); margin-bottom: 0.25rem; }
.hdash-line--w80         { width: 80%; }
.hdash-line--w65         { width: 65%; }
.hdash-line--w50         { width: 50%; }
.hdash-line--w45         { width: 45%; }

.hdash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
}

.hdash-stat {
  background: rgba(255, 255, 255, 0.055);
  border-radius: 8px;
  padding: 0.55rem 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hdash-stat--accent {
  background: rgba(3, 204, 158, 0.09);
  border-color: rgba(3, 204, 158, 0.18);
}

.hdash-stat-num {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1;
  margin-bottom: 0.18rem;
}

.hdash-stat--accent .hdash-stat-num {
  color: var(--color-celeste);
}

.hdash-stat-desc {
  font-family: var(--font-body);
  font-size: 0.52rem;
  color: rgba(255, 255, 255, 0.33);
  line-height: 1.3;
  margin-bottom: 0.22rem;
}

.hdash-stat-trend {
  font-family: var(--font-body);
  font-size: 0.52rem;
  font-weight: 700;
}

.hdash-stat-trend--up   { color: var(--color-celeste); }
.hdash-stat-trend--warn { color: #ffc832; }

.hdash-chart-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-height: 0;
}

.hdash-chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hdash-chart-legend {
  display: flex;
  gap: 0.3rem;
}

.hdash-legend {
  width: 18px;
  height: 4px;
  border-radius: 2px;
  display: block;
}

.hdash-legend--blue { background: var(--color-azul); }
.hdash-legend--teal { background: var(--color-celeste); }

.hdash-chart {
  flex: 1;
  background: rgba(255, 255, 255, 0.035);
  border-radius: 6px;
  padding: 0.45rem 0.35rem 0.2rem;
  display: flex;
  align-items: flex-end;
  gap: 3px;
}

.hdash-bar {
  flex: 1;
  border-radius: 2px 2px 0 0;
  background: rgba(255, 255, 255, 0.1);
}

.hdash-bar--hi  { background: var(--color-azul); opacity: 0.85; }
.hdash-bar--cel { background: var(--color-celeste); opacity: 0.8; }

.hdash-list {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.hdash-list-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.045);
  border-radius: 6px;
  padding: 0.4rem 0.55rem;
}

.hdash-list-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  flex-shrink: 0;
}

.hdash-list-dot--blue { background: var(--color-azul); }
.hdash-list-dot--teal { background: var(--color-celeste); }

.hdash-list-lines { flex: 1; min-width: 0; }

.hdash-badge {
  font-size: 0.48rem;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.16rem 0.4rem;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
  flex-shrink: 0;
}

.hdash-badge--green  { background: rgba(3, 204, 158, 0.18);  color: #03cc9e; }
.hdash-badge--yellow { background: rgba(255, 200, 50, 0.18); color: #ffc832; }

/* ── Anti-Excel section ──────────────────────────────────────────────────── */

.antiexcel {
  background: var(--color-azul-oscuro);
  padding: 6rem 3.5rem;
  position: relative;
  overflow: hidden;
}

.antiexcel::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 80% at 5% 50%, rgba(33, 56, 239, 0.14) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 95% 50%, rgba(3, 204, 158, 0.07) 0%, transparent 55%);
  pointer-events: none;
}

.antiexcel__inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.antiexcel__tag {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-celeste);
  display: block;
  margin-bottom: 1.25rem;
}

.antiexcel__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3.2vw, 2.65rem);
  font-weight: 700;
  color: var(--color-blanco);
  line-height: 1.2;
  margin: 0 0 1.5rem;
}

.antiexcel__heading em {
  font-style: normal;
  color: var(--color-celeste);
}

.antiexcel__body {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  margin: 0;
}

.antiexcel__right {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.antiexcel__card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
}

.antiexcel__card--bad {
  border-color: rgba(255, 80, 80, 0.18);
  background: rgba(255, 50, 50, 0.04);
}

.antiexcel__card--good {
  border-color: rgba(3, 204, 158, 0.22);
  background: rgba(3, 204, 158, 0.055);
}

.antiexcel__card-head {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.antiexcel__card--bad .antiexcel__card-head  { color: rgba(255, 110, 110, 0.9); }
.antiexcel__card--good .antiexcel__card-head { color: var(--color-celeste); }

.antiexcel__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.antiexcel__list li {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  padding-left: 1.3rem;
  position: relative;
  line-height: 1.5;
}

.antiexcel__card--bad .antiexcel__list li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: rgba(255, 100, 100, 0.65);
  font-size: 0.68rem;
  top: 0.12em;
}

.antiexcel__card--good .antiexcel__list li {
  color: rgba(255, 255, 255, 0.72);
}

.antiexcel__card--good .antiexcel__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-celeste);
  font-size: 0.72rem;
  top: 0.08em;
}

/* ── Pain Points section ─────────────────────────────────────────────────── */

.pain-points {
  padding: 6rem 3.5rem;
  background: #f5f7ff;
}

.pain-points__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.pain-points__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.pain-points__tag {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-celeste);
  display: block;
  margin-bottom: 0.75rem;
}

.pain-points__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--color-azul-oscuro);
  line-height: 1.25;
  margin: 0 0 1rem;
}

.pain-points__sub {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #5a6480;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

.pain-points__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pain-card {
  background: var(--color-azul-oscuro);
  border-radius: 14px;
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pain-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(2, 11, 45, 0.25);
}

.pain-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-azul), var(--color-celeste));
}

.pain-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.pain-card__icon svg {
  width: 22px;
  height: 22px;
}

.pain-card__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-blanco);
  margin: 0 0 0.75rem;
  line-height: 1.3;
}

.pain-card__desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.65;
  margin: 0;
}

/* ── Final CTA section ───────────────────────────────────────────────────── */

.final-cta {
  background: linear-gradient(135deg, var(--color-azul) 0%, #1228bf 100%);
  padding: 6rem 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(255,255,255,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.final-cta__inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.final-cta__tag {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  display: block;
  margin-bottom: 1.25rem;
}

.final-cta__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--color-blanco);
  line-height: 1.2;
  margin: 0 0 1.25rem;
}

.final-cta__sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin: 0 0 2.5rem;
}

.final-cta__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn--outline-dark {
  background: transparent;
  color: var(--color-blanco);
  border: 2px solid rgba(255, 255, 255, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.65rem 1.4rem;
  border-radius: 3px;
  transition: border-color 0.2s, background 0.2s;
}

.btn--outline-dark:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-blanco);
}

.btn--lg {
  padding: 0.85rem 1.75rem;
  font-size: 0.85rem;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */

@media (max-width: 1200px) {
  .hero-inner {
    padding: 0 3rem;
    gap: 2rem;
  }

  .hero-dashboard {
    max-width: 420px;
  }

  .hdash-sidebar {
    width: 100px;
  }

  .antiexcel__inner {
    gap: 3.5rem;
  }
}

@media (max-width: 1024px) {
  .benefits__grid {
    gap: 0 2.5rem;
  }

  .home-navbar {
    padding: 0 2rem;
  }

  .intro {
    padding: 4rem 2rem;
    gap: 2.5rem;
  }

  .hero-inner {
    padding: 0 2.5rem;
    gap: 1.5rem;
  }

  .antiexcel {
    padding: 5rem 2.5rem;
  }

  .pain-points {
    padding: 5rem 2.5rem;
  }

  .pain-points__grid {
    gap: 1.25rem;
  }

  .final-cta {
    padding: 5rem 2.5rem;
  }
}

@media (max-width: 768px) {
  .home-navbar {
    padding: 0 1.25rem;
  }

  .navbar-links {
    display: none;
  }

  /* Hero mobile: stack layout */
  .hero {
    text-align: center;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 0 1.5rem;
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 3rem;
  }

  .hero-content {
    align-items: center;
    padding-bottom: 0;
    order: 1;
  }

  .hero-visual {
    order: 2;
    padding-top: 0;
    padding-bottom: 2rem;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-logo {
    width: 160px;
  }

  .hero-dashboard {
    max-width: 100%;
    transform: none;
  }

  .hero-dashboard:hover {
    transform: none;
  }

  .hdash-body {
    height: 260px;
  }

  .hdash-sidebar {
    width: 80px;
  }

  .hero-scroll {
    display: none;
  }

  /* Anti-Excel mobile */
  .antiexcel {
    padding: 4rem 1.5rem;
  }

  .antiexcel__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .antiexcel__heading {
    font-size: clamp(1.6rem, 6vw, 2rem);
  }

  /* Pain points mobile */
  .pain-points {
    padding: 4rem 1.5rem;
  }

  .pain-points__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* Final CTA mobile */
  .final-cta {
    padding: 4rem 1.5rem;
  }

  .final-cta__actions {
    flex-direction: column;
    align-items: center;
  }

  /* Existing responsive */
  .intro {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem;
    gap: 2rem;
  }

  .feature-split {
    grid-template-columns: 1fr;
  }

  .feature-split--reverse .feature-split__visual {
    order: 0;
  }

  .feature-split--reverse .feature-split__content {
    order: 0;
  }

  .feature-split__visual {
    min-height: 280px;
  }

  .feature-split__content {
    padding: 2.5rem 1.5rem;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .benefits {
    padding: 3.5rem 1.5rem;
  }

  .benefits__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-cta {
    padding: 3rem 1.5rem;
  }

  .contact-cta__box {
    grid-template-columns: 1fr;
    padding: 2.5rem;
    gap: 2rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-nav {
    grid-template-columns: 1fr 1fr;
  }

  .home-footer {
    padding: 3rem 1.5rem 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
