/* =======================================================
   CAICAO — Landing Page Styles
   Version: 1.0.0
   Fuentes: Helvetica Neue, Helvetica, Arial (system font)
   Íconos: Font Awesome 6.5
======================================================= */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
section { scroll-margin-top: 68px; }

:root {
  --orange: #f76001;
  --orange-glow: rgba(247,96,1,0.35);
  --orange-faint: rgba(247,96,1,0.08);
  --bg: #020202;
  --bg2: #0a0a0a;
  --white: #ffffff;
  --muted: rgba(255,255,255,0.62);
  --border: rgba(255,255,255,0.1);
  --border-orange: rgba(247,96,1,0.25);
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  overflow-x: hidden;
}

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 68px;
  padding: 0 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(2,2,2,0.94);
  border-bottom: 1px solid rgba(247,96,1,0.4);
  z-index: 1000;
  backdrop-filter: blur(12px);
}
.logo img { height: 30px; width: auto; display: block; }
.navbar nav { display: flex; gap: 32px; }
.navbar nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}
.navbar nav a:hover,
.navbar nav a.active { color: var(--orange); }

/* ─── INGRESA HERO BUTTON ─── */
.button {
  border: none;
  color: #fff;
  background: #f76001;
  border-radius: 20px;
  font-family: inherit;
  font-size: 17px;
  padding: 0.6em 1.5em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  letter-spacing: 0.04em;
  font-weight: 700;
}
.button:hover {
  transform: scale(1.03);
  box-shadow: 0 0 12px rgba(247, 96, 1, 0.45);
}
.button:active { transform: scale(0.98); }
.button:focus,
.button:focus-visible {
  outline: none;
  box-shadow: 0 0 12px rgba(247, 96, 1, 0.45);
}

.navbar-cta {
  background: var(--orange);
  color: #fff !important;
  text-decoration: none;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 9px 22px;
  border-radius: 6px;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.navbar-cta:hover { background: #e05500; transform: translateY(-1px); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  padding: 80px 8% 60px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 50% at 72% 78%, rgba(247,96,1,0.20) 0%, transparent 70%),
    radial-gradient(ellipse 30% 40% at 30% 40%, rgba(255,255,255,0.03) 0%, transparent 60%),
    var(--bg);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 30% at 70% 100%, rgba(247,96,1,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; }
.hero-content h1 {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: clamp(52px, 6vw, 88px);
  line-height: 0.92;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero-content h1 span {
  color: var(--orange);
  font-weight: 900;
  display: block;
}
.hero-content p {
  margin-top: 26px;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
}
.hero-content p strong {
  color: var(--white);
  font-style: italic;
  font-weight: 400;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 38px;
  padding: 13px 36px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 999px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-primary:hover {
  transform: scale(1.04);
  box-shadow: 0 0 28px rgba(247,96,1,0.55);
}
.btn-primary:active { transform: scale(0.97); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 30px;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 999px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, box-shadow 0.2s;
}
.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
  box-shadow: 0 0 16px rgba(247,96,1,0.2);
}

.hero-image {
  position: relative;
  z-index: 2;
  overflow: visible;
  min-height: 100vh;
}
.hero-image img {
  width: 110%;
  max-width: none;
  transform: translateX(6%) translateY(-4%);
  filter: drop-shadow(0 0 50px rgba(247,96,1,0.3)) drop-shadow(0 0 100px rgba(247,96,1,0.12));
  animation: floatContainer 5s ease-in-out infinite;
}
@keyframes floatContainer {
  0%, 100% { transform: translateY(-52%); }
  50%       { transform: translateY(-55%); }
}

/* ─── SYSTEM SECTION ─── */
.system-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 120px 8%;
  background: var(--bg);
  gap: 80px;
}
.system-left { flex: 1; max-width: 520px; }
.eyebrow {
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.system-left h2 {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1;
  font-weight: 300;
  margin-top: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.system-left h2 span { color: var(--orange); font-weight: 900; }
.orange-line { width: 60px; height: 2px; background: var(--orange); margin: 28px 0; }
.system-left > p { color: var(--muted); line-height: 1.8; font-size: 17px; }
.system-buttons { display: flex; gap: 16px; margin-top: 44px; flex-wrap: wrap; }

/* system diagram placeholder */
.system-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.system-diagram {
  width: 100%;
  max-width: 720px;
  background: transparent;
  border: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.diagram-img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 720px;
  filter: drop-shadow(0 8px 40px rgba(247,96,1,0.15));
}
.diagram-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 40px;
  width: 100%;
}
.diag-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 90px; height: 90px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  font-size: 10px; font-weight: 900;
  letter-spacing: 1px;
  color: var(--bg);
  text-transform: uppercase;
  box-shadow: 0 0 50px rgba(247,96,1,0.5);
  z-index: 2;
}
.diag-node {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-orange);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  position: relative;
}
.diag-node i { display: block; color: var(--orange); font-size: 20px; margin-bottom: 10px; }
/* connecting lines */
.diag-connector {
  position: absolute;
  background: rgba(247,96,1,0.3);
}

/* ─── FEATURES BAR ─── */
.features-bar {
  background: var(--orange);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 44px 8%;
}
.feature-item {
  color: white;
  border-right: 1px solid rgba(255,255,255,0.3);
  padding: 0 32px;
}
.feature-item:first-child { padding-left: 0; }
.feature-item:last-child { border-right: none; }
.feature-item h3 { font-size: 22px; font-weight: 800; margin-bottom: 10px; }
.feature-item p { line-height: 1.6; font-size: 14px; opacity: 0.85; }

/* ─── STATS CARDS ─── */
.cards-section {
  padding: 100px 8%;
  text-align: center;
  background: var(--bg);
}
.cards-intro {
  max-width: 700px;
  margin: 0 auto 60px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}
.cards-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}
.cards-track {
  display: flex;
  gap: 20px;
  overflow: hidden;
  width: 100%;
  max-width: 1100px;
}
.card {
  flex: 0 0 calc(25% - 15px);
  min-height: 400px;
  background: linear-gradient(180deg, #111 0%, #040404 100%);
  border: 1px solid var(--border-orange);
  border-radius: 20px;
  padding: 40px 28px 36px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 0 40px rgba(247,96,1,0.1), inset 0 -30px 50px rgba(247,96,1,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 50px rgba(247,96,1,0.18);
}
.card.active {
  border-color: var(--orange);
  box-shadow: 0 0 50px rgba(247,96,1,0.25), inset 0 -30px 50px rgba(247,96,1,0.1);
}
.icon-circle {
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 1px solid rgba(247,96,1,0.5);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 32px;
  background: radial-gradient(circle, rgba(247,96,1,0.1) 0%, rgba(0,0,0,0.9) 70%);
  box-shadow: 0 0 20px rgba(247,96,1,0.3), inset 0 0 14px rgba(247,96,1,0.1);
}
.icon-circle i { color: var(--orange); font-size: 24px; }
.card .number {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 60px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 14px;
}
.card h3 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.5;
  margin-bottom: 18px;
  color: var(--white);
}
.card p { font-size: 12px; line-height: 1.7; color: #888; max-width: 175px; }

.arrow-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-orange);
  background: rgba(10,10,10,0.9);
  color: var(--orange);
  font-size: 18px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: 0.25s;
  flex-shrink: 0;
}
.arrow-btn:hover { background: var(--orange); color: var(--bg); border-color: var(--orange); }

/* ─── PLANS SECTION ─── */
/* ─── MODULE SELECTOR + PLANS SECTION ─── */
.plans-section {
  padding: 120px 8% 100px;
  background: var(--bg);
}
.plans-header { text-align: center; margin-bottom: 52px; }
.plans-header h2 {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  margin-top: 14px;
  font-size: clamp(42px, 4vw, 64px);
  line-height: 1.02;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.plans-header h2 span { color: var(--orange); }
.plans-header p { margin-top: 18px; color: var(--muted); font-size: 15px; }

/* ── Module tabs ── */
.module-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 auto 20px;
  max-width: 640px;
}
.module-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  color: rgba(255,255,255,0.5);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: none;
  transition: border-color 0.22s, background 0.22s, color 0.22s, box-shadow 0.22s, transform 0.22s;
  position: relative;
}
.module-tab:hover {
  border-color: rgba(247,96,1,0.35);
  color: rgba(255,255,255,0.8);
  background: rgba(247,96,1,0.04);
}
.module-tab.active {
  background: linear-gradient(135deg, rgba(247,96,1,0.18) 0%, rgba(247,96,1,0.06) 100%);
  border-color: var(--orange);
  color: var(--white);
  box-shadow: 0 0 28px rgba(247,96,1,0.18), inset 0 0 20px rgba(247,96,1,0.06);
  transform: translateY(-2px);
}
.module-tab .tab-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.4;
  transition: opacity 0.2s, background 0.2s;
}
.module-tab.active .tab-dot {
  background: var(--orange);
  opacity: 1;
  box-shadow: 0 0 8px rgba(247,96,1,0.8);
}
.module-tab .tab-coming {
  font-size: 8px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 2px 7px;
  color: rgba(255,255,255,0.35);
}
.module-tab.active .tab-coming { display: none; }

/* ── Module subtitle ── */
.module-subtitle {
  text-align: center;
  margin-bottom: 48px;
  min-height: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.module-subtitle h3 {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
}
.module-subtitle h3.visible { opacity: 1; transform: none; }
.module-subtitle p {
  font-size: 13px;
  color: var(--muted);
  opacity: 0;
  transition: opacity 0.3s 0.1s;
}
.module-subtitle p.visible { opacity: 1; }

/* ── Plans grid ── */
.plans-grid {
  max-width: 1120px;
  margin: 0 auto 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: stretch;
}

/* ── Plan card base ── */
.plan-card {
  padding: 32px 22px 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid var(--border);
  border-radius: 10px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  cursor: none;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.3s;
}
.plan-card:hover { border-color: rgba(247,96,1,0.3); box-shadow: 0 0 24px rgba(247,96,1,0.06); }

/* ── Selected state (only on click) ── */
.plan-card.selected {
  background: linear-gradient(160deg, #ff7a00 0%, #e85200 100%);
  color: var(--bg);
  transform: translateY(-12px);
  box-shadow: 0 24px 60px rgba(247,96,1,0.35);
  border-color: transparent;
}

/* ── Coming soon overlay ── */
.plan-card.locked {
  opacity: 0.45;
  pointer-events: none;
}
.plans-coming-overlay {
  display: none;
  max-width: 1120px;
  margin: -16px auto 32px;
  padding: 32px;
  border: 1px dashed rgba(247,96,1,0.25);
  border-radius: 10px;
  background: rgba(247,96,1,0.03);
  text-align: center;
}
.plans-coming-overlay.visible { display: block; }
.plans-coming-overlay h4 {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}
.plans-coming-overlay p { color: var(--muted); font-size: 13px; }

.badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: #040404;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
}
.plan-card.selected .badge {
  background: rgba(0,0,0,0.25);
  border-color: rgba(0,0,0,0.1);
}
.plan-icon {
  font-size: 20px;
  color: var(--orange);
  width: 48px; height: 48px;
  border: 1px solid var(--border-orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  transition: color 0.25s, border-color 0.25s;
}
.plan-card.selected .plan-icon { color: rgba(0,0,0,0.7); border-color: rgba(0,0,0,0.15); }
.plan-card h3 {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.25s;
}
.plan-card.selected h3 { color: rgba(0,0,0,0.85); }
.plan-card > p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
  transition: color 0.25s;
}
.plan-card.selected > p { color: rgba(0,0,0,0.65); font-weight: 600; }
.price {
  margin-top: 18px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.5px;
}
.price small { font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; opacity: 0.6; font-weight: 400; }
/* ── Plan note (price-per-RFC) ── */
.plan-note {
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
  transition: color 0.25s;
}
.plan-card.selected .plan-note { color: rgba(0,0,0,0.55); }

/* ── Collapsible details ── */
.plan-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}
.plan-card.selected .plan-details {
  max-height: 500px;
}

.plan-card ul {
  margin: 16px 0 14px;
  text-align: left;
  list-style: none;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1;
  color: rgba(0,0,0,0.82);
  border-top: 1px solid rgba(0,0,0,0.12);
  padding-top: 14px;
}
.plan-card li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.plan-card li::before { content: "✓"; font-size: 11px; font-weight: 800; flex-shrink: 0; }

/* ── Select button (default visible) ── */
.plan-btn {
  width: 100%;
  padding: 11px 16px;
  border-radius: 6px;
  border: 1px solid var(--border-orange);
  background: transparent;
  color: var(--white);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  cursor: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, border-color 0.2s, opacity 0.25s;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.plan-btn-select {
  margin-top: 18px;
}
.plan-btn-select .plan-chevron {
  transition: transform 0.35s ease;
}
.plan-card.selected .plan-btn-select .plan-chevron {
  transform: rotate(180deg);
}
.plan-btn:hover { background: var(--orange); border-color: var(--orange); box-shadow: 0 0 16px rgba(247,96,1,0.3); color: #fff; }

/* ── Contact button (inside details, on orange bg) ── */
.plan-btn-contact {
  background: rgba(0,0,0,0.18);
  color: #fff;
  border-color: rgba(0,0,0,0.1);
  margin-top: 4px;
}
.plan-btn-contact:hover {
  background: rgba(0,0,0,0.32) !important;
  border-color: rgba(0,0,0,0.2) !important;
  box-shadow: none !important;
}

/* ── Select button on orange card ── */
.plan-card.selected .plan-btn-select {
  background: rgba(0,0,0,0.15);
  color: #fff;
  border-color: rgba(0,0,0,0.1);
}
.plan-card.selected .plan-btn-select:hover {
  background: rgba(0,0,0,0.28);
  box-shadow: none;
}

/* ── Recommended box ── */
.recommended-box {
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px 32px;
  display: grid;
  grid-template-columns: 1.2fr 1.4fr auto;
  align-items: center;
  gap: 30px;
  background: rgba(247,96,1,0.04);
  border: 1px solid var(--border-orange);
  border-radius: 10px;
  box-shadow: 0 0 40px rgba(247,96,1,0.06);
  transition: opacity 0.35s, transform 0.35s;
}
.recommended-box.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}
.rec-left { display: flex; align-items: center; gap: 16px; }
.rec-icon {
  width: 50px; height: 50px;
  background: var(--orange);
  color: var(--bg);
  display: grid; place-items: center;
  border-radius: 50%;
  font-size: 20px;
  flex-shrink: 0;
}
.rec-left h4 { font-size: 15px; font-weight: 800; line-height: 1.45; }
.rec-left h4 span { color: var(--orange); }
.rec-left p, .rec-list p { color: var(--muted); font-size: 12px; line-height: 1.8; }
.rec-list i { color: var(--orange); margin-right: 8px; }
.rec-btn {
  padding: 14px 30px;
  background: var(--orange);
  color: var(--white);
  text-decoration: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  display: inline-flex; align-items: center; gap: 10px;
  transition: box-shadow 0.2s, transform 0.2s;
  border: none; cursor: none;
}
.rec-btn:hover { box-shadow: 0 0 22px rgba(247,96,1,0.45); transform: scale(1.03); }

/* ─── VALUES SECTION ─── */
.values-section {
  padding: 150px 8% 160px;
  background: var(--bg);
}
.values-header { text-align: center; max-width: 860px; margin: 0 auto; }
.values-header h2 {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  margin-top: 16px;
  font-size: clamp(52px, 5vw, 76px);
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.values-header h2 span { color: var(--orange); }
.section-line { width: 42px; height: 2px; background: var(--orange); margin: 28px auto; }
.values-header p { color: var(--muted); font-size: 15px; line-height: 1.8; }

.values-grid {
  margin-top: 100px;
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  align-items: start;
}
.value-divider { width: 1px; height: 280px; background: rgba(255,255,255,0.07); }
.value-card { text-align: center; padding: 0 50px; }
.icon-wrapper {
  width: 100px; height: 100px;
  margin: 0 auto 24px;
  border-radius: 50%;
  border: 1px solid rgba(247,96,1,0.15);
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle, rgba(247,96,1,0.06) 0%, transparent 70%);
}
.icon-wrapper i { font-size: 32px; color: var(--orange); }
.value-card h3 {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.mini-line { width: 34px; height: 2px; background: var(--orange); margin: 20px auto 24px; }
.value-card p { color: var(--muted); font-size: 15px; line-height: 1.9; max-width: 300px; margin: 0 auto; }

/* ─── FAQ SECTION ─── */
.faq-section {
  padding: 115px 8% 130px;
  background: var(--bg);
}
.faq-header { text-align: center; margin-bottom: 70px; }
.faq-header span { color: var(--orange); font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; }
.faq-header h2 {
  margin-top: 14px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: clamp(42px, 4.5vw, 68px);
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.faq-header h2 strong { color: var(--orange); font-weight: 900; }
.faq-header p { margin-top: 20px; color: var(--muted); font-size: 16px; }

.faq-list { max-width: 1060px; margin: 0 auto; }
.faq-item {
  min-height: 80px;
  display: grid;
  grid-template-columns: 48px 1px 1fr 44px;
  align-items: center;
  column-gap: 26px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: rgba(247,96,1,0.4); }
.faq-item.open { border-bottom: 2px solid var(--orange); }
.faq-number { color: var(--orange); font-size: 17px; font-weight: 900; }
.faq-divider { width: 1px; height: 28px; background: rgba(255,255,255,0.15); }
.faq-item h3 { color: rgba(255,255,255,0.9); font-size: 20px; font-weight: 700; }
.faq-symbol {
  color: var(--orange);
  font-size: 32px;
  font-weight: 300;
  text-align: right;
  transition: transform 0.3s;
  display: flex; align-items: center; justify-content: flex-end;
}
.faq-item.open .faq-symbol { transform: rotate(45deg); color: var(--white); }
.faq-answer {
  display: none;
  padding: 32px 0 38px 95px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.faq-answer.visible { display: block; }
.faq-answer p { max-width: 740px; color: var(--muted); font-size: 16px; line-height: 1.9; }

/* ─── CONTACT SECTION ─── */
.contact-section {
  padding: 120px 8%;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.contact-left h2 {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: clamp(44px, 4.5vw, 68px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 1px;
}
.contact-left h2 span { color: var(--orange); }
.contact-left p { margin-top: 22px; color: var(--muted); font-size: 16px; line-height: 1.8; }
.contact-details { margin-top: 40px; display: flex; flex-direction: column; gap: 16px; }
.contact-detail {
  display: flex; align-items: center; gap: 14px;
  color: rgba(255,255,255,0.8); font-size: 15px;
}
.contact-detail i { color: var(--orange); font-size: 18px; width: 22px; }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); }
.form-field input,
.form-field textarea,
.form-field select {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 13px 16px;
  color: var(--white);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(247,96,1,0.12);
}
.form-field textarea { resize: vertical; min-height: 100px; }

/* ─── FOOTER ─── */
footer {
  padding: 60px 8% 40px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
  gap: 40px;
  flex-wrap: wrap;
}
.footer-brand img { height: 28px; }
.footer-brand p { margin-top: 14px; color: var(--muted); font-size: 14px; line-height: 1.7; max-width: 280px; }
.footer-links h4 {
  font-size: 11px; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; color: var(--muted); margin-bottom: 16px;
}
.footer-links a {
  display: block; color: rgba(255,255,255,0.7); text-decoration: none;
  font-size: 14px; line-height: 2.2; transition: color 0.2s;
}
.footer-links a:hover { color: var(--orange); }
.footer-bottom {
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { color: var(--muted); font-size: 13px; }
.footer-socials { display: flex; gap: 16px; }
.footer-socials a {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  transition: border-color 0.2s, color 0.2s;
}
.footer-socials a:hover { border-color: var(--orange); color: var(--orange); }

/* ─── DEMOS SECTION ─── */
.demos-section {
  padding: 120px 8% 130px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.demos-header {
  text-align: center;
  margin-bottom: 60px;
}
.demos-header h2 {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: clamp(42px, 4.5vw, 68px);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 14px;
}
.demos-header h2 span { color: var(--orange); }
.demos-header p { margin-top: 18px; color: var(--muted); font-size: 15px; }

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

.demo-card {
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.demo-card:hover {
  border-color: var(--border-orange);
  box-shadow: 0 8px 40px rgba(247,96,1,0.15);
  transform: translateY(-4px);
}

/* thumbnail */
.demo-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #111;
  overflow: hidden;
}
.demo-thumb svg { width: 100%; height: 100%; display: block; }

/* play overlay */
.demo-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.25);
  transition: background 0.2s;
}
.demo-card:hover .demo-play { background: rgba(0,0,0,0.1); }
.play-circle {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(10,10,10,0.75);
  border: 2px solid rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(6px);
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
}
.demo-card:hover .play-circle {
  border-color: var(--orange);
  background: rgba(247,96,1,0.15);
  transform: scale(1.08);
}
.play-circle svg { width: 18px; height: 18px; margin-left: 3px; }

/* card body */
.demo-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.demo-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.demo-num {
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}
.demo-dash {
  width: 22px; height: 2px;
  background: var(--orange);
  flex-shrink: 0;
}
.demo-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.demo-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  padding-left: 0;
}
.demo-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
}
.demo-plus {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border-orange);
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  font-size: 20px;
  font-weight: 300;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  line-height: 1;
}
.demo-card:hover .demo-plus {
  background: rgba(247,96,1,0.12);
  transform: rotate(45deg);
}

/* modal overlay */
.demo-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
}
.demo-modal-overlay.open { display: flex; }
.demo-modal {
  background: #0f0f0f;
  border: 1px solid var(--border-orange);
  border-radius: 16px;
  width: min(90vw, 820px);
  max-height: 90vh;
  overflow-y: auto;
  animation: modalIn 0.28s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.92) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}
.modal-thumb svg { width: 100%; height: 100%; display: block; }
.modal-play-big {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.35);
}
.modal-play-big .play-circle { width: 72px; height: 72px; }
.modal-play-big .play-circle svg { width: 26px; height: 26px; }
.modal-body { padding: 32px 36px 36px; }
.modal-num { color: var(--orange); font-size: 13px; font-weight: 900; letter-spacing: 1px; }
.modal-title {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 32px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  margin: 8px 0 16px;
}
.modal-desc { color: var(--muted); font-size: 16px; line-height: 1.9; }
.modal-close {
  position: absolute; top: 16px; right: 20px;
  background: rgba(0,0,0,0.6);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 18px; cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  z-index: 10;
}
.modal-close:hover { border-color: var(--orange); color: var(--orange); }
.demo-modal { position: relative; }

/* ─── RESPONSIVE DEMOS ─── */
@media (max-width: 900px) {
  .demos-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .demos-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════
   ─── SCROLL REVEAL ───
══════════════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1),
              transform 0.75s cubic-bezier(0.16,1,0.3,1);
  will-change: opacity, transform;
}
[data-reveal="up"]    { transform: translateY(48px); }
[data-reveal="left"]  { transform: translateX(48px); }
[data-reveal="right"] { transform: translateX(-48px); }
[data-reveal="scale"] { transform: scale(0.88); }
[data-reveal="fade"]  { transform: none; }
[data-reveal].revealed {
  opacity: 1 !important;
  transform: none !important;
}
/* stagger children */
[data-stagger] > * {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1),
              transform 0.65s cubic-bezier(0.16,1,0.3,1);
}
[data-stagger].staggered > *:nth-child(1) { transition-delay: 0.05s; }
[data-stagger].staggered > *:nth-child(2) { transition-delay: 0.13s; }
[data-stagger].staggered > *:nth-child(3) { transition-delay: 0.21s; }
[data-stagger].staggered > *:nth-child(4) { transition-delay: 0.29s; }
[data-stagger].staggered > *:nth-child(5) { transition-delay: 0.37s; }
[data-stagger].staggered > *:nth-child(6) { transition-delay: 0.45s; }
[data-stagger].staggered > * { opacity: 1; transform: none; }

/* ══════════════════════════════════════
   ─── CUSTOM SCROLLBAR ───
══════════════════════════════════════ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(247,96,1,0.4); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--orange); }

/* ══════════════════════════════════════
   ─── CUSTOM CURSOR ───
══════════════════════════════════════ */
@media (pointer: fine) {
  html, body { cursor: none; }
  a, button, [role="button"], .demo-card, .faq-item, .plan-card { cursor: none; }
}
#cursor-dot {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.06s linear, width 0.2s, height 0.2s, background 0.2s;
  display: none;
}
#cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(247,96,1,0.6);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: transform 0.18s cubic-bezier(0.16,1,0.3,1),
              width 0.3s, height 0.3s, border-color 0.2s, opacity 0.3s;
  display: none;
}
@media (pointer: fine) {
  #cursor-dot, #cursor-ring { display: block; }
}
body.cursor-hover #cursor-ring {
  width: 56px; height: 56px;
  border-color: var(--orange);
  background: rgba(247,96,1,0.06);
}
body.cursor-hover #cursor-dot { background: var(--white); }

/* ══════════════════════════════════════
   ─── GRAIN OVERLAY ───
══════════════════════════════════════ */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9997;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
}

/* ══════════════════════════════════════
   ─── SOCIAL PROOF STRIP ───
══════════════════════════════════════ */
.trust-strip {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 8%;
  overflow: hidden;
}
.trust-label {
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 28px;
}
.trust-marquee-wrap {
  position: relative;
  overflow: hidden;
}
.trust-marquee-wrap::before,
.trust-marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.trust-marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--bg2), transparent);
}
.trust-marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--bg2), transparent);
}
.trust-marquee {
  display: flex;
  gap: 0;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.trust-marquee:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.trust-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 48px;
  opacity: 0.35;
  transition: opacity 0.3s;
  flex-shrink: 0;
}
.trust-logo:hover { opacity: 0.75; }
.trust-logo svg { height: 26px; width: auto; display: block; }

/* ══════════════════════════════════════
   ─── TESTIMONIALS SECTION ───
══════════════════════════════════════ */
.testimonials-section {
  padding: 130px 8% 140px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse at 50% 0%, rgba(247,96,1,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 72px;
}
.testimonials-header h2 {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: clamp(44px, 4.5vw, 70px);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 14px;
}
.testimonials-header h2 span { color: var(--orange); }
.testimonials-header p { margin-top: 18px; color: var(--muted); font-size: 15px; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
}
.testi-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.032) 0%, rgba(255,255,255,0.008) 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px 32px;
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.testi-card:hover {
  border-color: var(--border-orange);
  box-shadow: 0 12px 50px rgba(247,96,1,0.1);
  transform: translateY(-4px);
}
.testi-card.featured {
  background: linear-gradient(145deg, rgba(247,96,1,0.08) 0%, rgba(247,96,1,0.02) 100%);
  border-color: var(--border-orange);
  box-shadow: 0 0 60px rgba(247,96,1,0.08);
}
.testi-quote-mark {
  position: absolute;
  top: 24px; right: 28px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 80px;
  line-height: 1;
  color: rgba(247,96,1,0.12);
  font-weight: 900;
  pointer-events: none;
  user-select: none;
}
.testi-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 22px;
}
.testi-stars i { color: var(--orange); font-size: 13px; }
.testi-text {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(255,255,255,0.82);
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.testi-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(247,96,1,0.3) 0%, rgba(247,96,1,0.1) 100%);
  border: 1px solid var(--border-orange);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 900;
  color: var(--orange);
  flex-shrink: 0;
}
.testi-info h4 {
  font-size: 14px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
}
.testi-info span {
  font-size: 12px;
  color: var(--muted);
}
.testi-badge {
  margin-left: auto;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(247,96,1,0.1);
  border: 1px solid var(--border-orange);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--orange);
  text-transform: uppercase;
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   ─── WHATSAPP BUTTON ───
══════════════════════════════════════ */
.wa-fab {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 9000;
  display: flex;
  align-items: center;
  gap: 0;
  border-radius: 999px;
  overflow: hidden;
  filter: drop-shadow(0 8px 28px rgba(37,211,102,0.35));
  transition: filter 0.3s;
}
.wa-fab:hover { filter: drop-shadow(0 12px 36px rgba(37,211,102,0.5)); }
.wa-bubble {
  display: flex;
  align-items: center;
  background: #25D366;
  border-radius: 999px;
  overflow: hidden;
  transition: padding-right 0.35s cubic-bezier(0.34,1.56,0.64,1);
  padding: 14px 14px;
  cursor: none;
}
.wa-fab:hover .wa-bubble {
  padding-right: 20px;
}
.wa-icon {
  width: 30px; height: 30px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.wa-text {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.3px;
  transition: max-width 0.35s cubic-bezier(0.34,1.56,0.64,1),
              margin-left 0.35s;
  margin-left: 0;
}
.wa-fab:hover .wa-text { max-width: 160px; margin-left: 10px; }
/* pulse rings */
.wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  pointer-events: none;
}
.wa-pulse::before,
.wa-pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  border: 2px solid rgba(37,211,102,0.4);
  animation: waPulse 2.2s ease-out infinite;
}
.wa-pulse::after { animation-delay: 1.1s; }
@keyframes waPulse {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.55); opacity: 0; }
}
/* notification dot */
.wa-dot {
  position: absolute;
  top: 6px; right: 6px;
  width: 10px; height: 10px;
  background: #ff4444;
  border-radius: 50%;
  border: 2px solid var(--bg);
  animation: waDot 2s ease-in-out infinite;
}
@keyframes waDot {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}

/* ══════════════════════════════════════
   ─── HAMBURGER MENU ───
══════════════════════════════════════ */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: none;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, background 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--orange); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--orange); }

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(2,2,2,0.97);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: clamp(36px, 8vw, 56px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  text-decoration: none;
  line-height: 1.2;
  transition: color 0.2s, transform 0.2s;
  opacity: 0;
  transform: translateY(20px);
}
.mobile-nav.open a {
  opacity: 1;
  transform: none;
}
.mobile-nav.open a:nth-child(1) { transition: color 0.2s, opacity 0.4s 0.05s, transform 0.4s 0.05s; }
.mobile-nav.open a:nth-child(2) { transition: color 0.2s, opacity 0.4s 0.12s, transform 0.4s 0.12s; }
.mobile-nav.open a:nth-child(3) { transition: color 0.2s, opacity 0.4s 0.19s, transform 0.4s 0.19s; }
.mobile-nav.open a:nth-child(4) { transition: color 0.2s, opacity 0.4s 0.26s, transform 0.4s 0.26s; }
.mobile-nav.open a:nth-child(5) { transition: color 0.2s, opacity 0.4s 0.33s, transform 0.4s 0.33s; }
.mobile-nav a:hover { color: var(--orange); transform: translateX(8px); }
.mobile-nav-bottom {
  position: absolute;
  bottom: 40px;
  display: flex;
  gap: 24px;
}
.mobile-nav-bottom a {
  font-size: 13px !important;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  opacity: 0.4 !important;
  transform: none !important;
}
.mobile-nav-bottom a:hover { opacity: 0.8 !important; color: var(--orange) !important; }

/* ══════════════════════════════════════
   ─── COUNTER ANIMATION ───
══════════════════════════════════════ */
.number[data-target] { display: block; }

/* ══════════════════════════════════════
   ─── PAGE LOAD ANIMATION ───
══════════════════════════════════════ */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: opacity 0.6s ease 0.3s;
}
.page-loader.done { opacity: 0; }
.loader-logo {
  animation: loaderPulse 0.9s ease-in-out infinite alternate;
}
@keyframes loaderPulse {
  from { opacity: 0.3; transform: scale(0.96); }
  to   { opacity: 1;   transform: scale(1); }
}

/* ══════════════════════════════════════
   ─── RESPONSIVE OVERHAUL ───
══════════════════════════════════════ */
/* ─── RESPONSIVE OVERHAUL ─── */
@media (max-width: 1100px) {
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
  .recommended-box { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; gap: 60px; }
  .value-divider { display: none; }
  .value-card { padding: 0; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 960px) {
  .navbar nav { display: none; }
  .hamburger { display: flex; }
  .hero { grid-template-columns: 1fr; padding-top: 110px; text-align: left; min-height: auto; padding-bottom: 80px; }
  .hero-image { display: none; }
  .system-section { flex-direction: column; padding: 80px 8%; text-align: center; }
  .orange-line { margin: 24px auto; }
  .system-buttons { justify-content: center; }
  .features-bar { grid-template-columns: 1fr 1fr; padding: 40px 8%; }
  .contact-inner { grid-template-columns: 1fr; gap: 50px; }
  .demos-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .demos-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .features-bar { grid-template-columns: 1fr; }
  .feature-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); padding: 0 0 24px; }
  .feature-item:last-child { border-bottom: none; }
  .plans-grid { grid-template-columns: 1fr; }
  .plan-card.selected { transform: none; }
  .module-tabs { gap: 8px; }
  .module-tab { padding: 11px 18px; font-size: 16px; }
  .form-row { grid-template-columns: 1fr; }
  .cards-track { gap: 12px; }
  .arrow-btn { display: none; }
  .card { flex: 0 0 85vw; }
  .demos-grid { grid-template-columns: 1fr; }
  .faq-item h3 { font-size: 15px; }
  .testi-card { padding: 28px 22px 24px; }
}
@media (max-width: 540px) {
  .navbar { padding: 0 5%; height: 60px; }
  .hero { padding: 88px 5% 60px; }
  .system-section { padding: 70px 5%; }
  .cards-section { padding: 70px 5%; }
  .plans-section { padding: 80px 5% 70px; }
  .values-section { padding: 80px 5% 90px; }
  .faq-section { padding: 70px 5% 80px; }
  .contact-section { padding: 70px 5%; }
  .testimonials-section { padding: 80px 5% 90px; }
  .demos-section { padding: 80px 5% 90px; }
  .wa-fab { bottom: 20px; right: 20px; }
  .faq-item { grid-template-columns: 36px 1px 1fr 36px; column-gap: 14px; }
  .faq-answer { padding-left: 50px; }
}

/* Inlined SVG sizing */
.logo-svg {
  height: 30px;
  width: auto;
  display: block;
}
.container-svg {
  width: 175vw;
  max-width: none;
  position: absolute;
  right: -60vw;
  top: 50%;
  transform: translateY(-52%);
  filter: drop-shadow(0 0 60px rgba(247,96,1,0.38)) drop-shadow(0 0 130px rgba(247,96,1,0.18));
  animation: floatContainer 5s ease-in-out infinite;
}
.footer-brand .logo-svg {
  height: 28px;
}



/* ─── BUTTONS — uiverse.io by niat786 ─── */
button,
a.btn-primary,
a.btn-ghost,
a.rec-btn {
  border: none;
  color: #fff;
  background: #f76001;
  border-radius: 20px;
  font-family: inherit;
  font-size: 17px;
  padding: 0.6em 1.5em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
button:hover,
a.btn-primary:hover,
a.rec-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 0 12px rgba(247, 96, 1, 0.45);
}
button:active,
a.btn-primary:active,
a.btn-ghost:active,
a.rec-btn:active {
  transform: scale(0.98);
}
button:focus, button:focus-visible,
a.btn-primary:focus, a.btn-primary:focus-visible,
a.btn-ghost:focus, a.btn-ghost:focus-visible,
a.rec-btn:focus, a.rec-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 12px rgba(247, 96, 1, 0.45);
}
/* Ghost stays transparent */
a.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
}
a.btn-ghost:hover {
  background: transparent;
  border-color: #f76001;
  color: #f76001;
  box-shadow: 0 0 12px rgba(247, 96, 1, 0.45);
}
/* Arrow carousel buttons stay circular */
.arrow-btn {
  background: rgba(10,10,10,0.9) !important;
  border: 1px solid rgba(247,96,1,0.25) !important;
  color: #f76001 !important;
  border-radius: 50% !important;
  width: 44px !important;
  height: 44px !important;
  padding: 0 !important;
  font-size: 18px !important;
}
.arrow-btn:hover {
  background: #f76001 !important;
  color: #020202 !important;
}
/* Plan buttons */
.plan-btn-select {
  border-radius: 6px;
  font-size: 12px;
}
.plan-card.selected .plan-btn-select {
  background: rgba(0,0,0,0.15) !important;
  color: #fff !important;
  border-color: rgba(0,0,0,0.1) !important;
}
.plan-card.selected .plan-btn-select:hover {
  background: rgba(0,0,0,0.28) !important;
  box-shadow: none;
}