:root {
  --navy: #0C1235;
  --navy-mid: #1E2B8C;
  --navy-light: #2A3BAD;
  --slate: #A8B8CC;
  --white: #FFFFFF;
  --off: #F4F6FB;
  --accent: #4F78FF;
  --accent-2: #00D4AA;
  --danger: #E24B4A;
  --warn: #FAC775;
  --text-primary: #0C1235;
  --text-secondary: #4A5580;
  --text-muted: #8A96B8;
  --border: #E2E6F4;
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: 'DM Sans', sans-serif;
  background: #fff;
  color: var(--text-primary);
  overflow-x: hidden
}

/* ── TYPOGRAPHY ── */
.display {
  font-family: 'Syne', sans-serif;
  font-weight: 800
}

.heading {
  font-family: 'Syne', sans-serif;
  font-weight: 700
}

.label-tag {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase
}

/* ── NAVBAR ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 5%;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(12, 18, 53, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none
}

.nav-logo-mark {
  width: 32px;
  height: 32px;
  background: var(--navy-mid);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center
}

.nav-logo-mark svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #A8B8CC;
  stroke-width: 2
}

.nav-logo-text {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  letter-spacing: .3px
}

.nav-logo-sub {
  font-size: 9px;
  color: var(--slate);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-top: -2px
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px
}

.nav-links a {
  font-size: 12px;
  color: rgba(255, 255, 255, .6);
  text-decoration: none;
  transition: color .2s;
  font-weight: 500
}

.nav-links a:hover {
  color: #fff
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px
}

.nav-cta {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 9px 20px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background .2s;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap
}

.nav-cta:hover {
  background: #3a63ff;
  color: #fff
}

.nav-cta-outline {
  background: transparent;
  color: #fff;
  border: 1px solid var(--accent);
  border-radius: 8px;
  padding: 9px 20px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all .2s;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap
}

.nav-cta-outline:hover {
  background: var(--accent);
  color: #fff
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 5% 60px
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(79, 120, 255, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(79, 120, 255, .06) 1px, transparent 1px);
  background-size: 48px 48px;
  z-index: 0
}

.hero-glow-1 {
  position: absolute;
  top: -100px;
  left: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 43, 140, .5) 0%, transparent 70%);
  z-index: 0
}

.hero-glow-2 {
  position: absolute;
  bottom: -100px;
  right: 5%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 120, 255, .15) 0%, transparent 70%);
  z-index: 0
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 580px
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(79, 120, 255, .12);
  border: 1px solid rgba(79, 120, 255, .25);
  border-radius: 20px;
  padding: 5px 14px;
  margin-bottom: 28px
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-2);
  animation: pulse 2s infinite
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .4
  }
}

.hero-badge span {
  font-size: 11px;
  color: rgba(255, 255, 255, .7);
  letter-spacing: 1px;
  text-transform: uppercase
}

.hero h1 {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: clamp(32px, 4.5vw, 52px);
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 20px;
}

.hero h1 .highlight {
  color: var(--accent);
  position: relative;
  font-weight: 700;
}

.hero p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 460px
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap
}

.btn-hero-primary {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px 28px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .2s;
  text-decoration: none
}

.btn-hero-primary:hover {
  background: #3a63ff;
  transform: translateY(-1px);
  color: #fff
}

.btn-hero-primary svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #fff;
  stroke-width: 2
}

.btn-hero-ghost {
  background: transparent;
  color: rgba(255, 255, 255, .7);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 10px;
  padding: 14px 24px;
  font-size: 13px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all .2s;
  text-decoration: none;
  display: inline-block
}

.btn-hero-ghost:hover {
  border-color: rgba(255, 255, 255, .5);
  color: #fff
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 52px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, .08)
}

.hero-stat-val {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: #fff
}

.hero-stat-lbl {
  font-size: 11px;
  color: var(--slate);
  margin-top: 2px
}

.hero-visual {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  width: 48%;
  z-index: 2
}

.hero-screen {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(4px)
}

.hero-screen-bar {
  background: rgba(255, 255, 255, .06);
  height: 36px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 6px
}

.hero-screen-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%
}

.hero-screen-content {
  padding: 16px
}

.mini-table-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 80px;
  gap: 8px;
  padding: 8px 10px;
  background: rgba(30, 43, 140, .6);
  border-radius: 6px;
  margin-bottom: 8px
}

.mini-th {
  font-size: 9px;
  color: rgba(255, 255, 255, .5);
  text-transform: uppercase;
  letter-spacing: .8px;
  font-weight: 500
}

.mini-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 80px;
  gap: 8px;
  padding: 9px 10px;
  border-radius: 6px;
  margin-bottom: 5px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .05);
  align-items: center
}

.mini-td {
  font-size: 10px;
  color: rgba(255, 255, 255, .7)
}

.mini-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 9px;
  font-weight: 500
}

.mini-badge.op {
  background: rgba(0, 212, 170, .15);
  color: #00D4AA
}

.mini-badge.pend {
  background: rgba(250, 199, 117, .15);
  color: #FAC775
}

.mini-badge.fuera {
  background: rgba(226, 75, 74, .15);
  color: #E24B4A
}

.mini-actions {
  display: flex;
  gap: 4px
}

.mini-action {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center
}

.mini-action.blue {
  background: rgba(79, 120, 255, .2)
}

.mini-action.green {
  background: rgba(0, 212, 170, .2)
}

.mini-action.amber {
  background: rgba(250, 199, 117, .2)
}

.mini-action.red {
  background: rgba(226, 75, 74, .2)
}

/* ── SECTIONS SHARED ── */
section {
  padding: 90px 5%
}

.section-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px
}

.section-label span {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--accent)
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 3vw, 36px);
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 14px
}

.section-title .accent {
  color: var(--navy-mid)
}

.section-sub {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 520px
}

.text-center {
  text-align: center
}

.mx-auto {
  margin-left: auto;
  margin-right: auto
}

/* ── WHY EMED ── */
.why {
  background: #fff
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 52px
}

.why-card {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  transition: all .25s;
  cursor: default
}

.why-card:hover {
  background: #fff;
  border-color: var(--navy-mid);
  box-shadow: 0 8px 32px rgba(30, 43, 140, .08);
  transform: translateY(-3px)
}

.why-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #4f78ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px
}

.why-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: white;
  stroke-width: 1.8
}

.why-card h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-primary);
  margin-bottom: 8px
}

.why-card p {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.6
}

/* ── MODULES ── */
.modules {
  background: var(--navy);
  position: relative;
  overflow: hidden
}

.modules::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(79, 120, 255, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(79, 120, 255, .04) 1px, transparent 1px);
  background-size: 40px 40px
}

.modules .section-label span {
  color: var(--accent-2)
}

.modules .section-label::before {
  background: var(--accent-2)
}

.modules .section-title {
  color: #fff
}

.modules .section-sub {
  color: var(--slate)
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 52px;
  position: relative;
  z-index: 1
}

.mod-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: all .25s
}

.mod-card:hover {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(79, 120, 255, .3)
}

.mod-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center
}

.mod-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke-width: 1.8
}

.mod-icon.blue {
  background: rgba(79, 120, 255, .15)
}

.mod-icon.blue svg {
  stroke: #4F78FF
}

.mod-icon.teal {
  background: rgba(0, 212, 170, .12)
}

.mod-icon.teal svg {
  stroke: #00D4AA
}

.mod-icon.amber {
  background: rgba(250, 199, 117, .12)
}

.mod-icon.amber svg {
  stroke: #FAC775
}

.mod-icon.slate {
  background: rgba(168, 184, 204, .1)
}

.mod-icon.slate svg {
  stroke: #A8B8CC
}

.mod-card h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  margin-bottom: 6px
}

.mod-card p {
  font-size: 12px;
  color: var(--slate);
  line-height: 1.6
}

/* ── BENEFITS ── */
.benefits {
  background: #fff
}

.benefits-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 52px
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start
}

.benefit-check {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(30, 43, 140, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px
}

.benefit-check svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: var(--navy-mid);
  stroke-width: 2.5
}

.benefit-item h5 {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-primary);
  margin-bottom: 4px
}

.benefit-item p {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.6
}

.benefits-visual {
  background: var(--off);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  padding: 28px
}

.screen-mock {
  background: #F4F7FB;
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.02);
}

.mock-kpi-grid,
.mock-chart-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.mock-card {
  background: #fff;
  border-radius: 8px;
  padding: 12px;
  box-shadow: 0 2px 8px rgba(30, 43, 140, 0.04);
  position: relative;
  overflow: hidden;
}

.mock-border-blue {
  border-top: 3px solid #4F78FF;
}

.mock-border-green {
  border-top: 3px solid #00D4AA;
}

.mock-border-red {
  border-top: 3px solid #E24B4A;
}

.mock-border-amber {
  border-top: 3px solid #FAC775;
}

.mock-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.mock-title {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-secondary);
}

.mock-icon {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-icon svg {
  width: 10px;
  height: 10px;
  fill: none;
  stroke-width: 2;
}

.mock-icon.blue {
  background: rgba(79, 120, 255, 0.1);
}

.mock-icon.blue svg {
  stroke: #4F78FF;
}

.mock-icon.green {
  background: rgba(0, 212, 170, 0.1);
}

.mock-icon.green svg {
  stroke: #00D4AA;
}

.mock-icon.red {
  background: rgba(226, 75, 74, 0.1);
}

.mock-icon.red svg {
  stroke: #E24B4A;
}

.mock-icon.amber {
  background: rgba(250, 199, 117, 0.1);
}

.mock-icon.amber svg {
  stroke: #FAC775;
}

.mock-value {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 4px;
}

.mock-sub {
  font-size: 9px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}

.donut-wrapper {
  width: 70px;
  margin: 10px auto 0;
}

.donut-chart {
  width: 100%;
  height: 100%;
}

.donut-text {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-anchor: middle;
}

/* ─── BENEFITS-VISUAL PREMIUM ANIMATIONS ─── */

/* 1. Floating + subtle scale breath on the whole panel */
@keyframes bv-float {

  0%,
  100% {
    transform: translateY(0px) rotate(-0.4deg);
  }

  50% {
    transform: translateY(-10px) rotate(0.4deg);
  }
}

/* 2. Rotating conic glow border */
@keyframes bv-glow-spin {
  from {
    --bv-angle: 0deg;
  }

  to {
    --bv-angle: 360deg;
  }
}

/* 3. Card stagger slide-up */
@keyframes bv-card-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* 4. Donut segment draw-in */
@keyframes bv-donut-draw {
  from {
    stroke-dashoffset: 100;
  }

  to {
    stroke-dashoffset: 0;
  }
}

/* 5. Shimmer sweep across screen-mock */
@keyframes bv-shimmer {
  0% {
    background-position: -400px 0;
  }

  100% {
    background-position: 400px 0;
  }
}

/* ── Apply float to benefits-visual ── */
.benefits-visual {
  background: var(--off);
  border-radius: 20px;
  overflow: visible !important;
  /* allow glow to escape slightly */
  border: 1px solid var(--border);
  padding: 28px;
  animation: bv-float 6s ease-in-out infinite;
  position: relative;
  /* soft ambient shadow that breathes with the float */
  box-shadow:
    0 8px 32px rgba(79, 120, 255, .10),
    0 2px 8px rgba(79, 120, 255, .06);
  transition: box-shadow .3s;
}

.benefits-visual:hover {
  box-shadow:
    0 20px 56px rgba(79, 120, 255, .18),
    0 4px 16px rgba(79, 120, 255, .10);
  animation-play-state: paused;
  /* freeze float on hover for control */
}

/* Rotating glow ring via pseudo-element */
.benefits-visual::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  background: conic-gradient(from var(--bv-angle, 0deg),
      transparent 0%,
      rgba(79, 120, 255, .35) 20%,
      rgba(0, 212, 170, .25) 40%,
      transparent 60%);
  animation: bv-glow-spin 4s linear infinite;
  z-index: -1;
  opacity: .7;
}

@property --bv-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

/* ── screen-mock shimmer overlay ── */
.screen-mock {
  position: relative;
  overflow: hidden;
}

.screen-mock::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      transparent 40%,
      rgba(255, 255, 255, .45) 50%,
      transparent 60%);
  background-size: 400px 100%;
  animation: bv-shimmer 3.5s ease-in-out infinite;
  pointer-events: none;
  border-radius: 12px;
}

/* ── Card stagger-in ── */
.mock-card {
  animation: bv-card-in .5s cubic-bezier(.22, .68, 0, 1.2) both;
}

.mock-kpi-grid .mock-card:nth-child(1) {
  animation-delay: .08s;
}

.mock-kpi-grid .mock-card:nth-child(2) {
  animation-delay: .16s;
}

.mock-kpi-grid .mock-card:nth-child(3) {
  animation-delay: .24s;
}

.mock-kpi-grid .mock-card:nth-child(4) {
  animation-delay: .32s;
}

.mock-chart-grid .mock-card:nth-child(1) {
  animation-delay: .40s;
}

.mock-chart-grid .mock-card:nth-child(2) {
  animation-delay: .48s;
}

/* ── Subtle card hover lift ── */
.mock-card {
  transition: transform .25s ease, box-shadow .25s ease;
}

.mock-card:hover {
  transform: translateY(-4px) scale(1.015);
  box-shadow: 0 10px 28px rgba(79, 120, 255, .12);
}

/* donut segments: initial state is set via HTML attribute; animation driven by JS inline style */
























/* ── NO-PAPER ── */
.nopaper {
  background: var(--off);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border)
}

.nopaper-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center
}

.nopaper-visual {
  display: flex;
  gap: 12px;
  flex-direction: column
}

.sheet {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all .3s
}

.sheet:first-child {
  opacity: .35;
  text-decoration: line-through;
  filter: blur(1px)
}

.sheet-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--off);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.sheet-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--text-muted);
  stroke-width: 1.8
}

.sheet-label {
  font-size: 12px;
  color: var(--text-secondary)
}

.sheet-sublabel {
  font-size: 10px;
  color: var(--text-muted)
}

.arrow-down {
  text-align: center;
  color: var(--text-muted);
  font-size: 18px;
  padding: 4px
}

.emed-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(30, 43, 140, .06);
  border: 1px solid rgba(30, 43, 140, .15);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 11px;
  color: var(--navy-mid);
  font-weight: 500
}

.emed-chip-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-2)
}

/* ── PANELS WRAP ── */
.panels-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px
}

/* ── PANEL BASE ── */
.panel-box {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .3s, box-shadow .3s;
  cursor: default
}

.panel-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(12, 18, 53, .12)
}

/* ── PANEL TAG ── */
.panel-tag {
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.panel-tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0
}

.panel-tag-text {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase
}

/* ══ DESPUÉS ══ */
.after-box {
  background: #f0f4fa;
  border-color: #d0d8ef
}

.after-tag {
  background: #1a237e
}

.after-tag .panel-tag-dot {
  background: #00D4AA
}

.after-tag .panel-tag-text {
  color: rgba(255, 255, 255, .7)
}

/* Titlebar app */
.app-titlebar {
  background: #0C1235;
  padding: 9px 14px;
  display: flex;
  align-items: center;
  gap: 8px
}

.app-brand {
  font-size: 12px;
  font-weight: 600;
  color: #fff
}

.app-sep {
  color: rgba(255, 255, 255, .2)
}

.app-page {
  font-size: 11px;
  color: rgba(255, 255, 255, .5);
  flex: 1
}

.app-live {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 9px;
  color: #00D4AA;
  font-weight: 500
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00D4AA;
  flex-shrink: 0
}

/* KPIs */
.dash-body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.mini-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px
}

.mini-kpi {
  background: #fff;
  border: 0.5px solid var(--border);
  border-radius: 9px;
  padding: 9px 10px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  position: relative;
  overflow: hidden;
  transition: transform .2s, border-color .2s
}

.mini-kpi:hover {
  transform: translateY(-2px);
  border-color: #1E2B8C
}

.mini-kpi::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 2px 2px 0 0
}

.mkb::before {
  background: #1E2B8C
}

.mkg::before {
  background: #1a6640
}

.mkr::before {
  background: #A32D2D
}

.mka::before {
  background: #854F0B
}

.mk-lbl {
  font-size: 8px;
  color: #8A96B8;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .5px
}

.mk-num {
  font-size: 20px;
  font-weight: 500;
  color: #0C1235;
  line-height: 1
}

.mk-tag {
  font-size: 8px;
  padding: 2px 6px;
  border-radius: 8px;
  width: fit-content;
  font-weight: 500
}

.mtb {
  background: #eef1fa;
  color: #1E2B8C
}

.mtg {
  background: #EAF3DE;
  color: #27500A
}

.mtr {
  background: #FCEBEB;
  color: #791F1F
}

.mta {
  background: #FAEEDA;
  color: #633806
}

/* Pulse chart */
.pulse-area {
  background: #fff;
  border: 0.5px solid var(--border);
  border-radius: 9px;
  padding: 10px 12px
}

.pulse-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px
}

.pulse-title {
  font-size: 9px;
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: .7px
}

.pulse-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #EAF3DE;
  border-radius: 20px;
  padding: 2px 8px;
  font-size: 8px;
  color: #27500A;
  font-weight: 500
}

.pulse-badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #27500A
}

.pulse-canvas {
  height: 42px;
  position: relative;
  overflow: hidden
}

.pulse-svg {
  width: 100%;
  height: 100%
}

/* Mini table */
.mini-table {
  background: #fff;
  border: 0.5px solid var(--border);
  border-radius: 9px;
  overflow: hidden
}

.mt-head {
  background: #1E2B8C;
  display: grid;
  grid-template-columns: 1.6fr .8fr .95fr .85fr .65fr;
  padding: 5px 10px
}

.mt-th {
  font-size: 7.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, .6);
  letter-spacing: .07em;
  text-transform: uppercase
}

.mt-row {
  display: grid;
  grid-template-columns: 1.6fr .8fr .95fr .85fr .65fr;
  padding: 5px 10px;
  border-bottom: 0.5px solid #f1f5f9;
  align-items: center;
  transition: background .15s, transform .15s
}

.mt-row:last-child {
  border-bottom: none
}

.mt-row:hover {
  background: #f0f4fb;
  transform: translateX(2px)
}

.mt-td {
  font-size: 8px;
  color: #4a5578
}

.mt-b {
  font-weight: 500;
  color: #0C1235
}

.mt-d {
  font-weight: 500
}

.mt-d.warn {
  color: #854F0B
}

.mt-d.ok {
  color: #27500A
}

.sb {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 2px 7px;
  border-radius: 8px;
  font-size: 7.5px;
  font-weight: 500
}

.sbg {
  background: #EAF3DE;
  color: #27500A;
  border: 0.5px solid #C0DD97
}

.sba {
  background: #FAEEDA;
  color: #633806;
  border: 0.5px solid #FAC775
}

.sbr {
  background: #FCEBEB;
  color: #791F1F;
  border: 0.5px solid #F7C1C1
}

.ais {
  display: flex;
  gap: 3px
}

.ai {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .15s
}

.ai:hover {
  transform: scale(1.2)
}

.ai i {
  font-size: 7px
}

.aib {
  background: #E6F1FB;
  color: #0C447C
}

.aig {
  background: #EAF3DE;
  color: #27500A
}

.aigr {
  background: #FAEEDA;
  color: #633806
}

.air {
  background: #FCEBEB;
  color: #791F1F
}

/* Footer panel */
.panel-footer {
  padding: 7px 12px 10px;
  display: flex;
  align-items: center;
  gap: 6px
}

.pf-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0
}

.pf-txt {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase
}

.pf-before .pf-dot {
  background: #ef4444
}

.pf-before .pf-txt {
  color: #888780
}

.pf-after .pf-dot {
  background: #00D4AA
}

.pf-after .pf-txt {
  color: #27500A
}

/* Animations */
@keyframes bpulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .5;
    transform: scale(.85)
  }
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: .6
  }

  100% {
    transform: scale(2.2);
    opacity: 0
  }
}

@keyframes drawLine {
  from {
    stroke-dashoffset: 600
  }

  to {
    stroke-dashoffset: 0
  }
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(6px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.live-dot {
  animation: bpulse 2s ease-in-out infinite
}

.after-tag .panel-tag-dot {
  animation: bpulse 2s ease-in-out infinite
}

.pf-after .pf-dot {
  animation: bpulse 2s ease-in-out infinite
}

.pulse-line {
  stroke-dasharray: 600;
  animation: drawLine 3s ease-in-out infinite alternate
}

.mt-row {
  animation: fadeSlideUp .4s ease both
}

.mt-row:nth-child(2) {
  animation-delay: .05s
}

.mt-row:nth-child(3) {
  animation-delay: .1s
}

.mt-row:nth-child(4) {
  animation-delay: .15s
}

.mt-row:nth-child(5) {
  animation-delay: .2s
}

/* Responsive */
@media(max-width:900px) {
  .nopaper-layout {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .panels-wrap {
    grid-template-columns: 1fr
  }
}

@media(max-width:520px) {
  .mini-kpis {
    grid-template-columns: repeat(2, 1fr)
  }

  .nopaper {
    padding: 52px 5%
  }
}



















/* ── CLOUD ── */
.cloud-section {
  background: var(--navy);
  position: relative;
  overflow: hidden
}

.cloud-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(79, 120, 255, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(79, 120, 255, .04) 1px, transparent 1px);
  background-size: 40px 40px
}

.cloud-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1
}

.cloud-section .section-title {
  color: #fff
}

.cloud-section .section-sub {
  color: var(--slate)
}

.cloud-section .section-label span {
  color: var(--accent-2)
}

.cloud-section .section-label::before {
  background: var(--accent-2)
}

.device-row {
  display: flex;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap
}

.device-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 30px;
  padding: 8px 16px;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  cursor: pointer;
}

.device-pill:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .3);
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, .2), 
              0 0 15px rgba(79, 120, 255, .15);
}

.device-pill svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: var(--slate);
  stroke-width: 1.8
}

.device-pill span {
  font-size: 11px;
  color: var(--slate)
}

/* ─── CLOUD-ART PREMIUM ANIMATIONS ─── */

/* Keyframes */
@keyframes ca-ring-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes ca-ring-spin-rev {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}

@keyframes ca-pulse-wave {
  0%   { transform: scale(1);   opacity: .5; }
  100% { transform: scale(1.9); opacity: 0;  }
}

@keyframes ca-core-glow {
  0%, 100% {
    box-shadow:
      0 0 0   0 rgba(79,120,255,.0),
      0 0 20px 6px rgba(79,120,255,.15),
      inset 0 0 20px rgba(30,43,140,.6);
  }
  50% {
    box-shadow:
      0 0 0  18px rgba(79,120,255,.0),
      0 0 40px 14px rgba(79,120,255,.28),
      inset 0 0 30px rgba(30,43,140,.9);
  }
}

@keyframes ca-orbit-float {
  0%, 100% { transform: translateY(0)   scale(1); }
  50%       { transform: translateY(-6px) scale(1.08); }
}

/* ── cloud-art wrapper ── */
.cloud-art {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Outer pulse wave rings (pseudo-elements on cloud-art) */
.cloud-art::before,
.cloud-art::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(79,120,255,.35);
  animation: ca-pulse-wave 3s ease-out infinite;
  pointer-events: none;
}

.cloud-art::before {
  width: 260px;
  height: 260px;
  animation-delay: 0s;
}

.cloud-art::after {
  width: 260px;
  height: 260px;
  animation-delay: 1.5s;
}

/* ── cloud-ring: slow clockwise rotation ── */
.cloud-ring {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 1px solid rgba(79,120,255,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: ca-ring-spin 18s linear infinite;
}

/* Inner ring counter-rotates to stay still visually */
.cloud-ring::before {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px dashed rgba(79,120,255,.18);
  animation: ca-ring-spin-rev 12s linear infinite;
}

/* ── cloud-core: glowing breathe pulse ── */
.cloud-core {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(30,43,140,.6);
  border: 1px solid rgba(79,120,255,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: ca-core-glow 3s ease-in-out infinite;
  /* counter-rotate so icon stays upright while ring spins */
  transform-origin: center center;
  will-change: box-shadow;
}

/* Counter-rotate core content so SVG stays upright */
.cloud-core svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: #A8B8CC;
  stroke-width: 1.5;
  animation: ca-ring-spin-rev 18s linear infinite;
}

/* ── cloud-orbit satellites: container only handles positioning ── */
.cloud-orbit {
  position: absolute;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cloud-orbit-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(79, 120, 255, .2);
  transition: background .3s, border-color .3s;
  /* Floating animation on the whole satellite */
  animation: ca-orbit-float 3s ease-in-out infinite;
}

.cloud-orbit-inner:hover {
  background: rgba(79, 120, 255, .18);
  border-color: rgba(79, 120, 255, .5);
}

/* Stagger float on each satellite */
.cloud-orbit:nth-child(2) .cloud-orbit-inner {
  animation-delay: 0s;
}

.cloud-orbit:nth-child(3) .cloud-orbit-inner {
  animation-delay: .75s;
}

.cloud-orbit:nth-child(4) .cloud-orbit-inner {
  animation-delay: 1.5s;
}

.cloud-orbit:nth-child(5) .cloud-orbit-inner {
  animation-delay: 2.25s;
}

.cloud-orbit svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--slate);
  stroke-width: 1.8;
  /* Counter-rotation on the icon to keep it upright */
  animation: ca-ring-spin-rev 18s linear infinite;
}

/* ── TESTIMONIALS ── */
.testimonials {
  background: #fff
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 52px
}

.testi-card {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  transition: all .25s
}

.testi-card:hover {
  border-color: var(--navy-mid);
  box-shadow: 0 8px 24px rgba(30, 43, 140, .06)
}

.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px
}

.testi-stars span {
  color: #FAC775;
  font-size: 13px
}

.testi-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 10px
}

.testi-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: var(--slate)
}

.testi-name {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-primary)
}

.testi-role {
  font-size: 10px;
  color: var(--text-muted)
}

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 80px 5%
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 32px 32px
}

.cta-banner h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 3.5vw, 40px);
  color: #fff;
  position: relative;
  z-index: 1;
  margin-bottom: 14px
}

.cta-banner p {
  font-size: 14px;
  color: rgba(255, 255, 255, .65);
  position: relative;
  z-index: 1;
  margin-bottom: 36px
}

.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  position: relative;
  z-index: 1;
  flex-wrap: wrap
}

.btn-cta-white {
  background: #fff;
  color: var(--navy-mid);
  border: none;
  border-radius: 10px;
  padding: 14px 28px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all .2s;
  text-decoration: none;
  display: inline-block
}

.btn-cta-white:hover {
  background: var(--off)
}

.btn-cta-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 10px;
  padding: 14px 24px;
  font-size: 13px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all .2s;
  text-decoration: none;
  display: inline-block
}

.btn-cta-outline:hover {
  border-color: rgba(255, 255, 255, .7)
}

/* ── CONTACT FORM ── */
.contact {
  background: #f8fbff;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  /* Grid pattern background */
  background-image: 
    linear-gradient(rgba(79, 120, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 120, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.contact-info h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 38px;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 20px;
}

.contact-info h3 .accent {
  color: var(--accent);
}

.contact-info p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 420px;
}

.contact-chip {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-chip-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(79, 120, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-chip-icon svg {
  width: 20px;
  height: 20px;
}

.contact-chip-content {
  display: flex;
  flex-direction: column;
}

.contact-chip-content strong {
  font-size: 14px;
  color: var(--navy);
  font-weight: 700;
}

.contact-chip-content span {
  font-size: 13px;
  color: var(--text-secondary);
}

.contact-social-proof {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
  font-size: 13px;
  color: var(--text-secondary);
}

.dot-green {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-2);
  display: inline-block;
}

.form-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(30, 43, 140, 0.08);
  position: relative;
  border: 1px solid var(--border);
}

/* Gradient top border */
.form-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 4px;
  background: linear-gradient(90deg, var(--navy-mid), var(--accent-2));
  border-radius: 20px 20px 0 0;
}

.form-header {
  margin-bottom: 28px;
}

.form-header h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-header p {
  font-size: 13px;
  color: var(--text-secondary);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy-mid);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
  background: #f4f7fb;
  border: 1px solid #e1e8f0;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 14px;
  color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  transition: all 0.2s;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #a8b8cc;
}

.form-group input:focus,
.form-group textarea:focus {
  background: #fff;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(79, 120, 255, 0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: none;
}

.btn-submit {
  width: 100%;
  background: var(--navy-mid);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 16px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'DM Sans', sans-serif;
  box-shadow: 0 4px 12px rgba(30, 43, 140, 0.2);
}

.btn-submit:hover {
  background: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 43, 140, 0.3);
}

.form-footer {
  text-align: center;
  margin-top: 20px;
}

.form-footer p {
  font-size: 12px;
  color: #a8b8cc;
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  padding: 40px 5% 24px
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.footer-brand p {
  font-size: 12px;
  color: var(--slate);
  line-height: 1.7;
  margin-top: 12px;
  max-width: 280px
}

.footer-col h5 {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: rgba(255, 255, 255, .5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px
}

.footer-col a {
  display: block;
  font-size: 12px;
  color: var(--slate);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color .2s
}

.footer-col a:hover {
  color: #fff
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px
}

.footer-copy {
  font-size: 11px;
  color: rgba(255, 255, 255, .3)
}

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

.social-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none
}

.social-btn:hover {
  background: rgba(255, 255, 255, .1)
}

.social-btn svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: var(--slate);
  stroke-width: 1.8
}

/* ── SCROLL ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0)
}

/* ── RESPONSIVE STYLES ── */
@media (max-width: 991px) {
  .hero-visual {
    display: none;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .modules-grid,
  .benefits-layout,
  .nopaper-layout,
  .cloud-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-layout .contact-info {
    order: -1;
    text-align: center;
  }

  .contact-info p {
    max-width: 100%;
  }

  .contact-chip {
    justify-content: center;
    text-align: left;
  }

  .contact-social-proof {
    justify-content: center;
    margin-top: 32px;
  }
}

@media (max-width: 768px) {
  nav {
    height: 56px;
    padding: 0 16px;
  }

  .nav-logo img {
    height: 28px !important;
  }

  .nav-links {
    display: none;
  }

  .nav-actions {
    gap: 8px;
  }

  .nav-cta,
  .nav-cta-outline {
    padding: 7px 14px;
    font-size: 11px;
  }

  .hero h1 {
    font-size: clamp(28px, 8vw, 40px);
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  /* Contact Responsive */
  .contact-info h3 {
    font-size: 30px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-card {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  nav {
    padding: 0 12px;
  }

  .nav-actions {
    gap: 6px;
  }

  .nav-cta,
  .nav-cta-outline {
    padding: 6px 10px;
    font-size: 10px;
  }

  .contact-info h3 {
    font-size: 26px;
  }

  .form-card {
    padding: 20px;
  }

  .form-header h4 {
    font-size: 18px;
  }
}

/* ── WHATSAPP BUTTON ── */
.whatsapp-ico {
  fill: white;
  width: 55px;
  height: 55px;
  padding: 0px;
  background-color: #4dc247;
  border-radius: 50%;
  /*box-shadow: 2px 2px 6px rgba(0,0,0,0.4);*/
  /* box-shadow: 2px 2px 11px rgba(0,0,0,0.7); */
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10;
  animation-name: pulse;
  animation-duration: 1.2s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    transform: scale(1);
  }

  80% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    transform: scale(1.05);
  }
}



.whatsapp {
  position: fixed;
  bottom: 10px;
  right: 10px;
  display: flex !important;
  flex-direction: column;
  align-items: flex-end;
  transition: all 0.3s ease;
  z-index: 16000160 !important;
}

p.whatsapptext {
  margin: 0;
  margin-bottom: 8px;
  text-align: center;
  background-color: #e1ffe9de;
  border-radius: 15px 5px 15px 5px;
  padding: 7px 7px 5px 7px;
  font-weight: bold;
  line-height: 1.2rem;
  font-size: 1rem;
  position: relative;
  word-wrap: break-word;
  max-width: 200px;
  color: #004303;
}

.whatsappclose {
  width: 100%;
  height: 1.7rem;
}

button.whatsappclose-button {
  background-color: #ffffff00;
  font-size: 1.3rem;
  cursor: pointer;
  color: #0000006b;
  transition: all 0.3s ease;
}

button.whatsappclose-button:hover {
  color: #000000;
}

body {
  overflow-x: hidden;
}



/* ── GRECAPTCHA ── */
.grecaptcha-badge {
  display: none !important;
}

/* ── PRICING SECTION ── */
.pricing {
  padding: 100px 5%;
  background: #f8fbff;
  position: relative;
  overflow: hidden;
}

.pricing-header {
  text-align: center;
  margin-bottom: 60px;
}

.pricing-header h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 42px;
  color: var(--navy);
  margin-bottom: 16px;
}

.pricing-header p {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(30, 43, 140, 0.08);
  border-color: var(--accent);
}

.pricing-card.featured {
  border: 2px solid var(--accent);
  box-shadow: 0 10px 30px rgba(79, 120, 255, 0.1);
}

.pricing-card.featured::before {
  content: 'MÁS VENDIDO';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: 20px;
  letter-spacing: 1px;
}

.pricing-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.pricing-card .price-tag {
  margin-bottom: 24px;
}

.pricing-card .price-val {
  font-size: 42px;
  font-weight: 800;
  color: var(--navy);
  font-family: 'Syne', sans-serif;
}

.pricing-card .price-curr {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

.pricing-card .price-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 32px;
  height: 60px; /* Force consistent height */
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13.5px;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.pricing-features li svg {
  width: 16px;
  height: 16px;
  color: var(--accent-2);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-features li.disabled {
  color: #a8b8cc;
  text-decoration: line-through;
}

.pricing-features li.disabled svg {
  color: #d1d9e2;
}

.btn-plan {
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s;
  display: block;
}

.btn-plan-outline {
  border: 1px solid var(--border);
  color: var(--navy);
}

.btn-plan-outline:hover {
  background: var(--off);
  border-color: var(--navy);
}

.btn-plan-primary {
  background: var(--navy-mid);
  color: #fff;
}

.btn-plan-primary:hover {
  background: var(--navy);
  transform: scale(1.02);
}

/* ── FAQS SECTION ── */
.faqs {
  padding: 100px 5%;
  background: #fff;
}

.faqs-header {
  text-align: center;
  margin-bottom: 60px;
}

.faqs-header h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 38px;
  color: var(--navy);
}

.faqs-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  margin-bottom: 8px;
}

.faq-question {
  width: 100%;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease-out;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Larger to accommodate content */
  padding-bottom: 24px;
}

.faq-icon {
  width: 20px;
  height: 20px;
  position: relative;
  transition: transform 0.3s;
  color: var(--accent);
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 2px;
}

.faq-icon::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  margin-top: -1px;
}

.faq-icon::after {
  width: 2px;
  height: 100%;
  top: 0;
  left: 50%;
  margin-left: -1px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* ── LEGAL SECTION ── */
.legal-content {
  padding: 100px 5%;
  background: #fff;
  line-height: 1.8;
  color: var(--text-primary);
}

.legal-container {
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2 {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  margin: 48px 0 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.legal-content h2::before {
  content: '';
  width: 4px;
  height: 24px;
  background: var(--accent);
  border-radius: 2px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  font-size: 16px;
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.legal-content ul {
  margin-bottom: 32px;
  padding-left: 20px;
}

.legal-content li {
  margin-bottom: 12px;
  position: relative;
  list-style: none;
  padding-left: 24px;
}

.legal-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--accent-2);
  border-radius: 50%;
}

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

/* ── RESPONSIVE PRICING ── */
@media (max-width: 991px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
}