:root {
  --bg-main: #07090e;
  --bg-card: rgba(16, 22, 34, 0.85);
  --bg-card-hover: rgba(22, 30, 48, 0.95);
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(212, 175, 55, 0.35);
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --accent-gold: #d4af37;
  --accent-gold-bright: #fcd34d;
  --accent-gold-glow: rgba(212, 175, 55, 0.3);
  --accent-emerald: #10b981;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-heading: 'Outfit', sans-serif;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(212, 175, 55, 0.07) 0%, transparent 45%),
    radial-gradient(circle at 85% 40%, rgba(16, 185, 129, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 50% 85%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
  background-attachment: fixed;
}

/* ================= HEADER (MINIMAL & MOBILE-CLEAN) ================= */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 9, 14, 0.92);
  border-bottom: 1px solid var(--border-glass);
  backdrop-filter: blur(16px);
  padding: 12px 0;
}

.header-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--accent-gold), #fff2b2);
  color: #0b0f19;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  box-shadow: 0 4px 14px var(--accent-gold-glow);
}

.logo-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  display: block;
}

.logo-title span {
  color: var(--accent-gold);
}

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

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--radius-md);
  transition: all 0.2s;
}

.nav-link:hover {
  color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.05);
}

/* ================= HERO SECTION ================= */
.hero-section {
  position: relative;
  padding: 70px 20px 60px;
  text-align: center;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.16) 0%, transparent 70%);
  pointer-events: none;
}

.hero-container {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.campaign-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--border-gold);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-gold-bright);
  margin-bottom: 24px;
  animation: pulseBadge 2.5s infinite;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 10px #10b981;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 30%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 780px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

/* PRICING SPOTLIGHT */
.pricing-spotlight {
  display: inline-block;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(16, 22, 34, 0.95));
  border: 2px solid var(--accent-gold);
  border-radius: var(--radius-lg);
  padding: 22px 36px;
  box-shadow: 0 16px 48px rgba(212, 175, 55, 0.2);
  margin-bottom: 32px;
  position: relative;
}

.spotlight-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent-gold), #fcd34d);
  color: #0a0d14;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 14px;
  border-radius: var(--radius-full);
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 14px;
  margin-top: 6px;
  margin-bottom: 6px;
}

.old-price {
  font-size: 20px;
  color: var(--text-dim);
  text-decoration: line-through;
}

.current-price {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 900;
  color: #ffffff;
}

.currency {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-gold);
}

.discount-tag {
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #f87171;
  font-size: 12px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

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

/* HERO ACTIONS */
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 40px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold), #fcd34d);
  color: #0b0f19;
  font-weight: 700;
  font-size: 15px;
  border: none;
  border-radius: var(--radius-md);
  padding: 13px 26px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 8px 24px var(--accent-gold-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px var(--accent-gold-glow);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 13px 26px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn-sm {
  padding: 7px 14px;
  font-size: 12px;
}

.btn-hero {
  padding: 15px 30px;
  font-size: 15px;
}

/* HERO STATS */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 18px;
}

.hero-stat-item {
  padding: 6px;
}

.hero-stat-item.highlight .stat-num {
  color: #ef4444;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
}

.stat-lbl {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ================= PACKAGE 3 POINTS ================= */
.section-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-gold);
  background: rgba(212, 175, 55, 0.1);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 10px;
}

.section-header p {
  font-size: 15px;
  color: var(--text-muted);
}

.package-section {
  padding: 70px 0;
  background: rgba(16, 22, 34, 0.4);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.package-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  position: relative;
  transition: all 0.3s ease;
}

.package-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.4);
}

.package-card.featured {
  border: 2px solid var(--accent-gold);
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.08), var(--bg-card));
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: linear-gradient(135deg, var(--accent-gold), #fcd34d);
  color: #0a0d14;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: var(--radius-full);
}

.package-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.icon-drone { background: rgba(59, 130, 246, 0.15); color: #60a5fa; border: 1px solid rgba(59, 130, 246, 0.3); }
.icon-gate { background: rgba(212, 175, 55, 0.15); color: var(--accent-gold); border: 1px solid var(--border-gold); }
.icon-indoor { background: rgba(16, 185, 129, 0.15); color: #34d399; border: 1px solid rgba(16, 185, 129, 0.3); }

.point-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--text-dim);
  margin-bottom: 6px;
}

.package-card h3 {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
}

.package-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.5;
}

.package-features {
  list-style: none;
  border-top: 1px solid var(--border-glass);
  padding-top: 14px;
}

.package-features li {
  font-size: 12.5px;
  color: #e2e8f0;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.package-features li i {
  color: var(--accent-gold);
}

/* ================= OTHER SERVICES ================= */
.services-section {
  padding: 70px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.2s;
}

.service-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: var(--bg-card-hover);
}

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
}

.service-card h4 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
}

.service-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ================= DEMO SECTION ================= */
.demo-section {
  padding: 70px 0;
  background: rgba(16, 22, 34, 0.4);
}

.demo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.demo-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
}

.demo-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-gold);
}

.demo-img {
  height: 190px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.demo-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(10, 13, 20, 0.85);
  border: 1px solid var(--border-glass);
  color: var(--accent-gold);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.play-overlay {
  background: rgba(10, 13, 20, 0.85);
  border: 1px solid var(--border-gold);
  color: #ffffff;
  padding: 9px 18px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.25s;
}

.demo-card:hover .play-overlay {
  opacity: 1;
  transform: scale(1);
}

.demo-content {
  padding: 18px;
}

.demo-content h4 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
}

.demo-content p {
  font-size: 12.5px;
  color: var(--text-muted);
}

/* ================= FORM SECTION ================= */
.form-section {
  padding: 80px 0;
}

.form-card {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 2px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
}

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

.form-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 800;
  color: var(--accent-gold-bright);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--border-gold);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
}

.form-header h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
}

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

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

.lead-form .form-group {
  margin-bottom: 16px;
}

.lead-form label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: #cbd5e1;
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 13.5px;
  outline: none;
  transition: all 0.2s;
}

.form-control:focus {
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px var(--accent-gold-glow);
}

select.form-control {
  background: #111827;
  color: #ffffff;
}

select.form-control option {
  background: #111827;
  color: #ffffff;
}

.btn-block { width: 100%; }

.btn-submit {
  padding: 16px;
  font-size: 15px;
  margin-top: 8px;
}

.form-status {
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 16px;
}

.form-status.success {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34d399;
}

.form-status.error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #f87171;
}

.form-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 11.5px;
  color: var(--text-dim);
  margin-top: 14px;
}

/* ================= FOOTER ================= */
.footer {
  background: #05070a;
  border-top: 1px solid var(--border-glass);
  padding: 40px 0 20px;
}

.footer-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.footer-brand p {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-top: 6px;
}

.footer-contact {
  display: flex;
  gap: 20px;
  font-size: 12.5px;
  color: var(--text-muted);
}

.footer-contact div {
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-contact i {
  color: var(--accent-gold);
}

.footer-bottom {
  text-align: center;
  font-size: 11.5px;
  color: var(--text-dim);
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

/* ================= MODAL ================= */
.demo-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
}

.modal-container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1040px;
  height: 80vh;
  background: #0f172a;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: rgba(16, 22, 34, 0.95);
  border-bottom: 1px solid var(--border-glass);
}

.modal-header h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  color: #ffffff;
}

.btn-close-modal {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-body {
  flex: 1;
}

.modal-body iframe {
  width: 100%;
  height: 100%;
}

/* ================= MOBILE OPTIMIZATIONS ================= */
@media (max-width: 768px) {
  .header-container {
    padding: 0 12px;
  }
  .header-nav .nav-link span {
    display: none;
  }
  .nav-link {
    padding: 6px 8px;
    font-size: 15px;
  }
  .btn-sm {
    padding: 6px 12px;
    font-size: 12px;
  }
  .hero-title {
    font-size: 28px;
  }
  .hero-subtitle {
    font-size: 14.5px;
  }
  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }
  .package-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .demo-grid {
    grid-template-columns: 1fr;
  }
  .lead-form .form-row {
    grid-template-columns: 1fr;
  }
  .form-card {
    padding: 24px 16px;
  }
  .footer-container {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .footer-contact {
    flex-direction: column;
    gap: 8px;
  }
}

@keyframes pulseBadge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(212, 175, 55, 0); }
}
