/* ===== Variables ===== */
:root {
  --blue: #005eb8;
  --blue-light: #1a7fd4;
  --blue-glow: rgba(0, 94, 184, 0.35);
  --gold: #c9920a;
  --gold-light: #f0c14b;
  --gold-glow: rgba(201, 146, 10, 0.35);
  --grey: #6c757d;
  --grey-light: #9aa0a6;
  --black: #000000;
  --bg: #050508;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(0, 94, 184, 0.4);
  --text: #e8eaed;
  --text-muted: #9aa0a6;
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  overflow-x: hidden;
  overflow-x: clip;
  max-width: 100%;
}
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  overflow-x: clip;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
}
main { overflow-x: clip; max-width: 100%; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Background Effects ===== */
.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 94, 184, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 94, 184, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 20%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}
.bg-glow--1 {
  width: 600px; height: 600px;
  background: var(--blue-glow);
  top: -200px; right: 0;
  transform: translateX(25%);
  opacity: 0.5;
}
.bg-glow--2 {
  width: 500px; height: 500px;
  background: rgba(108, 117, 125, 0.15);
  bottom: 20%; left: 0;
  transform: translateX(-25%);
  opacity: 0.4;
}

/* ===== Typography ===== */
.text-gradient {
  background: linear-gradient(135deg, var(--blue-light), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-gradient--gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--blue-light), var(--blue));
  color: #fff;
  box-shadow: 0 4px 24px var(--blue-glow);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--blue-glow);
}
.btn--ghost {
  border: 1px solid var(--border);
  color: var(--text);
  background: var(--bg-card);
  backdrop-filter: blur(12px);
}
.btn--ghost:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
}
.btn--sm { padding: 10px 20px; font-size: 0.875rem; }
.btn--lg { padding: 18px 36px; font-size: 1.05rem; }
.btn--full { width: 100%; justify-content: center; }
.btn--whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.35);
}
.btn--whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45);
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #1a1200;
  box-shadow: 0 4px 24px var(--gold-glow);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--gold-glow);
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: var(--transition);
  max-width: 100%;
  overflow-x: clip;
}
.header--scrolled {
  background: rgba(5, 5, 8, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.nav__logo img { height: 44px; width: auto; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a:not(.btn) {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav__links a:not(.btn):hover { color: var(--text); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 110;
}
.nav__toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.nav__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== Hero ===== */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow-x: clip;
  max-width: 100%;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 100px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--grey-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero__badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 8px var(--blue);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero__title {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero__subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero__stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.stat__number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue-light);
}
.stat__suffix {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue-light);
}
.stat__label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.stat__divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Code Window */
.hero__visual {
  position: relative;
  overflow: hidden;
  max-width: 100%;
}
.code-window {
  background: rgba(10, 10, 15, 0.9);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 100%;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 2;
}
.code-window__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border);
}
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot--red { background: #ff5f57; }
.dot--yellow { background: #febc2e; }
.dot--green { background: #28c840; }
.code-window__title {
  margin-left: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: 'Courier New', monospace;
}
.code-window__body {
  padding: 24px;
  font-family: 'Courier New', Consolas, monospace;
  font-size: 0.85rem;
  line-height: 1.8;
  overflow-x: auto;
  max-width: 100%;
}
.code-window__body code {
  white-space: pre-wrap;
  word-break: break-word;
}
.code-window__body .kw { color: #c678dd; }
.code-window__body .fn { color: #61afef; }
.code-window__body .str { color: #98c379; }

.hero__orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--border);
  z-index: 1;
}
.hero__orbit--1 {
  width: 300px; height: 300px;
  top: -40px; right: 0;
  animation: orbitSpin 20s linear infinite;
}
.hero__orbit--2 {
  width: 200px; height: 200px;
  bottom: -20px; left: 0;
  animation: orbitSpin 15s linear infinite reverse;
}
@keyframes orbitSpin {
  to { transform: rotate(360deg); }
}

/* ===== Sections ===== */
.section {
  position: relative;
  z-index: 1;
  padding: 100px 0;
  overflow-x: clip;
  max-width: 100%;
}
.section__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}
.section__tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue-light);
  margin-bottom: 16px;
}
.section__title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section__desc {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ===== Services ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  padding: 32px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: var(--transition);
  backdrop-filter: blur(12px);
}
.service-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}
.service-card__icon {
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(0, 94, 184, 0.12);
  color: var(--blue-light);
  margin-bottom: 20px;
}
.service-card__icon svg { width: 24px; height: 24px; }
.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.service-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 16px;
}
.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.service-card__tags li {
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  background: rgba(0, 94, 184, 0.1);
  color: var(--blue-light);
  border: 1px solid rgba(0, 94, 184, 0.2);
}

/* ===== Products Preview ===== */
.section--products {
  background: rgba(255, 255, 255, 0.015);
}
.products-preview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.product-preview-card {
  display: flex;
  flex-direction: column;
  padding: 32px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: var(--transition);
  backdrop-filter: blur(12px);
  min-height: 100%;
}
.product-preview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}
.product-preview-card--aigle:hover { border-color: rgba(201, 146, 10, 0.45); }
.product-preview-card--pegasus:hover { border-color: var(--border-hover); }
.product-preview-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(201, 146, 10, 0.12);
  border: 1px solid rgba(201, 146, 10, 0.25);
  margin-bottom: 20px;
}
.product-preview-card__icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.product-preview-card__icon--pegasus {
  background: rgba(0, 94, 184, 0.12);
  border-color: rgba(0, 94, 184, 0.25);
  color: var(--blue-light);
}
.product-preview-card__icon--pegasus svg { width: 28px; height: 28px; }
.product-preview-card__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.product-preview-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.product-preview-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}
.product-preview-card__link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--blue-light);
}
.product-preview-card--aigle .product-preview-card__link { color: var(--gold-light); }

/* ===== Product Showcase (Aigle + Pegasus) ===== */
.section--aigle {
  background: linear-gradient(180deg, transparent, rgba(201, 146, 10, 0.04), transparent);
  overflow: hidden;
}
.section--pegasus {
  background: linear-gradient(180deg, transparent, rgba(0, 94, 184, 0.04), transparent);
  overflow: hidden;
}
.product-showcase {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.product-showcase--reverse {
  grid-template-columns: 1.1fr 1fr;
}
.product-showcase--reverse .product-showcase__visual { order: -1; }
.product-showcase__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 100px;
  background: rgba(0, 94, 184, 0.12);
  border: 1px solid rgba(0, 94, 184, 0.25);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.product-showcase__badge svg { width: 16px; height: 16px; }
.product-showcase__badge img { border-radius: 4px; }
.product-showcase__badge--gold {
  background: rgba(201, 146, 10, 0.12);
  border-color: rgba(201, 146, 10, 0.3);
  color: var(--gold-light);
}
.product-showcase__desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 32px;
}
.product-showcase__features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}
.product-showcase__features li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.product-showcase__feature-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(0, 94, 184, 0.1);
  border: 1px solid rgba(0, 94, 184, 0.2);
  color: var(--blue-light);
  flex-shrink: 0;
}
.product-showcase__feature-icon--gold {
  background: rgba(201, 146, 10, 0.1);
  border-color: rgba(201, 146, 10, 0.25);
  color: var(--gold-light);
}
.product-showcase__feature-icon svg { width: 20px; height: 20px; }
.product-showcase__features strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.product-showcase__features span {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.product-showcase__visual {
  position: relative;
  overflow: hidden;
  max-width: 100%;
}
.product-showcase__devices {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding: 24px 0 32px;
  min-height: 280px;
}
.product-showcase__laptop {
  position: relative;
  z-index: 1;
  margin-left: 18%;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.45));
}
.product-showcase__laptop-screen {
  background: linear-gradient(180deg, #2a2a35, #1a1a24);
  border-radius: 14px 14px 0 0;
  padding: 10px 10px 0;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-bottom: none;
}
.product-showcase__laptop-screen img {
  width: 100%;
  display: block;
  border-radius: 4px 4px 0 0;
}
.product-showcase__laptop-base {
  height: 16px;
  margin: 0 -28px;
  background: linear-gradient(180deg, #3d3d48, #1f1f28);
  border-radius: 0 0 10px 10px;
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-top: none;
  position: relative;
}
.product-showcase__laptop-base::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 0 0 4px 4px;
}
.product-showcase__phone {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-46%);
  width: 34%;
  max-width: 148px;
  z-index: 3;
  background: linear-gradient(145deg, #2a2a32, #121218);
  border-radius: 28px;
  padding: 12px 10px;
  border: 3px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 28px 56px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.product-showcase__phone-notch {
  width: 36%;
  height: 5px;
  background: #0a0a0f;
  border-radius: 3px;
  margin: 0 auto 10px;
}
.product-showcase__phone-screen {
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.product-showcase__phone-screen img {
  width: 100%;
  display: block;
}
.product-showcase__glow {
  position: absolute;
  inset: 10% 0;
  background: radial-gradient(ellipse, var(--blue-glow), transparent 70%);
  z-index: 0;
  pointer-events: none;
}
.product-showcase__glow--gold {
  background: radial-gradient(ellipse, var(--gold-glow), transparent 70%);
}

/* Pegasus legacy class aliases */
.pegasus__badge svg { width: 16px; height: 16px; }

/* ===== Integrations ===== */
.section--integrations {
  background: rgba(255, 255, 255, 0.01);
}
.integrations {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.integrations__hub {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
  margin: 0 auto;
}
.integrations__lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.integrations__lines line {
  stroke: var(--blue);
  stroke-width: 1.5;
  stroke-dasharray: 6 4;
  opacity: 0.4;
  animation: dashFlow 1.5s linear infinite;
}
@keyframes dashFlow {
  to { stroke-dashoffset: -20; }
}
.integrations__center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 120px; height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 94, 184, 0.2), rgba(0, 94, 184, 0.08));
  border: 2px solid rgba(0, 94, 184, 0.4);
  box-shadow: 0 0 40px var(--blue-glow);
  z-index: 2;
}
.integrations__center svg { width: 28px; height: 28px; color: var(--blue-light); }
.integrations__center span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--blue-light);
  text-align: center;
}
.integrations__node {
  position: absolute;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  z-index: 2;
  transition: var(--transition);
}
.integrations__node:hover {
  border-color: var(--border-hover);
  color: var(--text);
}
.integrations__node--tl { top: 8%; left: 8%; }
.integrations__node--tr { top: 8%; right: 8%; }
.integrations__node--bl { bottom: 8%; left: 8%; }
.integrations__node--br { bottom: 8%; right: 8%; }
.integrations__intro {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 24px;
}
.integrations__tech {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.integrations__tech-item {
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(0, 94, 184, 0.1);
  color: var(--blue-light);
  border: 1px solid rgba(0, 94, 184, 0.25);
}
.integrations__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.integrations__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.integrations__list svg {
  width: 20px; height: 20px;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
}
.integrations__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ===== About ===== */
.section--about { background: rgba(255, 255, 255, 0.01); }
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__visual { position: relative; height: 400px; }
.about__card {
  position: absolute;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
}
.about__card--main {
  inset: 40px 40px 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.circuit-icon svg { width: 120px; height: 120px; }
.about__card-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--grey-light);
  letter-spacing: 0.05em;
}
.about__card--float {
  bottom: 20px; right: 0;
  padding: 24px 32px;
  text-align: center;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.about__metric {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--blue-light);
}
.about__metric-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.about__text {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 32px;
}
.about__features { display: flex; flex-direction: column; gap: 16px; }
.about__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}
.about__features svg {
  width: 20px; height: 20px;
  color: var(--blue);
  flex-shrink: 0;
}

/* ===== Process ===== */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-timeline::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 4px;
  transform: translateY(-50%);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.4);
}
.process-timeline::after {
  content: '';
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 4px;
  transform: translateY(-50%);
  border-radius: 4px;
  background: linear-gradient(
    90deg,
    rgba(0, 94, 184, 0.2) 0%,
    var(--blue) 15%,
    var(--blue-light) 50%,
    var(--blue) 85%,
    rgba(0, 94, 184, 0.2) 100%
  );
  background-size: 200% 100%;
  box-shadow:
    0 0 8px var(--blue-glow),
    0 0 20px rgba(0, 94, 184, 0.25);
  animation: processLineFlow 4s ease-in-out infinite;
}
@keyframes processLineFlow {
  0%, 100% { background-position: 0% 50%; opacity: 0.85; }
  50% { background-position: 100% 50%; opacity: 1; }
}
.process-step {
  position: relative;
  text-align: center;
  padding: 24px 16px;
}
.process-step__number {
  width: 72px; height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--blue-light);
  background: radial-gradient(circle at 30% 30%, rgba(0, 94, 184, 0.25), rgba(0, 94, 184, 0.08));
  border: 2px solid rgba(0, 94, 184, 0.5);
  box-shadow:
    0 0 0 4px var(--bg),
    0 0 16px rgba(0, 94, 184, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 2;
  transition: var(--transition);
}
.process-step:hover .process-step__number {
  border-color: var(--blue-light);
  box-shadow:
    0 0 0 4px var(--bg),
    0 0 24px var(--blue-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.process-step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.process-step p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== CTA Banner ===== */
.cta-banner {
  position: relative;
  z-index: 1;
  padding: 80px 0;
}
.cta-banner__inner {
  text-align: center;
  padding: 64px 48px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(0, 94, 184, 0.15), rgba(0, 94, 184, 0.05));
  border: 1px solid rgba(0, 94, 184, 0.25);
  backdrop-filter: blur(16px);
}
.cta-banner__inner h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 12px;
}
.cta-banner__inner p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 32px;
}
.cta-banner__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Contact ===== */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact__desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
}
.contact__details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }
.contact__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: var(--transition);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  cursor: pointer;
}
.contact__item:hover,
.contact__item:active {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
}
.contact__item--phone:active { border-color: rgba(0, 94, 184, 0.6); }
.contact__item--whatsapp:hover,
.contact__item--whatsapp:active { border-color: rgba(37, 211, 102, 0.5); }
.contact__quick-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact__item-icon {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(0, 94, 184, 0.12);
  color: var(--blue-light);
  flex-shrink: 0;
}
.contact__item-icon svg { width: 20px; height: 20px; }
.contact__item-icon--whatsapp {
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #25d366;
}
.contact__item-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.contact__item-value {
  font-weight: 600;
  font-size: 0.95rem;
}

.contact__form {
  padding: 40px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-muted);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.3);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-glow);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--grey); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ===== Footer ===== */
.footer {
  position: relative;
  z-index: 1;
  padding: 48px 0;
  border-top: 1px solid var(--border);
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer__brand img { height: 36px; width: auto; margin-bottom: 8px; }
.footer__brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.footer__links {
  display: flex;
  gap: 24px;
}
.footer__links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--text); }
.footer__copy {
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
  color: var(--grey);
  padding-top: 24px;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}

/* ===== Reveal Animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== WhatsApp Float ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  animation: whatsappPulse 2.5s ease-in-out infinite;
}
.whatsapp-float svg { width: 32px; height: 32px; }
.whatsapp-float:hover,
.whatsapp-float:active {
  transform: scale(1.08);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.55);
}
@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45), 0 0 0 12px rgba(37, 211, 102, 0.12); }
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .nav__links { gap: 20px; }
  .nav__links a:not(.btn) { font-size: 0.85rem; }
}

@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { max-width: 560px; margin: 0 auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .products-preview { grid-template-columns: 1fr; max-width: 520px; }
  .product-showcase,
  .product-showcase--reverse {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .product-showcase--reverse .product-showcase__visual { order: -1; }
  .product-showcase__visual { max-width: 520px; margin: 0 auto; }
  .product-showcase__devices { max-width: 480px; min-height: 300px; }
  .product-showcase__phone { max-width: 130px; }
  .integrations { grid-template-columns: 1fr; gap: 48px; }
  .integrations__hub { max-width: 340px; }
  .about { grid-template-columns: 1fr; gap: 48px; }
  .about__visual { height: 320px; max-width: 480px; margin: 0 auto; }
  .process-timeline { grid-template-columns: repeat(2, 1fr); }
  .process-timeline::before,
  .process-timeline::after { display: none; }
  .contact { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .container { padding: 0 18px; }
  .nav__toggle { display: flex; }
  .nav__logo img { height: 48px; }
  .header { padding: 14px 0; }
  .header--scrolled { padding: 10px 0; }
  .nav__links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding: 80px 24px 40px;
    background: rgba(5, 5, 8, 0.97);
    backdrop-filter: blur(20px);
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.4s ease, visibility 0.4s ease;
    z-index: 105;
    overflow-y: auto;
  }
  .nav__links.open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }
  .nav__links a:not(.btn) { font-size: 1.15rem; }
  .nav__links .btn { width: min(100%, 280px); justify-content: center; }
  .section { padding: 72px 0; }
  .section__header { margin-bottom: 48px; }
  .section__desc { font-size: 0.98rem; }
  .integrations__hub { max-width: 300px; }
  .integrations__node { padding: 10px 14px; font-size: 0.75rem; }
  .integrations__cta { flex-direction: column; }
  .integrations__cta .btn { justify-content: center; width: 100%; }
  .product-showcase__devices {
    max-width: 100%;
    min-height: 240px;
    padding-bottom: 24px;
  }
  .product-showcase__laptop { margin-left: 12%; margin-right: 4%; }
  .product-showcase__phone {
    width: 32%;
    max-width: 110px;
    padding: 10px 8px;
    border-radius: 22px;
  }
  .product-showcase__phone-notch { height: 4px; margin-bottom: 8px; }
  .product-showcase__phone-screen { border-radius: 14px; }
  .product-preview-card { padding: 24px; }
  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero__title { font-size: clamp(2rem, 8vw, 2.75rem); }
  .hero__subtitle { font-size: 1rem; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; justify-content: center; white-space: normal; }
  .hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    align-items: start;
  }
  .stat__divider { display: none; }
  .stat__number { font-size: 1.65rem; }
  .stat__suffix { font-size: 1.25rem; }
  .stat__label { font-size: 0.72rem; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 24px; }
  .process-timeline { grid-template-columns: 1fr; }
  .process-step { padding: 16px 8px; }
  .cta-banner { padding: 48px 0; }
  .cta-banner__inner { padding: 40px 20px; }
  .cta-banner__actions { flex-direction: column; align-items: stretch; }
  .cta-banner__actions .btn { width: 100%; justify-content: center; }
  .contact__form { padding: 24px; }
  .contact__quick-actions .btn { white-space: normal; }
  .footer__inner { flex-direction: column; text-align: center; }
  .footer__links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 20px;
    max-width: 100%;
  }
  .whatsapp-float {
    width: 54px;
    height: 54px;
    bottom: 18px;
    right: 18px;
  }
  .whatsapp-float svg { width: 28px; height: 28px; }
  .code-window__body { padding: 16px; font-size: 0.75rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 14px; }
  html { scroll-padding-top: 72px; }
  .hero__stats { grid-template-columns: 1fr; gap: 12px; }
  .hero__badge { font-size: 0.72rem; padding: 6px 12px; }
  .section { padding: 56px 0; }
  .section__title { font-size: clamp(1.65rem, 7vw, 2rem); }
  .product-showcase__laptop { margin-left: 0; margin-right: 0; }
  .product-showcase__phone {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 42%;
    max-width: 140px;
    margin: -20px auto 0;
  }
  .product-showcase__devices { min-height: auto; padding-bottom: 8px; }
  .about__visual { height: 260px; }
  .about__card--main { inset: 24px 24px 24px 0; }
  .about__card--float { padding: 16px 24px; }
  .integrations__center { width: 100px; height: 100px; }
  .integrations__center span { font-size: 0.65rem; }
  .btn { padding: 12px 20px; font-size: 0.9rem; }
  .btn--lg { padding: 14px 24px; font-size: 0.95rem; }
  .footer__links a { font-size: 0.85rem; }
}
