:root {
  --blue-950: #031633;
  --blue-900: #06234f;
  --blue-800: #0b3472;
  --blue-700: #114a9f;
  --red: #d71920;
  --red-dark: #a91018;
  --green: #25d366;
  --white: #ffffff;
  --soft: #f4f7fb;
  --text: #10213f;
  --muted: #6d7890;
  --shadow: 0 24px 60px rgba(3, 22, 51, 0.18);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--soft);
  color: var(--text);
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(3, 22, 51, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.header-content {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}

.brand-logo {
  height: 58px;
  width: auto;
  display: block;
  object-fit: contain;
}

.brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 900;
  font-size: 20px;
  background:
    radial-gradient(circle at center, var(--red) 0 34%, transparent 35%),
    conic-gradient(from 10deg, var(--blue-800), var(--blue-950), var(--blue-800));
  border: 3px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08);
}

.brand-title,
.brand-subtitle {
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1;
}

.brand-title {
  font-size: 24px;
}

.brand-subtitle {
  font-size: 18px;
}

.brand-caption {
  font-size: 9px;
  text-transform: uppercase;
  opacity: 0.78;
  margin-top: 4px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--white);
  font-size: 14px;
}

.main-nav a {
  opacity: 0.88;
  padding: 10px 0;
  position: relative;
}

.main-nav a.active::after,
.main-nav a:hover::after {
  content: "";
  width: 100%;
  height: 3px;
  background: var(--red);
  border-radius: 20px;
  position: absolute;
  left: 0;
  bottom: 0;
}

.whatsapp-pill {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 13px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.06);
}

.whatsapp-pill::before {
  content: "●";
  color: var(--green);
  margin-right: 8px;
}

/* HERO */
.hero {
  min-height: 560px;
  padding: 80px 0 160px;
  background:
    radial-gradient(circle at 90% 10%, rgba(45, 127, 255, 0.6), transparent 34%),
    radial-gradient(circle at 8% 15%, rgba(215, 25, 32, 0.16), transparent 24%),
    linear-gradient(135deg, var(--blue-950), var(--blue-900) 48%, var(--blue-800));
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  width: 520px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  position: absolute;
  right: -120px;
  top: 110px;
  transform: rotate(-35deg);
  filter: blur(1px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 70px;
}

.section-pill {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  margin-bottom: 24px;
}

.section-pill span {
  width: 10px;
  height: 10px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(215, 25, 32, 0.9);
}

.hero-copy h1 {
  max-width: 650px;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -2px;
  margin-bottom: 22px;
}

.hero-copy p {
  max-width: 570px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 900;
}

.btn-primary {
  background: linear-gradient(180deg, #44e46f, #18a944);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(37, 211, 102, 0.35);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.38);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

/* PRICE CARD */
.price-card {
  position: relative;
  padding: 38px;
  min-height: 260px;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(7, 39, 89, 0.96), rgba(3, 22, 51, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.price-card::after {
  content: "CE";
  position: absolute;
  right: 30px;
  bottom: 18px;
  font-size: 120px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.035);
}

.recommended {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.price-card h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.price-card > p {
  color: rgba(255, 255, 255, 0.78);
}

.price-card strong {
  display: block;
  font-size: 58px;
  line-height: 1;
  margin: 8px 0 18px;
}

.price-card strong span {
  font-size: 22px;
  font-weight: 600;
}

.price-line {
  height: 1px;
  width: 100%;
  background: rgba(255, 255, 255, 0.22);
  margin-bottom: 18px;
}

.price-description {
  max-width: 360px;
  font-size: 15px;
}

.price-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  padding: 13px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red), #ff2f3d);
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(215, 25, 32, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.price-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.price-card-link-icon {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.price-card-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(215, 25, 32, 0.36);
}

/* PLAN SECTION */
.plan-section {
  margin-top: -98px;
  position: relative;
  z-index: 5;
}

.tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(920px, 90%);
  margin: 0 auto;
}

.tab {
  border: none;
  background: #eef2f8;
  color: var(--blue-950);
  padding: 22px;
  font-size: 18px;
  font-weight: 900;
  border-radius: 28px 28px 0 0;
  cursor: pointer;
}

.tab.active {
  background: var(--white);
  color: var(--red);
}

.plan-panel {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 34px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1.25fr 1fr 0.55fr;
  gap: 34px;
  align-items: center;
}

.plan-intro {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  align-items: center;
  background: linear-gradient(135deg, #f2f6ff, #ffffff);
  padding: 24px;
  border-radius: var(--radius-lg);
}

.large-mark {
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.plan-intro span,
.plan-cta span {
  color: var(--red);
  text-transform: uppercase;
  font-weight: 900;
  font-size: 13px;
}

.plan-intro h2 {
  font-size: 22px;
  margin: 8px 0 14px;
}

.plan-intro p {
  color: var(--muted);
  line-height: 1.45;
}

.plan-benefits {
  list-style: none;
  display: grid;
  gap: 16px;
}

.plan-benefits li {
  padding-bottom: 14px;
  border-bottom: 1px solid #e4eaf3;
  color: var(--text);
  font-weight: 700;
}

.plan-benefits li::before {
  content: "✓";
  color: var(--blue-700);
  font-weight: 900;
  margin-right: 10px;
}

.plan-benefits strong {
  color: var(--red);
}

.plan-cta {
  border-left: 1px solid #e4eaf3;
  padding-left: 28px;
}

.plan-cta p {
  margin: 10px 0 4px;
  color: var(--muted);
}

.plan-cta strong {
  display: block;
  font-size: 42px;
  color: var(--blue-950);
  margin-bottom: 20px;
}

.plan-cta small {
  font-size: 16px;
}

.plan-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
  border-radius: 999px;
  padding: 15px 22px;
  box-shadow: 0 16px 28px rgba(215, 25, 32, 0.22);
}

/* COUNTERS */
.counter-strip {
  padding: 34px 0 60px;
}

.counters {
  background: linear-gradient(135deg, var(--blue-950), var(--blue-800));
  border-radius: var(--radius-lg);
  color: var(--white);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.counters div {
  padding: 28px 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.counters div:last-child {
  border-right: none;
}

.counters strong {
  display: block;
  font-size: 34px;
  line-height: 1;
}

.counters strong::before {
  content: "+";
}

.counters span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .hero-grid,
  .plan-panel {
    grid-template-columns: 1fr;
  }

  .plan-cta {
    border-left: none;
    padding-left: 0;
  }

  .counters {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .header-content {
    flex-wrap: wrap;
    padding: 14px 0;
  }

  .whatsapp-pill {
    width: 100%;
    text-align: center;
  }

  .hero {
    padding-top: 50px;
  }

  .tabs {
    grid-template-columns: 1fr;
  }

  .tab {
    border-radius: 18px;
    margin-bottom: 8px;
  }

  .plan-intro {
    grid-template-columns: 1fr;
  }

  .counters {
    grid-template-columns: 1fr;
  }
}

.plan-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* WHY SECTION */
.why-section {
  padding: 40px 0 80px;
  background: var(--soft);
}

.why-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 38px;
  align-items: start;
}

.section-heading {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: 0 18px 44px rgba(3, 22, 51, 0.08);
}

.section-heading span {
  display: block;
  width: 52px;
  height: 4px;
  background: var(--red);
  border-radius: 999px;
  margin-bottom: 18px;
}

.section-heading h2 {
  font-size: 32px;
  line-height: 1.1;
  color: var(--blue-950);
  margin-bottom: 16px;
}

.section-heading p {
  color: var(--muted);
  line-height: 1.55;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: 0 18px 44px rgba(3, 22, 51, 0.08);
  border: 1px solid rgba(6, 35, 79, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(3, 22, 51, 0.14);
}

.why-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--blue-800), var(--blue-950));
  color: var(--white);
  font-size: 24px;
  margin-bottom: 18px;
  box-shadow: 0 14px 28px rgba(17, 74, 159, 0.22);
}

.why-card h3 {
  color: var(--blue-950);
  font-size: 19px;
  margin-bottom: 10px;
}

.why-card p {
  color: var(--muted);
  line-height: 1.5;
  font-size: 15px;
}

/* PLATFORM SECTION */
.platform-section {
  padding: 20px 0 90px;
  background: var(--soft);
}

.platform-card {
  min-height: 360px;
  border-radius: var(--radius-xl);
  padding: 46px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  align-items: center;
  background:
    radial-gradient(circle at 88% 18%, rgba(45, 127, 255, 0.45), transparent 30%),
    linear-gradient(135deg, var(--blue-950), var(--blue-800));
  color: var(--white);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.platform-card::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  right: -120px;
  top: -120px;
  background: rgba(255, 255, 255, 0.04);
}

.platform-badge {
  display: inline-flex;
  width: fit-content;
  background: var(--red);
  color: var(--white);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.platform-copy h2 {
  max-width: 520px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
  letter-spacing: -1.5px;
  margin-bottom: 18px;
}

.platform-copy p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.5;
}

.platform-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.platform-points span {
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 800;
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.platform-preview {
  position: relative;
  min-height: 280px;
}

.mock-window {
  width: 100%;
  height: 260px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.mock-top {
  height: 38px;
  background: #eef3fa;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
}

.mock-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c8d2e1;
}

.mock-top span:first-child {
  background: var(--red);
}

.mock-content {
  height: calc(100% - 38px);
  display: grid;
  grid-template-columns: 90px 1fr;
}

.mock-sidebar {
  background: #061f48;
}

.mock-main {
  padding: 22px;
}

.mock-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.mock-kpis div {
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #eaf0fa, #ffffff);
  border: 1px solid #dce5f1;
}

.mock-chart {
  height: 84px;
  border-radius: 16px;
  margin-top: 18px;
  background:
    linear-gradient(180deg, rgba(17, 74, 159, 0.12), transparent),
    repeating-linear-gradient(
      90deg,
      #e1e8f2 0 1px,
      transparent 1px 36px
    );
  border: 1px solid #dce5f1;
}

.mock-lines {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.mock-lines span {
  height: 10px;
  border-radius: 999px;
  background: #dce5f1;
}

.mock-lines span:nth-child(2) {
  width: 76%;
}

.mock-lines span:nth-child(3) {
  width: 58%;
}

.mock-phone {
  width: 118px;
  height: 206px;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff, #eaf0fa);
  position: absolute;
  right: 22px;
  bottom: -16px;
  z-index: 3;
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.24);
  border: 6px solid #10213f;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--blue-950);
}

.mock-phone span {
  width: 38px;
  height: 5px;
  border-radius: 999px;
  background: #10213f;
  position: absolute;
  top: 10px;
}

.mock-phone strong {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--red);
  font-size: 22px;
}

.mock-phone small {
  font-size: 11px;
  font-weight: 800;
  color: var(--muted);
  margin-top: -30px;
}

@media (max-width: 980px) {
  .platform-card {
    grid-template-columns: 1fr;
  }
}

/* SECTORS SECTION */
.sectors-section {
  padding: 20px 0 90px;
  background: var(--soft);
}

.sectors-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.sectors-heading span {
  display: inline-flex;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
}

.sectors-heading h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
  color: var(--blue-950);
  letter-spacing: -1.2px;
  margin-bottom: 16px;
}

.sectors-heading p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

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

.sector-card {
  min-height: 190px;
  border-radius: var(--radius-lg);
  padding: 26px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(3, 22, 51, 0.08);
  border: 1px solid rgba(6, 35, 79, 0.06);
  position: relative;
  overflow: hidden;
}

.sector-card::before {
  content: "";
  width: 64px;
  height: 4px;
  border-radius: 999px;
  background: var(--red);
  position: absolute;
  top: 0;
  left: 26px;
}

.sector-card strong {
  display: block;
  color: var(--blue-950);
  font-size: 22px;
  margin-bottom: 12px;
}

.sector-card p {
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 980px) {
  .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .sectors-grid {
    grid-template-columns: 1fr;
  }
}

/* PLATFORM VISUAL FIX */
.platform-visual {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.platform-browser {
  width: 88%;
  max-width: 560px;
  height: 245px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.26);
  overflow: hidden;
  position: relative;
}

.browser-topbar {
  height: 34px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  background: #eef3fa;
}

.browser-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c8d2e1;
}

.browser-topbar span:first-child {
  background: var(--red);
}

.browser-toolbar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 22px 28px 14px;
}

.toolbar-pill {
  height: 36px;
  border-radius: 14px;
  background: #f4f7fb;
  border: 1px solid #dce5f1;
}

.browser-table {
  margin: 0 28px;
  height: 92px;
  border-radius: 16px;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0 52px,
      rgba(17, 74, 159, 0.08) 52px 53px
    ),
    linear-gradient(180deg, #edf3fb, #ffffff);
  border: 1px solid #dce5f1;
  overflow: hidden;
}

.table-row {
  height: 11.5px;
  border-bottom: 1px solid rgba(16, 33, 63, 0.06);
}

.browser-footer-lines {
  display: grid;
  gap: 8px;
  padding: 16px 28px;
}

.browser-footer-lines span {
  height: 10px;
  border-radius: 999px;
  background: #dce5f1;
}

.browser-footer-lines span:last-child {
  width: 70%;
}

.platform-phone {
  width: 120px;
  height: 210px;
  border-radius: 30px;
  background: #ffffff;
  border: 6px solid #10213f;
  position: absolute;
  right: 16px;
  bottom: 4px;
  z-index: 4;
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.phone-notch {
  width: 36px;
  height: 5px;
  border-radius: 999px;
  background: #10213f;
  margin: 10px auto 0;
}

.phone-screen {
  height: calc(100% - 15px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px;
  text-align: center;
}

.phone-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  display: block;
}

.phone-screen strong {
  font-size: 12px;
  color: var(--blue-950);
}

.phone-screen small {
  font-size: 10px;
  color: var(--muted);
}

/* PLATFORM VISUAL IMPROVEMENT */
.platform-card {
  padding: 38px 42px;
  gap: 34px;
}

.platform-visual {
  min-height: 250px;
}

.platform-browser {
  width: 94%;
  max-width: 600px;
  height: 255px;
  background: linear-gradient(180deg, #ffffff, #edf3fb);
}

.browser-toolbar {
  padding: 18px 24px 12px;
}

.toolbar-pill {
  height: 34px;
  background: linear-gradient(135deg, #ffffff, #dfe8f5);
  border: 1px solid #cbd7e8;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.browser-table {
  margin: 0 24px;
  height: 105px;
  background:
    linear-gradient(90deg, rgba(17, 74, 159, 0.12) 0 22%, transparent 22% 100%),
    repeating-linear-gradient(
      0deg,
      rgba(16, 33, 63, 0.08) 0 1px,
      transparent 1px 22px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(16, 33, 63, 0.07) 0 1px,
      transparent 1px 64px
    ),
    linear-gradient(180deg, #f5f8fc, #ffffff);
  border: 1px solid #cbd7e8;
}

.table-row {
  height: 21px;
  border-bottom: 1px solid rgba(16, 33, 63, 0.08);
}

.browser-footer-lines {
  padding: 14px 24px;
}

.browser-footer-lines span {
  height: 11px;
  background: linear-gradient(90deg, #cbd7e8, #e8eef7);
}

.browser-footer-lines span:first-child {
  width: 86%;
}

.browser-footer-lines span:last-child {
  width: 62%;
}

.platform-phone {
  right: -4px;
  bottom: -2px;
}

.phone-logo {
  width: 48px;
  height: 48px;
}

.phone-screen strong {
  font-size: 13px;
  line-height: 1.05;
}

.phone-screen small {
  font-size: 11px;
  line-height: 1.05;
}

/* OFFERS SECTION */
.offers-section {
  padding: 20px 0 100px;
  background:
    radial-gradient(circle at 12% 18%, rgba(215, 25, 32, 0.06), transparent 28%),
    var(--soft);
}

.offers-heading {
  max-width: 850px;
  margin-bottom: 36px;
}

.offers-heading span {
  display: inline-flex;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
}

.offers-heading h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
  color: var(--blue-950);
  letter-spacing: -1.2px;
  margin-bottom: 16px;
}

.offers-heading p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.offers-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.offer-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 18px 44px rgba(3, 22, 51, 0.08);
  border: 1px solid rgba(6, 35, 79, 0.06);
  display: flex;
  flex-direction: column;
  min-height: 430px;
  position: relative;
  overflow: hidden;
}

.offer-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  width: 62px;
  height: 4px;
  background: var(--red);
  border-radius: 999px;
}

.featured-offer {
  background:
    radial-gradient(circle at 85% 12%, rgba(45, 127, 255, 0.3), transparent 28%),
    linear-gradient(135deg, var(--blue-950), var(--blue-800));
  color: var(--white);
  border: none;
}

.featured-offer::before {
  background: var(--green);
}

.offer-label {
  width: fit-content;
  background: var(--red);
  color: var(--white);
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.offer-card h3 {
  font-size: 25px;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--blue-950);
}

.featured-offer h3 {
  color: var(--white);
}

.offer-card p {
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 18px;
}

.featured-offer p {
  color: rgba(255, 255, 255, 0.78);
}

.offer-price {
  font-size: 15px;
  margin-bottom: 18px;
}

.offer-price strong {
  font-size: 38px;
  color: var(--white);
}

.offer-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 4px 0 28px;
}

.offer-card li {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.35;
  font-size: 14px;
}

.featured-offer li {
  color: rgba(255, 255, 255, 0.86);
}

.offer-card li::before {
  content: "✓";
  color: var(--red);
  font-weight: 900;
  margin-right: 8px;
}

.featured-offer li::before {
  color: var(--green);
}

.offer-card a {
  margin-top: auto;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  border-radius: 999px;
  background: var(--blue-950);
  color: var(--white);
  font-weight: 900;
  padding: 0 18px;
}

.featured-offer a {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.25);
}

@media (max-width: 1100px) {
  .offers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .offers-grid {
    grid-template-columns: 1fr;
  }
}

/* CONTACT SECTION */
.contact-section {
  padding: 20px 0 100px;
  background: var(--soft);
}

.contact-card {
  border-radius: var(--radius-xl);
  padding: 46px;
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 40px;
  align-items: center;
  background:
    radial-gradient(circle at 10% 15%, rgba(37, 211, 102, 0.16), transparent 28%),
    linear-gradient(135deg, var(--blue-950), var(--blue-800));
  color: var(--white);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.contact-card::after {
  content: "CE";
  position: absolute;
  right: 32px;
  bottom: -18px;
  font-size: 170px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.035);
}

.contact-copy {
  position: relative;
  z-index: 2;
}

.contact-copy span {
  display: inline-flex;
  width: fit-content;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}

.contact-copy h2 {
  max-width: 720px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
  letter-spacing: -1.4px;
  margin-bottom: 18px;
}

.contact-copy p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.5;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn-dark {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.contact-info {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 14px;
}

.contact-info div {
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-info strong {
  display: block;
  color: var(--white);
  font-size: 15px;
  margin-bottom: 6px;
}

.contact-info p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .contact-card {
    grid-template-columns: 1fr;
  }
}

/* FOOTER */
.site-footer {
  background: var(--blue-950);
  color: var(--white);
  padding: 70px 0 26px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  margin-top: 10px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 0.8fr;
  gap: 42px;
  padding-bottom: 38px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand img {
  width: 150px;
  height: auto;
  display: block;
  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 260px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column h3 {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
  color: var(--white);
}

.footer-column a,
.footer-column span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.4;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-bottom {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.contact-band {
  position: relative;
  overflow: hidden;
}

.contact-visuals {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.contact-band .container,
.contact-band-content,
.contact-band-grid,
.contact-info {
  position: relative;
  z-index: 2;
}

.contact-photo {
  position: absolute;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
  opacity: 0.92;
}

.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.02);
}

.contact-photo-left {
  left: 26px;
  bottom: 22px;
  width: 220px;
  height: 150px;
}

.contact-photo-right {
  right: 26px;
  top: 24px;
  width: 220px;
  height: 150px;
}

.contact-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.10),
    rgba(255,255,255,0.02) 35%,
    rgba(0,0,0,0.12)
  );
}

@media (max-width: 900px) {
  .contact-photo-left,
  .contact-photo-right {
    display: none;
  }
}

/* CONTACT VISUALS FIX */
.contact-section {
  position: relative;
}

.contact-card {
  position: relative;
  overflow: hidden;
}

.contact-visuals {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.contact-copy,
.contact-info {
  position: relative;
  z-index: 3;
}

@media (max-width: 900px) {
  .contact-photo {
    display: none;
  }
}

.contact-copy,
.contact-info {
  position: relative;
  z-index: 2;
}

.contact-card::before,
.contact-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}

/* Imagen solar abajo a la izquierda */
.contact-card::before {
  left: 0;
  bottom: 0;
  width: 190px;
  height: 140px;
  background-image: url("assets/solar.jpg");
  border-radius: 0 24px 0 24px;
  box-shadow: 0 0 30px rgba(120, 220, 255, 0.18);
}

/* Imagen eólica arriba a la derecha */
.contact-card::after {
  right: 0;
  top: 0;
  width: 190px;
  height: 140px;
  background-image: url("assets/eolico.jpg");
  border-radius: 0 24px 0 24px;
  box-shadow: 0 0 30px rgba(120, 220, 255, 0.18);
}

/* CONTACT BACKGROUND IMAGES */
.contact-card {
  position: relative;
  overflow: hidden;
}

.contact-copy,
.contact-info {
  position: relative;
  z-index: 2;
}

.contact-card::before,
.contact-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  mix-blend-mode: screen;
}

/* Solar: integrado abajo izquierda */
.contact-card::before {
  left: 0;
  bottom: 0;
  width: 320px;
  height: 220px;
  background-image: linear-gradient(
      135deg,
      rgba(3, 22, 51, 0.15),
      rgba(3, 22, 51, 0.75)
    ),
    url("assets/solar.jpg");
  border-radius: 0 34px 0 34px;
}

/* Eólico: integrado arriba derecha */
.contact-card::after {
  right: 0;
  top: 0;
  width: 320px;
  height: 220px;
  background-image: linear-gradient(
      135deg,
      rgba(3, 22, 51, 0.08),
      rgba(3, 22, 51, 0.72)
    ),
    url("assets/eolico.jpg");
  border-radius: 0 34px 0 34px;
}

/* CONTACT BACKGROUND FINAL */
.contact-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      135deg,
      rgba(3, 22, 51, 0.92),
      rgba(6, 35, 79, 0.78)
    ),
    url("assets/eolico.jpg"),
    url("assets/solar.jpg"),
    linear-gradient(135deg, var(--blue-950), var(--blue-800));
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
  background-size: 100% 100%, 360px 230px, 360px 230px, 100% 100%;
  background-position: center, right top, left bottom, center;
}

/* Desactiva fondos anteriores que estaban peleando con este bloque */
.contact-card::before,
.contact-card::after {
  content: none !important;
}

/* Mantiene el contenido sobre las imágenes */
.contact-copy,
.contact-info {
  position: relative;
  z-index: 2;
}

/* Suaviza las cajas de datos para que se lean sobre imagen */
.contact-info div {
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(8px);
}

/* PLAN CE ACTIVO PAGE */
.plan-page .site-footer {
  border-radius: 0;
  padding: 52px 0 22px;
  margin-top: 0;
}

.plan-hero {
  min-height: 560px;
  padding: 95px 0 120px;
  background:
    radial-gradient(circle at 92% 12%, rgba(45, 127, 255, 0.55), transparent 32%),
    radial-gradient(circle at 8% 18%, rgba(215, 25, 32, 0.18), transparent 28%),
    linear-gradient(135deg, var(--blue-950), var(--blue-900) 52%, var(--blue-800));
  color: var(--white);
  overflow: hidden;
  position: relative;
}

.plan-hero::after {
  content: "CE";
  position: absolute;
  right: 8%;
  bottom: -40px;
  font-size: 260px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.035);
}

.plan-hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.72fr;
  align-items: center;
  gap: 64px;
  position: relative;
  z-index: 2;
}

.plan-hero-copy h1 {
  font-size: clamp(58px, 7vw, 104px);
  line-height: 0.9;
  letter-spacing: -3px;
  margin-bottom: 24px;
}

.plan-hero-copy p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 21px;
  line-height: 1.42;
}

.plan-price-detail {
  border-radius: var(--radius-xl);
  padding: 40px;
  background:
    radial-gradient(circle at 90% 8%, rgba(45, 127, 255, 0.34), transparent 32%),
    linear-gradient(145deg, rgba(7, 39, 89, 0.98), rgba(3, 22, 51, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.plan-price-detail::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -50px;
  top: -50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.plan-name-badge {
  display: inline-flex;
  width: fit-content;
  background: var(--red);
  color: var(--white);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.plan-price-detail strong {
  display: block;
  font-size: clamp(56px, 5vw, 76px);
  line-height: 1;
}

.plan-price-detail > p {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 4px;
}

.plan-price-divider {
  height: 1px;
  width: 100%;
  background: rgba(255, 255, 255, 0.2);
  margin: 26px 0;
}

.plan-price-detail small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
  font-size: 15px;
}

/* PLAN DETAIL TABS */
.plan-detail-section {
  margin-top: -70px;
  position: relative;
  z-index: 5;
  padding-bottom: 80px;
  background: var(--soft);
}

.plan-tabs-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.plan-detail-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #eef3fa;
}

.plan-detail-tabs button {
  border: none;
  padding: 22px 14px;
  background: transparent;
  color: var(--blue-950);
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
}

.plan-detail-tabs button.active {
  background: var(--white);
  color: var(--red);
  border-radius: 0 0 24px 24px;
}

.plan-detail-content {
  padding: 42px;
}

.plan-detail-intro {
  max-width: 820px;
  margin-bottom: 32px;
}

.plan-detail-intro span,
.stats-copy span,
.document-card span,
.discount-card span,
.not-included-heading span {
  display: inline-flex;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
}

.plan-detail-intro h2,
.stats-copy h2,
.document-card h2,
.discount-card h2,
.not-included-heading h2,
.plan-final-card h2 {
  color: var(--blue-950);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
  letter-spacing: -1.3px;
  margin-bottom: 16px;
}

.plan-detail-intro p,
.stats-copy p,
.document-card p,
.discount-card p,
.not-included-heading p,
.plan-final-card p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.52;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.included-grid article {
  min-height: 220px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #f4f7fb, #ffffff);
  border: 1px solid #e1e8f2;
  position: relative;
  overflow: hidden;
}

.included-grid article::before {
  content: "✓";
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--blue-950);
  color: var(--white);
  font-weight: 900;
  margin-bottom: 18px;
}

.included-grid h3 {
  color: var(--blue-950);
  font-size: 19px;
  line-height: 1.18;
  margin-bottom: 10px;
}

.included-grid p {
  color: var(--muted);
  line-height: 1.46;
  font-size: 15px;
}

/* STATS DETAIL */
.stats-detail-section {
  padding: 20px 0 90px;
  background: var(--soft);
}

.stats-detail-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 38px;
  align-items: stretch;
}

.stats-copy {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: 0 18px 44px rgba(3, 22, 51, 0.08);
}

.stats-copy p + p {
  margin-top: 16px;
}

.stats-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.metric-card {
  min-height: 250px;
  border-radius: var(--radius-lg);
  padding: 24px;
  background:
    radial-gradient(circle at 88% 10%, rgba(45, 127, 255, 0.16), transparent 30%),
    var(--white);
  box-shadow: 0 18px 44px rgba(3, 22, 51, 0.08);
  border: 1px solid rgba(6, 35, 79, 0.06);
  position: relative;
  overflow: hidden;
}

.metric-card::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -36px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(17, 74, 159, 0.06);
}

.metric-head {
  position: relative;
  z-index: 2;
}

.metric-head strong {
  display: block;
  color: var(--blue-950);
  font-size: 20px;
  line-height: 1.16;
  margin-bottom: 6px;
}

.metric-head span {
  display: inline-flex;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.metric-card p {
  position: relative;
  z-index: 2;
  color: var(--muted);
  line-height: 1.42;
  font-size: 14px;
  margin-top: 18px;
}

.mini-chart {
  position: relative;
  z-index: 2;
  height: 74px;
  margin-top: 22px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(244, 247, 251, 0.88));
  border: 1px solid rgba(6, 35, 79, 0.06);
  overflow: hidden;
}

.bars {
  display: flex;
  align-items: end;
  gap: 10px;
  padding: 14px 16px;
}

.bars i {
  flex: 1;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, #41e86d, #114a9f);
  box-shadow: 0 0 18px rgba(65, 232, 109, 0.35);
}

.bars i:nth-child(1) { height: 32%; }
.bars i:nth-child(2) { height: 58%; }
.bars i:nth-child(3) { height: 42%; }
.bars i:nth-child(4) { height: 76%; }
.bars i:nth-child(5) { height: 62%; }

.line {
  display: grid;
  place-items: center;
  padding: 12px;
}

.line svg {
  width: 100%;
  height: 100%;
}

.line path {
  fill: none;
  stroke: #25d366;
  stroke-width: 7;
  stroke-linecap: round;
  filter: drop-shadow(0 0 8px rgba(37, 211, 102, 0.45));
}

.radial {
  display: grid;
  place-items: center;
}

.radial-ring {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background:
    conic-gradient(#d71920 0 68%, #dce5f1 68% 100%);
  display: grid;
  place-items: center;
  box-shadow: 0 0 18px rgba(215, 25, 32, 0.22);
}

.radial-ring span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--white);
}

.blocks {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  padding: 16px;
}

.blocks i {
  border-radius: 12px;
  background: linear-gradient(135deg, #0b3472, #2d7fff);
  box-shadow: 0 0 16px rgba(45, 127, 255, 0.28);
}

.blocks i:nth-child(1),
.blocks i:nth-child(4) {
  opacity: 0.55;
}

.blocks i:nth-child(2),
.blocks i:nth-child(5) {
  opacity: 0.82;
}

/* DOCUMENT SECTION */
.document-section {
  padding: 10px 0 90px;
  background: var(--soft);
}

.document-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.document-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: 0 18px 44px rgba(3, 22, 51, 0.08);
  border: 1px solid rgba(6, 35, 79, 0.06);
}

.document-card ul {
  list-style: none;
  display: grid;
  gap: 13px;
  margin-top: 24px;
}

.document-card li {
  color: var(--text);
  font-weight: 700;
  line-height: 1.38;
}

.document-card li::before {
  content: "✓";
  color: var(--red);
  font-weight: 900;
  margin-right: 10px;
}

.dark-card {
  background:
    radial-gradient(circle at 88% 10%, rgba(45, 127, 255, 0.32), transparent 30%),
    linear-gradient(135deg, var(--blue-950), var(--blue-800));
  color: var(--white);
  border: none;
}

.dark-card span {
  color: var(--green);
}

.dark-card h2 {
  color: var(--white);
}

.dark-card p {
  color: rgba(255, 255, 255, 0.78);
}

.dark-card p + p {
  margin-top: 16px;
}

/* DISCOUNT */
.discount-section {
  padding: 10px 0 90px;
  background: var(--soft);
}

.discount-card {
  border-radius: var(--radius-xl);
  padding: 44px;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 42px;
  align-items: center;
  background:
    radial-gradient(circle at 90% 16%, rgba(37, 211, 102, 0.16), transparent 30%),
    linear-gradient(135deg, var(--blue-950), var(--blue-800));
  color: var(--white);
  box-shadow: var(--shadow);
}

.discount-card span {
  color: var(--green);
}

.discount-card h2 {
  color: var(--white);
}

.discount-card p {
  color: rgba(255, 255, 255, 0.78);
}

.discount-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.discount-card li {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

/* NOT INCLUDED */
.not-included-section {
  padding: 10px 0 70px;
  background: var(--soft);
}

.not-included-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.not-included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.not-included-grid div {
  padding: 18px 20px 18px 24px;
  border-radius: 18px;
  background: var(--white);
  color: var(--blue-950);
  font-weight: 800;
  box-shadow: 0 12px 34px rgba(3, 22, 51, 0.07);
  border: 1px solid rgba(6, 35, 79, 0.06);
  border-left: 5px solid var(--red);
  position: relative;
}

.not-included-grid div::before {
  content: "×";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: rgba(215, 25, 32, 0.08);
  color: var(--red);
  font-weight: 900;
  margin-right: 10px;
}
/* ACTIVATION SECTION */
.activation-section {
  padding: 10px 0 80px;
  background: var(--soft);
}

.activation-heading {
  max-width: 880px;
  margin-bottom: 34px;
}

.activation-heading span {
  display: inline-flex;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
}

.activation-heading h2 {
  color: var(--blue-950);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
  letter-spacing: -1.3px;
  margin-bottom: 16px;
}

.activation-heading p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.52;
}

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

.activation-card {
  min-height: 300px;
  padding: 28px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 88% 10%, rgba(45, 127, 255, 0.12), transparent 30%),
    var(--white);
  border: 1px solid rgba(6, 35, 79, 0.06);
  box-shadow: 0 18px 44px rgba(3, 22, 51, 0.08);
  position: relative;
  overflow: hidden;
}

.activation-card::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(17, 74, 159, 0.06);
}

.activation-number {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--blue-950), var(--blue-800));
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 22px;
  box-shadow: 0 12px 28px rgba(3, 22, 51, 0.18);
}

.activation-card h3 {
  color: var(--blue-950);
  font-size: 24px;
  line-height: 1.1;
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
}

.activation-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
  position: relative;
  z-index: 2;
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 22px;
  position: relative;
  z-index: 2;
}

.payment-methods span {
  min-height: 46px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 10px;
  border-radius: 16px;
  background: #f4f7fb;
  border: 1px solid #e1e8f2;
  color: var(--blue-950);
  font-size: 13px;
  font-weight: 900;
}

.activation-note {
  margin-top: 22px;
  padding: 22px 26px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(215, 25, 32, 0.08), rgba(255, 255, 255, 0.92));
  border: 1px solid rgba(215, 25, 32, 0.14);
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.activation-note strong {
  color: var(--red);
}

/* ACTIVATION RESPONSIVE */
@media (max-width: 900px) {
  .activation-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .activation-card {
    padding: 24px;
  }

  .payment-methods {
    grid-template-columns: 1fr;
  }
}
/* FINAL CTA */
.plan-final-cta {
  padding: 10px 0 70px;
  background: var(--soft);
}

.plan-final-card {
  text-align: center;
  border-radius: var(--radius-lg);
  padding: 46px 36px;
  background:
    radial-gradient(circle at 50% 0%, rgba(45, 127, 255, 0.22), transparent 34%),
    var(--white);
  box-shadow: var(--shadow);
}

.plan-final-card p {
  max-width: 680px;
  margin: 0 auto 28px;
}

/* PLAN PAGE RESPONSIVE */
@media (max-width: 1100px) {
  .included-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .not-included-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .plan-hero-grid,
  .stats-detail-grid,
  .document-grid,
  .discount-card {
    grid-template-columns: 1fr;
  }

  .plan-detail-tabs {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .plan-hero {
    padding-top: 70px;
  }

  .plan-detail-tabs,
  .included-grid,
  .stats-list,
  .not-included-grid {
    grid-template-columns: 1fr;
  }

  .plan-detail-content,
  .document-card,
  .discount-card {
    padding: 28px;
  }
}

/* ===== ACTIVATION SECTION VISUAL UPGRADE ===== */
.activation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 34px;
}

.activation-card {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f7fafe 100%);
  border: 1px solid rgba(10, 35, 80, 0.08);
  border-radius: 28px;
  padding: 28px 24px 24px;
  box-shadow: 0 18px 45px rgba(8, 29, 67, 0.08);
  overflow: hidden;
  min-height: 320px;
}

.activation-card::before,
.activation-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.activation-card::before {
  width: 120px;
  height: 120px;
  right: -35px;
  bottom: -35px;
  background: radial-gradient(circle, rgba(17, 80, 190, 0.10), rgba(17, 80, 190, 0));
}

.activation-card::after {
  width: 88px;
  height: 88px;
  left: -18px;
  top: -18px;
  background: radial-gradient(circle, rgba(228, 36, 52, 0.08), rgba(228, 36, 52, 0));
}

.activation-number {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, #081d43, #123a7d);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 18px;
  box-shadow: 0 10px 18px rgba(8, 29, 67, 0.20);
}

.activation-visual {
  width: 76px;
  height: 76px;
  border-radius: 22px;
  margin-bottom: 18px;
  position: relative;
  background: linear-gradient(135deg, rgba(8, 29, 67, 0.06), rgba(20, 90, 210, 0.12));
  border: 1px solid rgba(8, 29, 67, 0.08);
}

.activation-visual span,
.activation-visual::before,
.activation-visual::after {
  content: "";
  position: absolute;
}

/* Permanencia mínima - estilo calendario */
.activation-visual--calendar::before {
  width: 44px;
  height: 36px;
  left: 16px;
  top: 22px;
  border-radius: 10px;
  background: #ffffff;
  border: 2px solid #153b7e;
  box-shadow: 0 10px 20px rgba(21, 59, 126, 0.10);
}

.activation-visual--calendar::after {
  width: 44px;
  height: 10px;
  left: 16px;
  top: 22px;
  border-radius: 10px 10px 0 0;
  background: linear-gradient(90deg, #e32635, #ff5b66);
}

.activation-visual--calendar span {
  width: 20px;
  height: 20px;
  right: 8px;
  bottom: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7cff6b, #30d158);
  box-shadow: 0 8px 18px rgba(48, 209, 88, 0.25);
}

/* Formas de pago - tarjeta moderna */
.activation-visual--payment::before {
  width: 46px;
  height: 30px;
  left: 15px;
  top: 23px;
  border-radius: 10px;
  background: linear-gradient(135deg, #0d2b60, #2453b6);
  box-shadow: 0 12px 20px rgba(20, 63, 145, 0.20);
}

.activation-visual--payment::after {
  width: 22px;
  height: 6px;
  left: 22px;
  top: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,0.85);
}

.activation-visual--payment span {
  width: 18px;
  height: 18px;
  right: 10px;
  bottom: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffdd57, #ff9f0a);
  box-shadow: 0 8px 16px rgba(255, 159, 10, 0.22);
}

/* Certificado - sello / timbre */
.activation-visual--certificate::before {
  width: 44px;
  height: 44px;
  left: 16px;
  top: 16px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffffff 0%, #f7f7f7 35%, #e32635 36%, #e32635 100%);
  box-shadow: 0 10px 18px rgba(227, 38, 53, 0.18);
}

.activation-visual--certificate::after {
  width: 24px;
  height: 24px;
  left: 26px;
  top: 26px;
  background: #fff;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.activation-visual--certificate span {
  width: 18px;
  height: 28px;
  right: 14px;
  bottom: 10px;
  border-radius: 6px;
  background: linear-gradient(180deg, #123a7d, #081d43);
}

.activation-card h3 {
  font-size: 20px;
  line-height: 1.15;
  margin: 0 0 12px;
  color: #071a3d;
}

.activation-card p {
  font-size: 15px;
  line-height: 1.65;
  color: #5b667a;
  margin: 0;
}

/* Medios de pago */
.payment-methods--logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.payment-logo {
  min-height: 56px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(10, 35, 80, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  box-shadow: 0 8px 18px rgba(8, 29, 67, 0.05);
}

.payment-logo img {
  max-width: 100%;
  max-height: 26px;
  object-fit: contain;
  display: block;
}

.payment-logo--bank {
  gap: 10px;
  justify-content: flex-start;
  padding-left: 14px;
}

.payment-logo--bank strong {
  font-size: 13px;
  line-height: 1.2;
  color: #0b214a;
}

.bank-icon {
  width: 28px;
  height: 28px;
  position: relative;
  flex: 0 0 28px;
}

.bank-icon::before {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  top: 2px;
  height: 10px;
  background: #123a7d;
  clip-path: polygon(50% 0%, 100% 100%, 0 100%);
}

.bank-icon::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: 3px;
  height: 11px;
  border-radius: 0 0 6px 6px;
  background:
    linear-gradient(to right,
      #123a7d 0 18%,
      transparent 18% 28%,
      #123a7d 28% 46%,
      transparent 46% 56%,
      #123a7d 56% 74%,
      transparent 74% 84%,
      #123a7d 84% 100%);
}

/* Nota importante */
.activation-note {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff7f7 0%, #fff1f1 100%);
  border: 1px solid rgba(227, 38, 53, 0.12);
  color: #6a4d4d;
  font-size: 14px;
  line-height: 1.6;
}

.activation-note strong {
  color: #c92031;
}

/* Responsive */
@media (max-width: 980px) {
  .activation-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .payment-methods--logos {
    grid-template-columns: 1fr;
  }

  .activation-card {
    min-height: auto;
  }
}

/* ===== ACTIVATION CARDS - VISUALS TO BOTTOM CENTER ===== */
.activation-card {
  display: flex;
  flex-direction: column;
}

.activation-card .activation-number {
  order: 1;
}

.activation-card h3 {
  order: 2;
}

.activation-card p {
  order: 3;
}

.activation-card .activation-visual {
  order: 4;
  margin: auto auto 0;
  width: 96px;
  height: 96px;
  border-radius: 28px;
}

/* Tarjeta formas de pago: los logos bajan al espacio inferior */
.activation-card--payment .payment-methods--logos {
  order: 4;
  margin-top: auto;
  align-self: center;
  width: 100%;
  max-width: 245px;
}

/* En la tarjeta de pago ocultamos el ícono pequeño superior para no competir con logos */
.activation-card--payment .activation-visual {
  display: none;
}

/* Ajuste visual de los íconos inferiores */
.activation-card--permanence .activation-visual,
.activation-card--certificate .activation-visual {
  transform: translateY(4px);
}

/* Hacemos más protagonista el sello/certificado */
.activation-visual--certificate::before {
  width: 56px;
  height: 56px;
  left: 20px;
  top: 16px;
}

.activation-visual--certificate::after {
  width: 30px;
  height: 30px;
  left: 33px;
  top: 29px;
}

/* Hacemos más visible el calendario */
.activation-visual--calendar::before {
  width: 54px;
  height: 44px;
  left: 21px;
  top: 25px;
}

.activation-visual--calendar::after {
  width: 54px;
  height: 12px;
  left: 21px;
  top: 25px;
}

.activation-visual--calendar span {
  width: 24px;
  height: 24px;
  right: 12px;
  bottom: 10px;
}

/* Mejor separación interna de cada tarjeta */
.activation-card h3 {
  margin-top: 4px;
}

.activation-card p {
  margin-bottom: 24px;
}

/* Los logos de pago quedan más ordenados y visibles abajo */
.payment-logo {
  min-height: 50px;
}

.payment-logo--bank {
  grid-column: 1 / -1;
  justify-content: center;
}

/* ===== PAYMENT LOGOS SIZE FIX ===== */
.payment-logo {
  min-height: 72px;
  padding: 12px 18px;
}

.payment-logo img {
  display: block;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Tamaño individual por logo */
.payment-logo img[alt="Visa"] {
  max-width: 135px;
  max-height: 50px;
}

.payment-logo img[alt="Mastercard"] {
  max-width: 105px;
  max-height: 50px;
}

.payment-logo img[alt="Mercado Pago"] {
  max-width: 135px;
  max-height: 54px;
}

.payment-logo img[alt="Webpay"] {
  max-width: 150px;
  max-height: 54px;
}

/* ===== CENTRAR VISUALES LATERALES EN ACTIVACIÓN ===== */
.activation-grid .activation-card:first-child,
.activation-grid .activation-card:last-child {
  display: flex;
  flex-direction: column;
}

.activation-grid .activation-card:first-child .activation-visual,
.activation-grid .activation-card:last-child .activation-visual {
  margin-top: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 18px;
  padding-bottom: 18px;
}

.activation-grid .activation-card:first-child .activation-visual img,
.activation-grid .activation-card:last-child .activation-visual img {
  max-width: 110px;
  max-height: 110px;
  object-fit: contain;
}

/* ===== FIX DEFINITIVO POSICIÓN VISUALES ACTIVACIÓN ===== */

/* Dejamos las tarjetas laterales con altura ordenada */
.activation-card--permanence,
.activation-card--certificate {
  position: relative !important;
}

/* Sacamos los íconos del fondo pegado y los subimos al centro visual */
.activation-card--permanence .activation-visual,
.activation-card--certificate .activation-visual {
  position: absolute !important;
  left: 50% !important;
  bottom: 78px !important;
  transform: translateX(-50%) !important;
  margin: 0 !important;
  width: 104px !important;
  height: 104px !important;
}

/* Mejor calendario permanencia */
.activation-card--permanence .activation-visual--calendar::before {
  width: 60px !important;
  height: 48px !important;
  left: 22px !important;
  top: 28px !important;
  border-radius: 12px !important;
}

.activation-card--permanence .activation-visual--calendar::after {
  width: 60px !important;
  height: 14px !important;
  left: 22px !important;
  top: 28px !important;
}

.activation-card--permanence .activation-visual--calendar span {
  width: 26px !important;
  height: 26px !important;
  right: 10px !important;
  bottom: 10px !important;
}

/* Cambiamos certificado: menos abstracto, más documento con sello */
.activation-card--certificate .activation-visual {
  background: linear-gradient(135deg, rgba(8, 29, 67, 0.06), rgba(20, 90, 210, 0.10)) !important;
}

.activation-card--certificate .activation-visual--certificate::before {
  width: 58px !important;
  height: 72px !important;
  left: 23px !important;
  top: 16px !important;
  border-radius: 10px !important;
  background: #ffffff !important;
  border: 2px solid #153b7e !important;
  box-shadow: 0 10px 20px rgba(21, 59, 126, 0.14) !important;
}

.activation-card--certificate .activation-visual--certificate::after {
  width: 28px !important;
  height: 28px !important;
  left: 53px !important;
  top: 57px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #d71920, #ff5b66) !important;
  clip-path: none !important;
  box-shadow: 0 8px 16px rgba(215, 25, 32, 0.22) !important;
}

.activation-card--certificate .activation-visual--certificate span {
  width: 34px !important;
  height: 4px !important;
  left: 35px !important;
  top: 36px !important;
  border-radius: 10px !important;
  background: #153b7e !important;
  box-shadow:
    0 12px 0 rgba(21, 59, 126, 0.45),
    0 24px 0 rgba(21, 59, 126, 0.28) !important;
}

/* ===== PRICE CARD BUTTON HAND OUTSIDE ===== */
.price-card-action {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}

.price-card-action .price-card-link {
  margin-top: 0;
}

.price-card-hand {
  color: #ffffff;
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.35);
  transform: translateY(1px);
}

/* ===== PLAN DETAIL TABS COMO ENLACES ===== */
.plan-detail-tabs a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 18px 22px;
  border: 0;
  background: transparent;
  color: var(--blue-950);
  font-size: 16px;
  font-weight: 900;
  text-decoration: none;
  text-align: center;
  border-radius: 24px 24px 0 0;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.plan-detail-tabs a:hover {
  background: rgba(255, 255, 255, 0.72);
}

.plan-detail-tabs a.active {
  background: var(--white);
  color: var(--red);
  box-shadow: 0 -10px 30px rgba(3, 22, 51, 0.06);
}

/* ===== SCROLL ANCHORS ===== */
.scroll-anchor {
  display: block;
  height: 1px;
  scroll-margin-top: 120px;
}

/* ===== AJUSTE GENERAL PARA HEADER FIJO EN ANCLAS ===== */
#inicio,
#servicios,
#planes,
#nosotros,
#recursos,
#contacto,
.offers-section,
.plan-section,
.contact-section {
  scroll-margin-top: 115px;
}

/* ===== PLATAFORMA HALLAZGOS PREMIUM DASHBOARD ===== */

.platform-section .platform-card {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 46px;
  overflow: hidden;
}

.platform-section .platform-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 430px;
  position: relative;
  z-index: 2;
}

.platform-section .platform-dashboard {
  width: min(680px, 100%);
  background:
    radial-gradient(circle at 92% 8%, rgba(45, 127, 255, 0.18), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 255, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 30px;
  padding: 18px;
  color: #061733;
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: perspective(900px) rotateY(-4deg) rotateX(2deg);
}

.dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 8px 8px 16px;
  border-bottom: 1px solid rgba(6, 23, 51, 0.08);
}

.dashboard-title {
  font-size: 16px;
  font-weight: 950;
  letter-spacing: -0.3px;
  color: #061733;
}

.dashboard-status {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.dashboard-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 950;
  line-height: 1;
}

.chip-danger {
  color: #9b1118;
  background: rgba(215, 25, 32, 0.12);
}

.chip-warning {
  color: #9a4d00;
  background: rgba(255, 149, 0, 0.16);
}

.chip-success {
  color: #0c6b38;
  background: rgba(34, 197, 94, 0.15);
}

.dashboard-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.kpi-card {
  padding: 16px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(6, 23, 51, 0.08);
  box-shadow: 0 12px 26px rgba(6, 23, 51, 0.08);
}

.kpi-card span {
  display: block;
  font-size: 10px;
  font-weight: 900;
  color: rgba(6, 23, 51, 0.56);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.kpi-card strong {
  display: block;
  font-size: 30px;
  line-height: 1;
  color: #061733;
  letter-spacing: -1px;
}

.kpi-card small {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  color: rgba(6, 23, 51, 0.58);
  font-weight: 750;
}

.dashboard-content {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 12px;
  margin-top: 14px;
}

.dashboard-table-card,
.side-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(6, 23, 51, 0.08);
  border-radius: 22px;
  box-shadow: 0 14px 30px rgba(6, 23, 51, 0.08);
}

.dashboard-table-card {
  padding: 14px;
}

.table-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.table-card-head strong {
  font-size: 14px;
  font-weight: 950;
}

.table-card-head span {
  font-size: 11px;
  color: rgba(6, 23, 51, 0.54);
  font-weight: 800;
}

.table-header,
.table-row {
  display: grid;
  grid-template-columns: 72px 1fr 74px 82px;
  gap: 8px;
  align-items: center;
}

.table-header {
  padding: 9px 10px;
  border-radius: 14px;
  background: rgba(6, 23, 51, 0.05);
  color: rgba(6, 23, 51, 0.62);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.45px;
  font-weight: 950;
}

.table-row {
  padding: 11px 10px;
  border-bottom: 1px solid rgba(6, 23, 51, 0.06);
  font-size: 11px;
  font-weight: 800;
}

.table-row:last-child {
  border-bottom: 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 8px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 950;
  line-height: 1;
}

.tag-critical {
  color: #9b1118;
  background: rgba(215, 25, 32, 0.12);
}

.tag-high {
  color: #9a4d00;
  background: rgba(255, 149, 0, 0.16);
}

.tag-medium {
  color: #0b4f9c;
  background: rgba(37, 99, 235, 0.12);
}

.tag-open {
  color: #9b1118;
  background: rgba(215, 25, 32, 0.10);
}

.tag-progress {
  color: #9a4d00;
  background: rgba(255, 149, 0, 0.14);
}

.tag-closed {
  color: #0c6b38;
  background: rgba(34, 197, 94, 0.14);
}

.dashboard-side {
  display: grid;
  gap: 12px;
}

.side-card {
  padding: 15px;
}

.side-label {
  display: block;
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.55px;
  color: #d71920;
  margin-bottom: 6px;
}

.side-card strong {
  display: block;
  font-size: 14px;
  line-height: 1.15;
  margin-bottom: 12px;
}

.mini-bars {
  height: 92px;
  display: flex;
  align-items: end;
  gap: 8px;
  padding: 10px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(6, 35, 79, 0.06), rgba(6, 35, 79, 0.02));
}

.mini-bars i {
  flex: 1;
  border-radius: 999px 999px 6px 6px;
  background: linear-gradient(180deg, #2d7fff, #123d83);
  box-shadow: 0 8px 18px rgba(45, 127, 255, 0.25);
}

.mini-bars i:nth-child(1) { height: 38%; }
.mini-bars i:nth-child(2) { height: 56%; }
.mini-bars i:nth-child(3) { height: 48%; }
.mini-bars i:nth-child(4) { height: 72%; }
.mini-bars i:nth-child(5) { height: 61%; }
.mini-bars i:nth-child(6) { height: 84%; }

.side-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.side-card li {
  position: relative;
  padding-left: 16px;
  font-size: 11px;
  line-height: 1.35;
  color: rgba(6, 23, 51, 0.72);
  font-weight: 750;
}

.side-card li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #d71920;
  position: absolute;
  left: 0;
  top: 5px;
}

/* Oculta restos visuales antiguos si quedaron estilos viejos dando jugo */
.platform-browser,
.browser-topbar,
.browser-toolbar,
.browser-table,
.browser-footer-lines {
  display: none !important;
}

/* ===== RESPONSIVE V1 - HOME HEADER Y HERO ===== */
@media (max-width: 768px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .container {
    width: 100%;
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    padding: 14px 0;
  }

  .header-content {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 12px;
    align-items: center;
  }

  .brand-logo {
    width: 58px;
    height: auto;
  }

  .whatsapp-pill {
    width: 100%;
    justify-content: center;
    padding: 13px 14px;
    font-size: 14px;
    white-space: nowrap;
  }

  .main-nav {
    grid-column: 1 / -1;
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding-top: 8px;
    white-space: nowrap;
    font-size: 14px;
  }

  .main-nav a {
    flex: 0 0 auto;
  }

  .hero {
    padding: 46px 0 56px;
    overflow: hidden;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .hero-copy h1 {
    font-size: 46px;
    line-height: 1;
    letter-spacing: -1.6px;
  }

  .hero-copy p {
    font-size: 20px;
    line-height: 1.42;
  }

  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-phone {
    display: none;
  }

  .price-card {
    width: 100%;
    max-width: 100%;
    transform: none;
  }

  .price-card strong {
    font-size: 58px;
    line-height: 1;
  }

  .price-card-hand {
    display: none;
  }
}

@media (max-width: 768px) {
  .platform-phone {
    display: none !important;
  }
}

/* ===== RESPONSIVE V1 - SECCIÓN NOSOTROS / WHY ===== */
@media (max-width: 768px) {
  .why-section {
    overflow: hidden;
  }

  .why-grid {
    display: flex;
    flex-direction: column;
    gap: 22px;
  }

  .why-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .why-card {
    width: 100%;
    max-width: 100%;
    min-height: auto;
    padding: 28px 24px;
  }

  .why-card h3 {
    font-size: 24px;
    line-height: 1.15;
  }

  .why-card p {
    font-size: 17px;
    line-height: 1.45;
  }
}

/* ===== RESPONSIVE V1 - PLATAFORMA HOME ===== */
@media (max-width: 768px) {
  .platform-section {
    overflow: hidden;
  }

  .platform-section .platform-card {
    display: flex !important;
    flex-direction: column;
    gap: 28px;
    padding: 42px 24px;
  }

  .platform-copy {
    width: 100%;
    max-width: 100%;
  }

  .platform-copy h2 {
    font-size: 42px;
    line-height: 1.02;
    letter-spacing: -1.3px;
  }

  .platform-copy p {
    font-size: 19px;
    line-height: 1.45;
  }

  .platform-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .platform-section .platform-visual {
    width: 100%;
    max-width: 100%;
    min-height: auto;
    display: block;
    overflow: hidden;
  }

  .platform-section .platform-dashboard {
    width: 100%;
    max-width: 100%;
    transform: none !important;
    padding: 14px;
    border-radius: 24px;
  }

  .dashboard-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .dashboard-status {
    display: none;
  }

  .dashboard-kpis {
    grid-template-columns: 1fr;
  }

  .dashboard-content {
    grid-template-columns: 1fr;
  }

  .table-header,
  .table-row {
    grid-template-columns: 82px 1fr;
  }

  .table-header span:nth-child(3),
  .table-header span:nth-child(4),
  .table-row span:nth-child(3),
  .table-row span:nth-child(4) {
    display: none;
  }

  .dashboard-side {
    grid-template-columns: 1fr;
  }
}

/* ===== RESPONSIVE V1 - HEADER FIJO MÓVIL ===== */
@media (max-width: 768px) {
  .site-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 99999 !important;
    background: #061733;
    box-shadow: 0 10px 30px rgba(3, 22, 51, 0.18);
  }
}

/* ===== RESPONSIVE V1 - HEADER FIJO REAL MÓVIL ===== */
@media (max-width: 768px) {
  .site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 999999 !important;
    background: #061733 !important;
    box-shadow: 0 12px 30px rgba(3, 22, 51, 0.24);
  }

  body {
    padding-top: 215px;
  }
}

/* ===== RESPONSIVE V1 - HEADER MÓVIL COMPACTO ===== */
@media (max-width: 768px) {
  .site-header {
    padding: 10px 0 8px !important;
  }

  .header-content {
    display: grid !important;
    grid-template-columns: 52px 1fr !important;
    grid-template-rows: auto auto !important;
    gap: 10px 12px !important;
    align-items: center !important;
  }

  .brand {
    grid-column: 1 / 2 !important;
    grid-row: 1 / 2 !important;
  }

  .brand-logo {
    width: 48px !important;
  }

  .whatsapp-pill {
    grid-column: 2 / 3 !important;
    grid-row: 1 / 2 !important;
    width: 100% !important;
    min-width: 0 !important;
    height: 46px !important;
    padding: 10px 12px !important;
    font-size: 13px !important;
    border-radius: 999px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    white-space: nowrap !important;
  }

  .main-nav {
    grid-column: 1 / -1 !important;
    grid-row: 2 / 3 !important;
    display: flex !important;
    gap: 18px !important;
    overflow-x: auto !important;
    padding: 4px 0 2px !important;
    font-size: 14px !important;
    white-space: nowrap !important;
  }

  body {
    padding-top: 132px !important;
  }
}

/* ===== RESPONSIVE V1 - PLAN CE ACTIVO / TARJETAS ACTIVACIÓN ===== */
@media (max-width: 768px) {
  .plan-page .activation-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .plan-page .activation-card {
    position: relative;
    min-height: auto;
    padding: 30px 26px 34px;
    overflow: hidden;
  }

  .plan-page .activation-card h3 {
    font-size: 26px;
    line-height: 1.15;
    margin-top: 24px;
  }

  .plan-page .activation-card p {
    font-size: 18px;
    line-height: 1.5;
  }

  .plan-page .activation-card .activation-visual {
    position: static !important;
    width: 82px !important;
    height: 82px !important;
    margin: 24px auto 0 !important;
    transform: none !important;
    opacity: 1;
  }

  .plan-page .activation-card--payment .activation-visual {
    display: none !important;
  }
}

/* ===== RESPONSIVE V1 - TABS HOME TIPO MERCADO PAGO REFINADO ===== */
@media (max-width: 768px) {
  #planes {
    padding-top: 54px !important;
    margin-top: 0 !important;
  }

  #planes .tabs {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-end !important;
    gap: 8px !important;
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 16px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  #planes .tabs::-webkit-scrollbar {
    display: none;
  }

  #planes .tab {
    flex: 0 0 142px !important;
    min-width: 142px !important;
    height: 48px !important;
    padding: 0 14px !important;
    border-radius: 22px 22px 0 0 !important;
    font-size: 15px !important;
    font-weight: 850 !important;
    line-height: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    scroll-snap-align: start;
    background: rgba(239, 244, 251, 0.92) !important;
    color: #10213f !important;
    box-shadow: none !important;
    border: 1px solid rgba(16, 33, 63, 0.06) !important;
    border-bottom: 0 !important;
    transform: none !important;
  }

  #planes .tab.active {
    height: 56px !important;
    background: #ffffff !important;
    color: #d71920 !important;
    box-shadow: none !important;
    transform: none !important;
    position: relative;
    z-index: 3;
  }

  #planes .plan-panel {
    width: calc(100% - 32px) !important;
    margin: -1px auto 0 !important;
    border-radius: 0 0 30px 30px !important;
    position: relative;
    z-index: 2;
  }
}

/* ===== AJUSTE FINO - PESTAÑA ACTIVA PEGADA AL PANEL ===== */
@media (max-width: 768px) {
  #planes .tabs {
    margin-bottom: -12px !important;
    position: relative;
    z-index: 5;
  }

  #planes .tab {
    height: 50px !important;
    border-radius: 24px 24px 0 0 !important;
    box-shadow: none !important;
  }

  #planes .tab.active {
    height: 58px !important;
    background: #ffffff !important;
    color: #d71920 !important;
    border-bottom: 0 !important;
    position: relative;
    z-index: 8;
  }

  #planes .tab.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -14px;
    height: 16px;
    background: #ffffff;
  }

  #planes .plan-panel {
    margin-top: 0 !important;
    padding-top: 38px !important;
    background: #ffffff !important;
    border-radius: 0 0 30px 30px !important;
    position: relative;
    z-index: 3;
  }
}

/* ===== AJUSTE FINO - TABS ALINEADOS CON PANEL ===== */
@media (max-width: 768px) {
  #planes .tabs {
    width: calc(100% - 32px) !important;
    max-width: calc(100% - 32px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 0 !important;
    gap: 8px !important;
  }

  #planes .tab {
    flex: 0 0 142px !important;
    min-width: 142px !important;
  }

  #planes .plan-panel {
    width: calc(100% - 32px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* ===== RESPONSIVE V1 - BLOQUES AZULES FULL WIDTH MÓVIL ===== */
@media (max-width: 768px) {
  .hero,
  .plan-hero,
  .counter-strip,
  .platform-section .platform-card {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    border-radius: 0 !important;
  }

  .price-card,
  .plan-price-detail {
    border-radius: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
  }

  .hero {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .platform-section .platform-card {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}

/* ===== MOBILE - APP STACK CARDS ===== */
@media (max-width: 768px) {
  .why-section,
  .sectors-section,
  .offers-section {
    overflow: hidden !important;
  }

  .why-cards,
  .sectors-grid,
  .offers-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
  }

  .why-card,
  .sector-card,
  .offer-card {
    position: relative !important;
    top: auto !important;
    width: 100% !important;
    margin: 0 !important;
    border-radius: 30px !important;
    border: 1px solid rgba(6, 35, 79, 0.08) !important;
    box-shadow: 0 28px 70px rgba(3, 22, 51, 0.18) !important;
    overflow: hidden !important;
    transform: none !important;
  }

  .why-card + .why-card {
    margin-top: -28px !important;
  }

  .sector-card + .sector-card {
    margin-top: -42px !important;
  }

  .offer-card + .offer-card {
    margin-top: -24px !important;
  }

  .why-card {
    min-height: 230px !important;
    padding: 32px 28px 36px !important;
    background:
      radial-gradient(circle at 90% 14%, rgba(17, 74, 159, 0.16), transparent 34%),
      linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(235, 241, 249, 0.94)) !important;
  }

  .sector-card {
    min-height: 265px !important;
    padding: 34px 28px !important;
    background:
      radial-gradient(circle at 92% 18%, rgba(17, 74, 159, 0.20), transparent 34%),
      linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(229, 237, 248, 0.94)) !important;
  }

  .offer-card {
    min-height: auto !important;
    padding: 34px 28px 36px !important;
  }

  .why-card h3,
  .sector-card strong,
  .offer-card h3 {
    max-width: 88%;
    font-size: 30px !important;
    line-height: 1.06 !important;
    letter-spacing: 0 !important;
  }

  .why-card p,
  .sector-card p,
  .offer-card p {
    max-width: 90%;
    font-size: 17px !important;
    line-height: 1.46 !important;
  }

  .sector-card::before,
  .offer-card::before {
    left: 28px !important;
  }

  .why-card:nth-child(1),
  .sector-card:nth-child(1),
  .offer-card:nth-child(1) {
    z-index: 1 !important;
  }

  .why-card:nth-child(2),
  .sector-card:nth-child(2),
  .offer-card:nth-child(2) {
    z-index: 2 !important;
  }

  .why-card:nth-child(3),
  .sector-card:nth-child(3),
  .offer-card:nth-child(3) {
    z-index: 3 !important;
  }

  .why-card:nth-child(4),
  .sector-card:nth-child(4),
  .offer-card:nth-child(4) {
    z-index: 4 !important;
  }

  .sector-card:nth-child(5) {
    z-index: 5 !important;
  }

  .sector-card:nth-child(6) {
    z-index: 6 !important;
  }

  .featured-offer {
    box-shadow: 0 30px 76px rgba(3, 22, 51, 0.24) !important;
  }
}

/* ===== MOBILE - OVERFLOW AND PLATFORM READABILITY FIX ===== */
@media (max-width: 768px) {
  html,
  body {
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  body,
  main,
  section {
    width: 100% !important;
  }

  .container {
    width: 100% !important;
    max-width: 100vw !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    overflow-x: hidden !important;
  }

  img,
  svg {
    max-width: 100%;
  }

  .site-header,
  .hero,
  .plan-section,
  .platform-section,
  .sectors-section,
  .offers-section,
  .contact-section,
  .site-footer {
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }

  .hero,
  .plan-hero,
  .counter-strip,
  .platform-section .platform-card {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .section-pill {
    max-width: 100% !important;
    width: auto !important;
    align-items: flex-start !important;
    white-space: normal !important;
    line-height: 1.25 !important;
  }

  .hero-copy,
  .plan-hero-copy,
  .platform-copy,
  .contact-copy {
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  .hero-copy h1,
  .hero-copy p,
  .plan-hero-copy h1,
  .plan-hero-copy p,
  .platform-copy h2,
  .platform-copy p {
    width: 100% !important;
    max-width: calc(100vw - 80px) !important;
    overflow-wrap: anywhere;
  }

  .hero-actions,
  .hero-actions .btn,
  .contact-actions,
  .contact-actions .btn {
    max-width: calc(100vw - 80px) !important;
  }

  .main-nav {
    max-width: 100% !important;
    padding-bottom: 8px !important;
    scrollbar-width: none;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  #planes .tabs {
    width: calc(100vw - 64px) !important;
    max-width: calc(100vw - 64px) !important;
    scrollbar-width: none;
  }

  #planes .tabs::-webkit-scrollbar {
    display: none;
  }

  #planes .plan-panel,
  .section-heading,
  .why-card,
  .sector-card,
  .offer-card,
  .contact-card {
    width: calc(100vw - 64px) !important;
    max-width: calc(100vw - 64px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .section-heading h2,
  .section-heading p,
  .why-card h3,
  .why-card p,
  .sector-card strong,
  .sector-card p,
  .offer-card h3,
  .offer-card p {
    max-width: 100% !important;
    overflow-wrap: anywhere;
  }

  .plan-intro,
  .plan-benefits,
  .plan-cta {
    min-width: 0 !important;
    max-width: 100% !important;
  }

  #planes .plan-panel {
    padding: 28px 22px 30px !important;
    overflow: hidden !important;
  }

  #planes .plan-intro {
    width: 100% !important;
    padding: 24px 20px !important;
    overflow: hidden !important;
  }

  #planes .plan-intro h2,
  #planes .plan-intro p {
    max-width: 230px !important;
    overflow-wrap: anywhere;
  }

  .plan-benefits li,
  .plan-cta,
  .plan-cta * {
    overflow-wrap: anywhere;
  }

  .plan-benefits {
    width: 100% !important;
    overflow: hidden !important;
  }

  .plan-benefits li {
    display: flex !important;
    align-items: flex-start !important;
    gap: 8px !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 270px !important;
  }

  .plan-benefits li::before {
    flex: 0 0 auto !important;
    margin-right: 0 !important;
  }

  .platform-section {
    padding: 0 !important;
  }

  .platform-section .platform-card {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    padding: 42px 20px 48px !important;
    gap: 24px !important;
    border-radius: 0 !important;
    overflow: hidden !important;
  }

  .platform-copy h2 {
    font-size: 36px !important;
    line-height: 1.04 !important;
    letter-spacing: 0 !important;
  }

  .platform-copy p {
    font-size: 17px !important;
    line-height: 1.48 !important;
  }

  .platform-section .platform-visual {
    overflow: visible !important;
  }

  .platform-section .platform-dashboard {
    width: 100% !important;
    max-width: 100% !important;
    padding: 16px !important;
    border-radius: 26px !important;
    transform: none !important;
    box-shadow: 0 22px 54px rgba(3, 22, 51, 0.20) !important;
  }

  .dashboard-title {
    font-size: 15px !important;
    line-height: 1.25 !important;
  }

  .dashboard-status {
    display: flex !important;
    width: 100% !important;
    gap: 8px !important;
    overflow-x: auto !important;
    padding-bottom: 2px !important;
    scrollbar-width: none;
  }

  .dashboard-status::-webkit-scrollbar {
    display: none;
  }

  .dashboard-chip {
    flex: 0 0 auto !important;
    font-size: 10px !important;
    padding: 7px 9px !important;
  }

  .dashboard-kpis {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }

  .kpi-card {
    min-height: 96px !important;
    padding: 14px !important;
    border-radius: 18px !important;
  }

  .kpi-card span {
    font-size: 10px !important;
    line-height: 1.25 !important;
  }

  .kpi-card strong {
    font-size: 26px !important;
    line-height: 1 !important;
  }

  .kpi-card small {
    font-size: 10px !important;
  }

  .dashboard-content {
    display: block !important;
  }

  .dashboard-table-card {
    padding: 14px !important;
    border-radius: 20px !important;
  }

  .table-card-head {
    align-items: flex-start !important;
    flex-direction: column !important;
    gap: 4px !important;
  }

  .table-header {
    display: none !important;
  }

  .table-row {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 5px !important;
    align-items: start !important;
    padding: 14px 0 !important;
  }

  .table-row span {
    min-width: 0 !important;
    white-space: normal !important;
  }

  .table-row span:nth-child(1) {
    display: none !important;
  }

  .table-row span:nth-child(2) {
    font-size: 14px !important;
    line-height: 1.32 !important;
    font-weight: 850 !important;
    color: var(--blue-950) !important;
  }

  .table-row span:nth-child(3),
  .table-row span:nth-child(4) {
    display: none !important;
  }

  .dashboard-table-card .tag {
    display: none !important;
  }

  .dashboard-side {
    display: none !important;
  }
}
