/* ══════════════════════════════════════════
   VARIABLES
══════════════════════════════════════════ */
:root {
  --bg: #04060f;
  --bg2: #080d1c;
  --bg3: #0c1225;
  --card: #0e1530;
  --border: #1a2545;
  --cyan: #00e5ff;
  --cyan2: #00b8d9;
  --lime: #a8ff3e;
  --text: #e8edf8;
  --muted: #7a8aaa;
  --accent: #ff4d6d;
  --gold: #ffc947;
  --radius: 12px;
  --radius-lg: 20px;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ══════════════════════════════════════════
   BACKGROUND
══════════════════════════════════════════ */
.bg-wrapper {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.bg-glow-1 {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 229, 255, 0.18) 0%,
    transparent 70%
  );
  top: -200px;
  left: -200px;
}
.bg-glow-2 {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 229, 255, 0.1) 0%,
    transparent 70%
  );
  bottom: 100px;
  right: -100px;
}
.bg-glow-3 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 229, 255, 0.07) 0%,
    transparent 70%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

main {
  position: relative;
  z-index: 1;
}

/* ══════════════════════════════════════════
/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  padding: 120px 24px 60px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 22px;
}
.hero-breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.hero-breadcrumb a:hover {
  color: var(--cyan);
}
.hero-breadcrumb span {
  color: rgba(255, 255, 255, 0.3);
}
.hero-breadcrumb .current {
  color: rgba(255, 255, 255, 0.6);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.3);
  border-radius: 100px;
  padding: 7px 20px;
  font-size: 0.75rem;
  font-family: "Poiret One", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan2);
  margin-bottom: 24px;
  animation: fadeDown 0.6s ease both;
}
.hero-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulse 1.6s ease infinite;
}

.hero-content h1 {
  font-family: "Poiret One", sans-serif;
  font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
  animation: fadeDown 0.6s 0.1s ease both;
}
.hero-content h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--cyan), var(--cyan2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 32px;
  animation: fadeDown 0.6s 0.2s ease both;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: fadeDown 0.6s 0.3s ease both;
}
.btn-hero-primary {
  padding: 14px 30px;
  border-radius: 12px;
  font-family: "Poiret One", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
  background: linear-gradient(135deg, var(--cyan), var(--cyan2));
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 6px 20px rgba(0, 229, 255, 0.35);
}
.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 229, 255, 0.5);
}
.btn-hero-outline {
  padding: 14px 30px;
  border-radius: 12px;
  font-family: "Poiret One", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
  transition: all 0.2s;
}
.btn-hero-outline:hover {
  background: rgba(0, 229, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--text);
}

/* Server panel */
.hero-visual {
  animation: fadeDown 0.6s 0.2s ease both;
}
.server-panel {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.server-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--cyan2),
    var(--cyan),
    var(--cyan2)
  );
}
.panel-title {
  font-family: "Poiret One", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 20px;
}
.metric-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 229, 255, 0.05);
  border-radius: 14px;
  padding: 16px;
}
.metric-label {
  font-size: 0.7rem;
  color: var(--muted);
  margin-bottom: 6px;
  font-family: "Poiret One", sans-serif;
  letter-spacing: 0.04em;
}
.metric-value {
  font-family: "Poiret One", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
}
.metric-value span {
  font-size: 0.8rem;
  color: var(--cyan);
  font-weight: 600;
}
.metric-bar {
  height: 4px;
  background: rgba(26, 37, 69, 0.8);
  border-radius: 2px;
  overflow: hidden;
}
.metric-fill {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--cyan2), var(--cyan));
  animation: growWidth 1.4s ease both;
}
.panel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.panel-tag {
  padding: 5px 12px;
  border-radius: 100px;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.2);
  font-size: 0.72rem;
  font-family: "Poiret One", sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--cyan2);
}

/* ══════════════════════════════════════════
   TRUST BAR
══════════════════════════════════════════ */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 32px;
  padding: 0 24px 60px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--muted);
}
.trust-item .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  opacity: 0.7;
}

/* ══════════════════════════════════════════
   FEATURE BLOCKS
══════════════════════════════════════════ */
.feature-block {
  padding: 0 24px 80px;
}
.feature-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.feature-inner.reverse {
  direction: rtl;
}
.feature-inner.reverse > * {
  direction: ltr;
}

.feature-eyebrow {
  display: inline-block;
  font-family: "Poiret One", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
}
.feature-inner h2 {
  font-family: "Poiret One", sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.feature-inner h2 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--cyan), var(--cyan2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.feature-inner p {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.feature-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}
.chk {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 8px;
  background: rgba(0, 229, 255, 0.12);
  border: 1px solid rgba(0, 229, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--cyan);
}

.feature-card-visual {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.feature-card-visual::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--cyan2),
    var(--cyan),
    var(--cyan2)
  );
}
.feature-card-title {
  font-family: "Poiret One", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

/* Ticket cards */
.ticket-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(26, 37, 69, 0.8);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 12px;
}
.ticket-card:last-child {
  margin-bottom: 0;
}
.ticket-card.active {
  background: rgba(0, 229, 255, 0.05);
  border-color: rgba(0, 229, 255, 0.18);
}
.ticket-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.ticket-id {
  font-family: "Poiret One", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.ticket-badge-ok {
  font-size: 0.72rem;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.25);
  color: #4ade80;
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 600;
}
.ticket-badge-active {
  font-size: 0.72rem;
  background: rgba(0, 229, 255, 0.15);
  border: 1px solid rgba(0, 229, 255, 0.3);
  color: var(--cyan2);
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 600;
  animation: blink 1.5s ease infinite;
}
.ticket-issue {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
}
.ticket-meta {
  font-size: 0.75rem;
  color: var(--muted);
}
.ticket-meta strong {
  color: var(--cyan);
}

/* Especialización */
.support-spec-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sup-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(26, 37, 69, 0.8);
  transition:
    border-color 0.25s,
    background 0.25s;
}
.sup-card:hover {
  border-color: rgba(0, 229, 255, 0.22);
  background: rgba(0, 229, 255, 0.04);
}
.sup-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.sup-title {
  font-family: "Poiret One", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.sup-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
}

/* Filas de nivel */
.level-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 229, 255, 0.05);
  border-radius: 10px;
}
.level-row:last-child {
  margin-bottom: 0;
}
.level-label {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.8);
}
.level-val {
  font-size: 0.75rem;
  color: #4ade80;
  font-weight: 600;
  font-family: "Poiret One", sans-serif;
}

/* Barras de monitor */
.monitor-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  margin-bottom: 8px;
}
.monitor-bar-label span:first-child {
  color: var(--muted);
}
.monitor-bar-label .val-green {
  color: #4ade80;
  font-family: "Poiret One", sans-serif;
  font-weight: 700;
}
.monitor-bar-label .val-orange {
  color: var(--cyan);
  font-family: "Poiret One", sans-serif;
  font-weight: 700;
}
.monitor-bar-track {
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  margin-bottom: 16px;
}
.monitor-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--cyan2), var(--cyan));
  animation: growWidth 1.5s ease both;
}
.monitor-bar-fill.green {
  background: linear-gradient(90deg, #16a34a, #4ade80);
}
.monitor-callouts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 4px;
}
.monitor-callout {
  padding: 12px;
  border-radius: 10px;
  text-align: center;
}
.monitor-callout.green {
  background: rgba(74, 222, 128, 0.06);
  border: 1px solid rgba(74, 222, 128, 0.2);
}
.monitor-callout.orange {
  background: rgba(0, 229, 255, 0.06);
  border: 1px solid rgba(0, 229, 255, 0.18);
}
.monitor-callout-num {
  font-family: "Poiret One", sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
}
.monitor-callout.green .monitor-callout-num {
  color: #4ade80;
}
.monitor-callout.orange .monitor-callout-num {
  color: var(--cyan);
}
.monitor-callout-label {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 3px;
}

/* ══════════════════════════════════════════
   SECCIÓN WHY (Estadísticas)
══════════════════════════════════════════ */
.why-section {
  padding: 0 24px 80px;
}
.why-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-eyebrow {
  display: inline-block;
  font-family: "Poiret One", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
}
.why-inner h2 {
  font-family: "Poiret One", sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.why-inner p {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.8;
}
.why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 24px 20px;
  transition:
    border-color 0.25s,
    background 0.25s;
}
.stat-card:hover {
  border-color: rgba(0, 229, 255, 0.25);
  background: rgba(0, 229, 255, 0.04);
}
.stat-num {
  display: block;
  font-family: "Poiret One", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--cyan);
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ══════════════════════════════════════════
   CANALES DE ATENCIÓN
══════════════════════════════════════════ */
.section {
  padding: 0 24px 80px;
}
.section-header {
  text-align: center;
  margin-bottom: 40px;
}
.section-header h2 {
  font-family: "Poiret One", sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.section-header p {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.7;
}

.channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 18px;
}
.channel-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 28px 22px;
  text-align: center;
  transition:
    border-color 0.25s,
    transform 0.25s,
    background 0.25s;
}
.channel-card:hover {
  border-color: rgba(0, 229, 255, 0.28);
  background: rgba(0, 229, 255, 0.04);
  transform: translateY(-4px);
}
.channel-icon {
  display: block;
  font-size: 2rem;
  margin-bottom: 14px;
}
.channel-title {
  font-family: "Poiret One", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.channel-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ══════════════════════════════════════════
   SECCIÓN DIFERENCIADOR (Compromiso)
══════════════════════════════════════════ */
.diff-section {
  padding: 0 24px 80px;
}
.diff-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.diff-tag {
  display: inline-block;
  font-family: "Poiret One", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
}
.diff-inner h2 {
  font-family: "Poiret One", sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.diff-inner p {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.diff-highlight {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.25);
  border-radius: 16px;
  padding: 16px 22px;
  margin-top: 8px;
}
.diff-highlight-num {
  font-family: "Poiret One", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--cyan);
}
.diff-highlight-text {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.4;
  max-width: 200px;
}

/* Cards de compromiso */
.commit-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.commit-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(26, 37, 69, 0.8);
  transition:
    border-color 0.25s,
    background 0.25s;
}
.commit-card:hover {
  border-color: rgba(0, 229, 255, 0.22);
  background: rgba(0, 229, 255, 0.04);
}
.commit-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(0, 229, 255, 0.12);
  border: 1px solid rgba(0, 229, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poiret One", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--cyan);
}
.commit-text {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}
.commit-text strong {
  display: block;
  color: var(--text);
  font-weight: 700;
  margin-bottom: 3px;
  font-family: "Poiret One", sans-serif;
  font-size: 0.88rem;
}

/* Base de conocimiento */
.knowledge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}
.knowledge-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(26, 37, 69, 0.8);
  text-decoration: none;
  color: rgba(255, 255, 255, 0.78);
  transition:
    border-color 0.2s,
    background 0.2s,
    color 0.2s;
}
.knowledge-item:hover {
  border-color: rgba(0, 229, 255, 0.22);
  background: rgba(0, 229, 255, 0.05);
  color: var(--text);
}
.knowledge-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}
.knowledge-label {
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.3;
}

/* ══════════════════════════════════════════
   CTA FINAL
══════════════════════════════════════════ */
.cta-wrap {
  padding: 0 24px 80px;
}
.cta-bottom {
  max-width: 960px;
  margin: 0 auto;
  background: linear-gradient(135deg, #1a2545 0%, var(--cyan2) 50%, #3a6ea5 100%);
  border-radius: 28px;
  padding: 64px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-bottom::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-bottom h2 {
  font-family: "Poiret One", sans-serif;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 12px;
  position: relative;
}
.cta-bottom p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
  max-width: 460px;
  margin: 0 auto 32px;
  position: relative;
}
.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.btn-dark {
  display: inline-block;
  padding: 15px 34px;
  background: var(--bg);
  color: var(--text);
  border-radius: 14px;
  font-family: "Poiret One", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.25s;
}
.btn-dark:hover {
  background: #000d6b;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}
.btn-white {
  display: inline-block;
  padding: 15px 34px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  color: var(--text);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-family: "Poiret One", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.25s;
}
.btn-white:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════ */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.75);
  }
}
@keyframes growWidth {
  from {
    width: 0;
  }
  to {
    width: var(--w, 100%);
  }
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.55;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero,
  .feature-inner,
  .why-inner,
  .diff-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .feature-inner.reverse {
    direction: ltr;
  }
  .why-stats {
    grid-template-columns: 1fr 1fr;
  }
  .hero {
    padding-top: 100px;
  }
}
@media (max-width: 600px) {
  .why-stats {
    grid-template-columns: 1fr;
  }
  .cta-bottom {
    padding: 44px 24px;
  }
  .cta-btns {
    flex-direction: column;
  }
  .channels-grid {
    grid-template-columns: 1fr 1fr;
  }
}