:root {
  --primary: #004b9b;
  /* Azul Blick */
  --primary-light: #0f63c7;
  --accent: #ff7b2c;
  /* Naranja Blick */
  --bg: #050816;
  --bg-light: #0b1020;
  --text: #f5f7ff;
  --muted: #a6b0d1;
  --card: #0f1528;
  --border: #222b45;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.45);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-pill: 999px;
}

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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #14204b 0, #050816 40%, #02030a 100%);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

img {
  max-width: 100%;
  display: block;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 16px 60px;
}

/* HEADER */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 0 16px;
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(5, 8, 22, 0.96), rgba(5, 8, 22, 0.78), transparent);
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: radial-gradient(circle at 30% 0, #ffffff 0, #87b7ff 15%, #004b9b 55%, #020308 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px rgba(57, 123, 255, 0.55);
  position: relative;
  overflow: hidden;
}

.logo-mark::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  opacity: 0.5;
}

.logo-mark span {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.08em;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.logo-text strong {
  font-size: 19px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.logo-text small {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
}

.nav-links {
  display: none;
  gap: 16px;
  color: var(--muted);
}

.nav-links a:hover {
  color: #ffffff;
}

.btn {
  border-radius: var(--radius-pill);
  padding: 9px 18px;
  border: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.18s ease-out;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #ff9c54);
  color: #160800;
  box-shadow: 0 14px 35px rgba(255, 123, 44, 0.45);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(255, 123, 44, 0.55);
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--muted);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.32);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.03);
}

.badge-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.02));
  margin-bottom: 14px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: radial-gradient(circle, #5bff96 0, #1ac95a 40%, #006b2d 100%);
  box-shadow: 0 0 15px rgba(90, 255, 150, 0.75);
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 32px;
  margin-top: 18px;
  align-items: center;
}

.hero-title {
  font-size: clamp(32px, 5vw, 46px);
  line-height: 1.05;
  margin-bottom: 14px;
}

.hero-title span.highlight {
  background: linear-gradient(120deg, #ffffff, #b7d7ff, #ffcf97);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 15px;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
}

.hero-note span {
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(15, 99, 199, 0.25);
  border: 1px solid rgba(82, 145, 255, 0.5);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #d7e4ff;
}

.hero-note small {
  opacity: 0.9;
}

.hero-visual {
  position: relative;
  min-height: 260px;
}

.hero-card {
  position: relative;
  background: radial-gradient(circle at top left, rgba(83, 143, 255, 0.45) 0, #050816 50%);
  border-radius: 28px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.hero-card-title {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #d7e4ff;
}

.hero-tag {
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(4, 20, 56, 0.85);
  border: 1px solid rgba(146, 189, 255, 0.6);
  color: #c7dcff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-map {
  position: relative;
  margin: 8px 0 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: radial-gradient(circle at 10% 0, #263b80 0, #050816 40%, #02030a 100%);
  padding: 18px;
  overflow: hidden;
}

.hero-map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.8;
  pointer-events: none;
}

.hero-map-drone {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: radial-gradient(circle at 30% 0, #ffffff 0, #92b9ff 25%, #004b9b 60%, #02030a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 35px rgba(79, 141, 255, 0.85);
  z-index: 2;
}

.hero-map-drone::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  opacity: 0.7;
}

.hero-map-drone-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  background: rgba(2, 4, 10, 0.6);
  color: #ffffff;
}

.hero-map-ping {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  border: 1px dashed rgba(135, 188, 255, 0.7);
  top: 50%;
  left: 56%;
  transform: translate(-50%, -50%);
  opacity: 0.9;
}

.hero-map-ping::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  inset: 18px;
  border: 1px dashed rgba(135, 188, 255, 0.5);
}

.hero-map-info {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  font-size: 11px;
  color: #d7e4ff;
}

.hero-map-pill {
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(5, 8, 22, 0.85);
  border: 1px solid rgba(159, 199, 255, 0.6);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.hero-map-pill span.dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #5bff96;
  box-shadow: 0 0 14px rgba(90, 255, 150, 0.9);
}

.hero-stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
}

.hero-stat-row strong {
  font-size: 15px;
  color: #ffffff;
}

.hero-stat-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(5, 8, 22, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.18);
  gap: 6px;
  font-size: 11px;
  color: #d7e4ff;
}

/* STANDARD PAGE SECTIONS */
section {
  margin-top: 48px;
}

.section-title {
  font-size: clamp(32px, 5vw, 46px);
  line-height: 1.05;
  margin-bottom: 24px;
  background: linear-gradient(120deg, #ffffff, #b7d7ff, #ffcf97);
  -webkit-background-clip: text;
  color: transparent;
  display: inline-block;
}

.section-description {
  font-size: 14px;
  color: var(--muted);
  max-width: 620px;
}

/* TWO-COLUMN SECTION */
.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 26px;
  margin-top: 18px;
}

/* CARDS & GRID */
.card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 18px 18px 16px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.45);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.card-icon {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background: rgba(15, 99, 199, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.card-title {
  font-size: 15px;
  font-weight: 600;
}

.card-text {
  font-size: 13px;
  color: var(--muted);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

/* HOW IT WORKS */
.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.step {
  background: radial-gradient(circle at top, rgba(15, 99, 199, 0.4), #050816 55%);
  border-radius: var(--radius-lg);
  padding: 16px 14px;
  border: 1px solid rgba(145, 190, 255, 0.46);
  box-shadow: 0 14px 36px rgba(9, 40, 98, 0.7);
  position: relative;
  overflow: hidden;
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 28px;
  font-weight: 700;
  color: rgba(205, 224, 255, 0.08);
}

.step-title {
  font-size: 14px;
  margin-bottom: 4px;
}

.step-text {
  font-size: 13px;
  color: var(--muted);
}

/* SERVICES */
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.pill {
  font-size: 12px;
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #d7e4ff;
  background: rgba(7, 13, 32, 0.85);
  white-space: nowrap;
}

/* TESTIMONIALS */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.testimonial {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 16px 16px 14px;
  border: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
  position: relative;
}

.testimonial::before {
  content: "“";
  position: absolute;
  top: -10px;
  left: 16px;
  font-size: 40px;
  color: rgba(255, 255, 255, 0.08);
}

.testimonial-footer {
  margin-top: 12px;
  font-size: 12px;
  color: #d7e4ff;
}

.testimonial-footer span {
  display: block;
  color: var(--muted);
  font-size: 11px;
}

/* FORMS */
.form-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 18px 18px 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.field {
  flex: 1 1 190px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

label {
  font-size: 12px;
  color: var(--muted);
}

input,
select,
textarea {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(5, 8, 22, 0.85);
  color: #ffffff;
  padding: 8px 12px;
  font-size: 13px;
  outline: none;
  width: 100%;
}

textarea {
  border-radius: 14px;
  min-height: 70px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(163, 176, 214, 0.8);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(134, 188, 255, 0.95);
  box-shadow: 0 0 0 1px rgba(13, 110, 253, 0.2);
}

.form-hint {
  font-size: 11px;
  color: var(--muted);
  margin-top: 6px;
}

/* WAITLIST */
.waitlist {
  margin-top: 18px;
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.1fr);
  gap: 16px;
  align-items: center;
}

.waitlist form {
  margin-top: 0;
}

.waitlist-note {
  font-size: 12px;
  color: var(--muted);
}

/* FOOTER */
footer {
  margin-top: 52px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 12px;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  header {
    position: static;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-visual {
    order: -1;
  }

  .two-col {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .steps {
    grid-template-columns: minmax(0, 1fr);
  }

  .testimonials {
    grid-template-columns: minmax(0, 1fr);
  }

  .grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }

  .grid-2 {
    grid-template-columns: minmax(0, 1fr);
  }

  .waitlist {
    grid-template-columns: minmax(0, 1fr);
  }

  .nav-links {
    display: none;
  }
}

/* PRICING TOGGLE */
.pricing-toggle {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}

.toggle-btn {
  padding: 10px 24px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s;
}

.toggle-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary-light);
  box-shadow: 0 4px 12px rgba(0, 75, 155, 0.4);
}

.hidden-tab {
  display: none;
}

/* MODAL STYLES */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: #fff;
  color: #333;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 12px;
  position: relative;
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }

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

.modal-header {
  padding: 20px 30px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 10;
}

.modal-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.modal-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #999;
}

.modal-body {
  padding: 30px;
}

/* FORM GRID LAYOUT */
.reg-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.reg-col-12 {
  grid-column: span 12;
}

.reg-col-6 {
  grid-column: span 6;
}

.reg-col-4 {
  grid-column: span 4;
}

.reg-col-3 {
  grid-column: span 3;
}

.reg-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.reg-label {
  font-size: 13px;
  font-weight: 600;
  color: #555;
}

.reg-input,
.reg-select {
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  background: #fff;
  color: #333;
}

.reg-check-group {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
}

.reg-check {
  margin-top: 3px;
}

.reg-check-label {
  font-size: 13px;
  color: #666;
}

.reg-btn {
  background: #f59e0b;
  /* Orange from screenshot */
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s;
}

.reg-btn:hover {
  background: #d97706;
}

@media (max-width: 768px) {

  .reg-col-6,
  .reg-col-4,
  .reg-col-3 {
    grid-column: span 12;
  }

  .modal-content {
    height: 100%;
    max-height: 100%;
    border-radius: 0;
  }
}

@media (min-width: 901px) {
  .nav-links {
    display: flex;
  }
}

/* FAQ STYLES */
.faq-question {
  width: 100%;
  text-align: left;
  background: #0f1528;
  color: #ffffff;
  padding: 14px 16px;
  font-size: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  cursor: pointer;
  margin-top: 8px;
  transition: 0.2s ease;
}

.faq-question:hover {
  background: #182040;
  border-color: rgba(255, 255, 255, 0.2);
}

.faq-answer {
  display: none;
  padding: 12px 16px;
  border-left: 2px solid #ff9e1c;
  margin-top: 4px;
  background: #0c1020;
  border-radius: 6px;
  color: #c7d0f4;
  font-size: 14px;
}

.faq-answer p {
  margin: 0;
}

.faq-open .faq-answer {
  display: block;
}

/* FLOATING BUTTON */
.float-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25D366;
  color: #fff;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
  text-decoration: none;
}

.float-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  color: #fff;
}

/* Ocultar menú móvil en escritorio */
.nav-toggle {
  display: none;
}
.close-menu {
  display: none;
}
/* ============================
   MENÚ MÓVIL (MAX 900px)
   ============================ */
@media (max-width: 900px) {
	.close-menu {
    display: block;
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 28px;
    color: #333;
    cursor: pointer;
    z-index: 10001;
  }

  /* Mostrar toggle */
  .nav-toggle {
    display: block;
    font-size: 28px;
    cursor: pointer;
    padding: 10px;
    z-index: 10001;
  }

  /* Ocultar botones de la derecha */
  .nav-right {
    display: none;
  }

  /* Overlay oscuro */
  #menuOverlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: none;
    z-index: 9999;
  }

  /* Menú móvil — ahora se desplaza DESDE LA IZQUIERDA */
  #navLinks {
    position: fixed;
    top: 0;
    left: -100%;      /* << evita que ensanche el body */
    width: 75%;
    height: 100vh;
    background: #0f1528;
    padding: 45px 20px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: left .3s ease;
    z-index: 10000;   /* arriba del overlay */
    overflow-y: auto;
  }

  /* Estado abierto */
  #navLinks.open {
    left: 0;
  }

  /* Evitar stacking raro */
  header,
  .site-header,
  .site-header-container {
    position: relative;
    z-index: 10;
  }

  /* Evitar scroll del body cuando el menú está abierto */
  body.menu-open {
    overflow: hidden;
  }
}