/* ═══════════════════════════════════════
   TOKENS
═══════════════════════════════════════ */
:root {
  --p: #5B1FBE;
  --pl: #7C3AED;
  --pll: #A855F7;
  --gold: #F59E0B;
  --gold2: #FCD34D;
  --goldl: #FEF3C7;
  --green: #059669;
  --red: #DC2626;
  --dark: #0A0514;
  --mid: #110B24;
  --card: #170F30;
  --border: rgba(124, 58, 237, 0.25);
  --text: #F0EBF8;
  --muted: #9B8EC4;
  --white: #fff;
  --fd: 'Sora', sans-serif;
  --fb: 'Inter', sans-serif;
  --fm: 'JetBrains Mono', monospace;
  --grad: linear-gradient(135deg, var(--p), var(--pl), var(--pll));
  --grad2: linear-gradient(135deg, var(--gold), var(--gold2));
}

* {
  box-sizing: border-box !important;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--dark);
  color: var(--text);
  font-family: var(--fb);
  line-height: 1.65;
  scroll-behavior: smooth;
}

@media (max-width: 768px) {
  .btn-lg {
    padding: 12px 20px !important;
    font-size: 14px !important;
  }

  .btn {
    padding: 10px 15px !important;
    font-size: 13px !important;
  }
}

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

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

h1,
h2,
h3,
h4 {
  font-family: var(--fd)
}

/* ═══════════════════════════════════════
   SCROLLBAR
═══════════════════════════════════════ */
::-webkit-scrollbar {
  width: 6px
}

::-webkit-scrollbar-track {
  background: #000
}

::-webkit-scrollbar-thumb {
  background: var(--grad);
  border-radius: 6px
}

/* ═══════════════════════════════════════
   UTILITY
═══════════════════════════════════════ */
.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px
}

.sec {
  padding: 72px 0
}

.sec-alt {
  background: var(--mid)
}

.sec-tag {
  font-family: var(--fm);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: inline-block
}

.sec-h2 {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px
}

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}

.gold-text {
  background: var(--grad2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}

.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
  margin: 4px 0
}

.g2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px
}

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

.g4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px
}

@media(max-width:900px) {
  .g3 {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:640px) {

  .g2,
  .g3,
  .g4 {
    grid-template-columns: 1fr
  }
}

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

.card:hover {
  border-color: var(--pll);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(124, 58, 237, .2)
}

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--fd);
  font-weight: 700;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none
}

.btn-grad {
  background: var(--grad);
  color: #fff;
  padding: 14px 32px;
  font-size: 15px;
  box-shadow: 0 6px 24px rgba(91, 31, 190, .45)
}

.btn-grad:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(91, 31, 190, .6);
  color: #fff
}

.btn-gold {
  background: var(--grad2);
  color: #1A0A00;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 6px 24px rgba(245, 158, 11, .4)
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(245, 158, 11, .6)
}

.btn-wa {
  background: #25D366;
  color: #fff;
  padding: 14px 28px;
  font-size: 15px
}

.btn-wa:hover {
  background: #1DB954;
  color: #fff;
  transform: translateY(-1px)
}

.btn-lg {
  padding: 18px 40px;
  font-size: 17px
}

.btn-sm {
  padding: 10px 20px;
  font-size: 13px
}

/* ═══════════════════════════════════════
   TOP URGENCY BAR
═══════════════════════════════════════ */
.urgency-bar {
  background: linear-gradient(90deg, #1A0830, var(--p), #1A0830);
  text-align: center;
  padding: 9px 16px;
  font-family: var(--fm);
  font-size: 11px;
  color: #FCD34D;
  letter-spacing: .08em;
  position: sticky;
  top: 0;
  z-index: 500;
  border-bottom: 1px solid rgba(252, 211, 77, .2);
}

.urgency-bar span {
  color: #fff;
  font-weight: 400
}

.urgency-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #F59E0B;
  border-radius: 50%;
  margin-right: 6px;
  animation: upulse 1.5s infinite
}

@keyframes upulse {

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

  50% {
    opacity: .4;
    transform: scale(0.7)
  }
}

/* ═══════════════════════════════════════
   NAV
═══════════════════════════════════════ */
.nav {
  position: sticky;
  top: 34px;
  z-index: 400;
  background: rgba(10, 5, 20, .92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--fd);
  font-size: 17px;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}

.nav-right {
  display: flex;
  gap: 10px;
  align-items: center
}

@media(max-width:500px) {
  .nav-logo {
    font-size: 14px
  }

  .nav-right .btn-sm:first-child {
    display: none
  }
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  background: radial-gradient(ellipse at 70% 40%, rgba(124, 58, 237, .18) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(245, 158, 11, .1) 0%, transparent 50%),
    var(--dark);
  padding: 72px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, .12) 0%, transparent 70%);
  pointer-events: none
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1
}

@media(max-width:800px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(245, 158, 11, .1);
  border: 1px solid rgba(245, 158, 11, .4);
  border-radius: 20px;
  padding: 5px 14px;
  margin-bottom: 16px;
  font-family: var(--fm);
  font-size: 10px;
  color: var(--gold);
  letter-spacing: .12em
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: blink 1.8s infinite
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .2
  }
}

.hero h1 {
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 16px
}

.hero-sub {
  font-size: 16px;
  color: rgba(240, 235, 248, .65);
  margin-bottom: 28px;
  line-height: 1.7;
  max-width: 520px
}

@media(max-width:800px) {
  .hero-sub {
    margin: 0 auto 28px
  }
}

.hero-price-box {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  background: rgba(245, 158, 11, .08);
  border: 1px solid rgba(245, 158, 11, .3);
  border-radius: 12px;
  padding: 16px 22px;
  margin-bottom: 24px;
}

.hero-price-main {
  font-family: var(--fd);
  font-size: 42px;
  font-weight: 900;
  color: var(--gold2)
}

.hero-price-crossed {
  font-size: 18px;
  color: var(--muted);
  text-decoration: line-through;
  font-family: var(--fm)
}

.hero-price-label {
  font-size: 12px;
  color: var(--gold);
  font-family: var(--fm);
  letter-spacing: .1em;
  display: block
}

.hero-price-tag {
  font-size: 11px;
  color: rgba(255, 255, 255, .5);
  margin-top: 2px;
  display: block
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px
}

@media(max-width:800px) {
  .hero-ctas {
    justify-content: center
  }
}

.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap
}

@media(max-width:800px) {
  .hero-trust {
    justify-content: center
  }
}

.ht {
  font-size: 11px;
  color: rgba(240, 235, 248, .5);
  display: flex;
  align-items: center;
  gap: 5px
}

.ht strong {
  color: rgba(240, 235, 248, .8)
}

/* Hero visual */
.hero-visual {
  position: relative
}

.hero-img-frame {
  background: rgba(124, 58, 237, .06);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.hero-img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(245, 158, 11, .06), transparent 70%);
}

.hero-img-frame img {
  width: 100%;
  border-radius: 14px;
  filter: drop-shadow(0 0 30px rgba(124, 58, 237, .3))
}

.hero-badge-float {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--grad);
  color: #fff;
  font-family: var(--fd);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  box-shadow: 0 4px 14px rgba(124, 58, 237, .4);
  letter-spacing: .05em;
}

.demo-time-badge {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad2);
  color: #1A0A00;
  font-family: var(--fd);
  font-size: 12px;
  font-weight: 800;
  padding: 10px 24px;
  border-radius: 30px;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(245, 158, 11, .4);
}

/* ═══════════════════════════════════════
   LIVE STATS BAR
═══════════════════════════════════════ */
.stats-bar {
  background: linear-gradient(90deg, var(--p), #4338CA, var(--p));
  padding: 22px 0
}

.stats-bar-inner {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px
}

.stat-item {
  text-align: center
}

.stat-num {
  font-family: var(--fd);
  font-size: 30px;
  font-weight: 900;
  color: var(--gold2)
}

.stat-lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, .6);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: 2px
}

/* ═══════════════════════════════════════
   COUNTDOWN
═══════════════════════════════════════ */
.countdown-sec {
  background: linear-gradient(135deg, #0F0824, #1A0F3C);
  padding: 36px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border)
}

.countdown-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap
}

.cd-label {
  font-family: var(--fd);
  font-size: 15px;
  font-weight: 700;
  color: var(--gold)
}

.cd-boxes {
  display: flex;
  gap: 12px
}

.cd-box {
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  text-align: center;
  min-width: 64px
}

.cd-num {
  font-family: var(--fm);
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  display: block;
  line-height: 1
}

.cd-unit {
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: 4px;
  display: block
}

.seats-badge {
  background: rgba(220, 38, 38, .15);
  border: 1px solid rgba(220, 38, 38, .4);
  border-radius: 20px;
  padding: 8px 18px;
  font-family: var(--fd);
  font-size: 13px;
  font-weight: 700;
  color: #FCA5A5;
  display: flex;
  align-items: center;
  gap: 6px
}

/* ═══════════════════════════════════════
   WHY SECTION
═══════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px
}

@media(max-width:768px) {
  .why-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:480px) {
  .why-grid {
    grid-template-columns: 1fr
  }
}

.why-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: all .25s
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s
}

.why-card:hover::before {
  transform: scaleX(1)
}

.why-card:hover {
  border-color: var(--pll);
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(124, 58, 237, .2)
}

.why-icon {
  font-size: 32px;
  margin-bottom: 12px
}

.why-title {
  font-family: var(--fd);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px
}

.why-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6
}

/* ═══════════════════════════════════════
   LEARN
═══════════════════════════════════════ */
.learn-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start
}

@media(max-width:768px) {
  .learn-grid {
    grid-template-columns: 1fr
  }
}

.learn-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.learn-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  transition: all .2s
}

.learn-item:hover {
  border-color: var(--pll);
  background: rgba(124, 58, 237, .08)
}

.learn-item-icon {
  font-size: 26px;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(124, 58, 237, .12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center
}

.learn-item-title {
  font-family: var(--fd);
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  margin-bottom: 3px
}

.learn-item-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5
}

.drone-card {
  background: linear-gradient(135deg, #0F0824, #1A0F3C);
  border: 1px solid rgba(245, 158, 11, .2);
  border-radius: 16px;
  padding: 28px;
  text-align: center
}

.drone-card img {
  max-width: 220px;
  margin: 0 auto 16px;
  filter: drop-shadow(0 0 20px rgba(245, 158, 11, .3))
}

.drone-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 12px
}

.drone-tag {
  background: rgba(245, 158, 11, .1);
  border: 1px solid rgba(245, 158, 11, .3);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 11px;
  color: var(--gold);
  font-family: var(--fm)
}

/* ═══════════════════════════════════════
   PROJECTS
═══════════════════════════════════════ */
.proj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

@media(max-width:768px) {
  .proj-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:480px) {
  .proj-grid {
    grid-template-columns: 1fr
  }
}

.proj-card {
  background: linear-gradient(135deg, #120820, #1E1040);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  text-align: center;
  transition: all .25s;
  cursor: default
}

.proj-card:hover {
  border-color: var(--pll);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(124, 58, 237, .25)
}

.proj-icon {
  font-size: 36px;
  margin-bottom: 10px
}

.proj-name {
  font-family: var(--fd);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px
}

.proj-hint {
  font-size: 11px;
  color: var(--muted)
}

/* ═══════════════════════════════════════
   DEMO DETAILS
═══════════════════════════════════════ */
.demo-box {
  background: linear-gradient(135deg, rgba(91, 31, 190, .15), rgba(245, 158, 11, .08));
  border: 1px solid rgba(245, 158, 11, .3);
  border-radius: 20px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

@media(max-width:700px) {
  .demo-box {
    grid-template-columns: 1fr;
    text-align: center
  }
}

.demo-detail-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 16px
}

.demo-detail-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(240, 235, 248, .8)
}

.demo-detail-item span.ico {
  font-size: 20px;
  width: 36px;
  flex-shrink: 0
}

.process-steps {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 28px
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  min-width: 80px;
  position: relative
}

.step-item:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -10px;
  top: 14px;
  color: var(--pll);
  font-size: 16px;
  font-weight: 700
}

.step-num {
  width: 36px;
  height: 36px;
  background: var(--grad);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fd);
  font-weight: 800;
  font-size: 14px;
  color: #fff
}

.step-label {
  font-size: 10px;
  color: var(--muted);
  text-align: center;
  max-width: 72px;
  line-height: 1.3
}

/* ═══════════════════════════════════════
   PRICING
═══════════════════════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 700px;
  margin: 0 auto
}

@media(max-width:640px) {
  .pricing-grid {
    grid-template-columns: 1fr
  }
}

.price-card {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: 18px;
  padding: 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all .25s
}

.price-card.featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(245, 158, 11, .08), rgba(91, 31, 190, .1))
}

.price-card:hover {
  transform: translateY(-5px)
}

.price-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--grad2);
  color: #1A0A00;
  font-family: var(--fd);
  font-size: 11px;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 0 0 0 14px
}

.price-name {
  font-family: var(--fd);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px
}

.price-amount {
  font-family: var(--fd);
  font-size: 48px;
  font-weight: 900;
  color: var(--gold2);
  line-height: 1
}

.price-original {
  font-size: 18px;
  color: var(--muted);
  text-decoration: line-through;
  font-family: var(--fm);
  margin-bottom: 4px
}

.price-features {
  list-style: none;
  text-align: left;
  margin: 18px 0;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.price-features li {
  font-size: 13px;
  color: rgba(240, 235, 248, .8);
  display: flex;
  align-items: center;
  gap: 8px
}

.price-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 800;
  flex-shrink: 0
}

/* ═══════════════════════════════════════
   REGISTRATION FORM
═══════════════════════════════════════ */
.form-section {
  background: radial-gradient(ellipse at 50% 0%, rgba(91, 31, 190, .12) 0%, transparent 60%), var(--mid)
}

.form-wrap {
  max-width: 720px;
  margin: 0 auto
}

.form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px
}

@media(max-width:640px) {
  .form-card {
    padding: 24px
  }
}

.form-title {
  font-family: var(--fd);
  font-size: 24px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 6px
}

.form-subtitle {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  margin-bottom: 28px
}

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

@media(max-width:640px) {
  .form-grid {
    grid-template-columns: 1fr
  }
}

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

.field.full {
  grid-column: 1/-1
}

.field label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(240, 235, 248, .7);
  letter-spacing: .04em
}

.field input,
.field select,
.field textarea {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(124, 58, 237, .3);
  border-radius: 8px;
  padding: 11px 14px;
  color: var(--text);
  font-family: var(--fb);
  font-size: 13px;
  outline: none;
  transition: border-color .2s;
  width: 100%;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--pll);
  background: rgba(124, 58, 237, .08)
}

.field select option {
  background: #1A0F3C;
  color: #fff
}

.field textarea {
  resize: vertical;
  min-height: 80px
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(245, 158, 11, .05);
  border: 1px solid rgba(245, 158, 11, .2);
  border-radius: 8px;
  padding: 14px;
  margin-top: 4px
}

.consent-row input[type=checkbox] {
  width: 18px;
  height: 18px;
  accent-color: var(--pll);
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer
}

.consent-row label {
  font-size: 12px;
  color: rgba(240, 235, 248, .7);
  line-height: 1.6;
  cursor: pointer
}

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

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

.error-msg {
  font-size: 11px;
  color: #FCA5A5;
  margin-top: 3px;
  display: none
}

.field.error input,
.field.error select {
  border-color: #DC2626
}

.field.error .error-msg {
  display: block
}

.hide-demo-slot {
  display: none !important
}

/* Success state */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px
}

.form-success-icon {
  font-size: 60px;
  margin-bottom: 16px
}

.form-success h3 {
  font-family: var(--fd);
  font-size: 22px;
  font-weight: 800;
  color: #4ADE80;
  margin-bottom: 8px
}

.form-success p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px
}

.lead-id {
  background: rgba(74, 222, 128, .1);
  border: 1px solid rgba(74, 222, 128, .3);
  border-radius: 8px;
  padding: 10px 20px;
  font-family: var(--fm);
  font-size: 14px;
  color: #4ADE80;
  display: inline-block;
  margin-bottom: 20px
}

/* ═══════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

@media(max-width:768px) {
  .testi-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:480px) {
  .testi-grid {
    grid-template-columns: 1fr
  }
}

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

.testi-card:hover {
  border-color: var(--pll)
}

.testi-stars {
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 10px
}

.testi-text {
  font-size: 13px;
  color: rgba(240, 235, 248, .75);
  line-height: 1.7;
  margin-bottom: 14px;
  font-style: italic
}

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

.testi-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fd);
  font-weight: 800;
  font-size: 15px;
  color: #fff;
  flex-shrink: 0
}

.testi-name {
  font-family: var(--fd);
  font-size: 13px;
  font-weight: 700;
  color: #fff
}

.testi-class {
  font-size: 11px;
  color: var(--muted)
}

/* ═══════════════════════════════════════
   CERTIFICATE
═══════════════════════════════════════ */
.cert-box {
  background: linear-gradient(135deg, rgba(245, 158, 11, .06), rgba(91, 31, 190, .08));
  border: 2px solid rgba(245, 158, 11, .25);
  border-radius: 20px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

@media(max-width:700px) {
  .cert-box {
    grid-template-columns: 1fr;
    text-align: center
  }
}

.cert-preview {
  background: linear-gradient(135deg, #1A0F3C, #0F0824);
  border: 2px solid rgba(245, 158, 11, .4);
  border-radius: 14px;
  padding: 32px;
  text-align: center;
  position: relative
}

.cert-logo {
  font-family: var(--fd);
  font-size: 20px;
  font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px
}

.cert-title {
  font-size: 13px;
  color: var(--gold);
  font-family: var(--fm);
  letter-spacing: .1em;
  margin-bottom: 12px
}

.cert-name {
  font-family: var(--fd);
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  border-bottom: 2px solid rgba(245, 158, 11, .4);
  padding-bottom: 8px;
  margin-bottom: 8px
}

.cert-course {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 12px
}

.cert-seal {
  font-size: 40px;
  margin-top: 8px
}

/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .2s
}

.faq-item.open {
  border-color: var(--pll)
}

.faq-q {
  padding: 16px 20px;
  font-family: var(--fd);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none
}

.faq-icon {
  color: var(--pll);
  font-size: 20px;
  font-weight: 400;
  transition: transform .2s;
  flex-shrink: 0
}

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

.faq-a {
  padding: 0 20px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 20px 16px
}

/* ═══════════════════════════════════════
   CAREERS
═══════════════════════════════════════ */
.careers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px
}

@media(max-width:768px) {
  .careers-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:480px) {
  .careers-grid {
    grid-template-columns: 1fr
  }
}

.career-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  text-align: center;
  transition: all .25s
}

.career-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px)
}

.career-icon {
  font-size: 28px;
  margin-bottom: 8px
}

.career-title {
  font-family: var(--fd);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px
}

.career-pkg {
  font-size: 11px;
  color: var(--gold);
  font-family: var(--fm)
}

/* ═══════════════════════════════════════
   FINAL CTA
═══════════════════════════════════════ */
.final-cta {
  background: radial-gradient(ellipse at 50% 50%, rgba(91, 31, 190, .25) 0%, transparent 70%), var(--dark);
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid var(--border);
}

.final-cta h2 {
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 900;
  margin-bottom: 12px
}

.final-cta p {
  font-size: 16px;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto 32px
}

.final-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
  background: #06030F;
  border-top: 1px solid var(--border);
  padding: 44px 0 28px
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px
}

@media(max-width:768px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:480px) {
  .footer-inner {
    grid-template-columns: 1fr
  }
}

.footer-brand {
  font-family: var(--fd);
  font-size: 20px;
  font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px
}

.footer-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 16px
}

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

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: all .2s
}

.footer-social a:hover {
  background: var(--grad);
  border-color: transparent
}

.footer-col-title {
  font-family: var(--fd);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.footer-links a {
  font-size: 13px;
  color: var(--muted);
  transition: color .2s
}

.footer-links a:hover {
  color: var(--gold)
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 12px;
  color: rgba(155, 142, 196, .4);
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%
}

.footer-bottom span {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700
}

/* ═══════════════════════════════════════
   FLOATING ELEMENTS
═══════════════════════════════════════ */
.wa-fab {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 800;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .45);
  transition: all .25s;
  text-decoration: none;
}

.wa-fab:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 32px rgba(37, 211, 102, .65);
  color: #fff
}

.btt-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 800;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(15, 10, 36, .9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: all .3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btt-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.btt-btn:hover {
  background: var(--grad);
  border-color: transparent
}

/* sticky mobile CTA */
.mob-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 700;
  background: rgba(10, 5, 20, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 12px 10px;
  flex-direction: column;
  max-width: 100vw;
  box-sizing: border-box;
}

@media (max-width: 600px) {
  .mob-sticky-cta {
    display: flex;
  }

  body {
    padding-bottom: 90px;
  }
}

.mob-sticky-cta-row {
  display: flex;
  gap: 8px;
  width: 100%;
}

.mob-sticky-cta .btn {
  flex: 1;
  font-size: 13px;
  padding: 12px 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

@media (max-width: 360px) {
  .mob-sticky-cta .btn {
    font-size: 11px;
    padding: 10px 5px;
  }
}

@media (max-width: 330px) {
  .mob-sticky-cta-row {
    flex-direction: column;
    gap: 5px;
  }

  .mob-sticky-cta .btn {
    width: 100%;
    font-size: 12px;
  }

  body {
    padding-bottom: 140px;
  }
}

/* ═══════════════════════════════════════
   QR BOX
═══════════════════════════════════════ */
.qr-box {
  background: rgba(245, 158, 11, .06);
  border: 2px solid rgba(245, 158, 11, .3);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  margin-top: 8px
}

.qr-img {
  width: 160px;
  height: 160px;
  border-radius: 10px;
  margin: 0 auto 12px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #333;
  padding: 8px
}

.qr-img svg,
.qr-img img {
  width: 100%;
  height: 100%;
  object-fit: contain
}

.qr-label {
  font-family: var(--fd);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 6px
}

.qr-link {
  font-family: var(--fm);
  font-size: 12px;
  color: rgba(240, 235, 248, .6)
}

/* ═══════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px)
  }

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

.fade-up {
  animation: fadeUp .6s ease both
}

.fade-up-d1 {
  animation-delay: .1s
}

.fade-up-d2 {
  animation-delay: .2s
}

.fade-up-d3 {
  animation-delay: .3s
}

/* ═══════════════════════════════════════
   CERTIFICATE PORTAL (INTEGRATED)
   ═══════════════════════════════════════ */
.cert-portal-sec {
  background: linear-gradient(180deg, var(--dark), #1A0B35);
}

.cert-search-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.cert-input-group {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.cert-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 20px;
  color: #fff;
  font-family: var(--fm);
}

.cert-input:focus {
  border-color: var(--pll);
  outline: none;
  background: rgba(255, 255, 255, 0.08);
}

#certificateDisplayArea {
  display: none;
  margin-top: 50px;
  animation: fadeUp 0.8s ease forwards;
}

.cert-capture-wrapper {
  padding: 15px;
  background: #000;
  border-radius: 8px;
  display: inline-block;
  width: 100%;
  max-width: 900px;
}

.cert-frame {
  background: #fff;
  background-image: radial-gradient(rgba(245, 158, 11, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  color: #000;
  aspect-ratio: 1.414 / 1;
  position: relative;
  padding: 50px;
  text-align: center;
  border: 15px solid #fff;
  outline: 4px solid var(--p);
  box-shadow: inset 0 0 0 10px rgba(91, 31, 190, 0.05);
}

.cert-inner-border {
  position: absolute;
  top: 22px;
  left: 22px;
  right: 22px;
  bottom: 22px;
  border: 4px double var(--gold);
  pointer-events: none;
}

.cert-title {
  font-family: var(--fd);
  font-size: 38px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 5px;
  color: #111;
}

.cert-subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 35px;
  letter-spacing: 1px;
}

.cert-recipient {
  font-family: var(--fd);
  font-size: 32px;
  font-weight: 700;
  color: var(--p);
  border-bottom: 2px solid #EEE;
  display: inline-block;
  padding: 0 30px 5px;
  margin: 20px 0;
}

.cert-text {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  max-width: 550px;
  margin: 0 auto 40px;
}

.cert-footer {
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  margin-top: 30px;
}

.cert-sign {
  border-top: 1px solid #CCC;
  width: 150px;
  padding-top: 8px;
  position: relative;
}

.cert-sign-img {
  font-family: 'Dancing Script', cursive;
  font-size: 24px;
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  text-align: center;
}

.cert-sign-label {
  font-size: 10px;
  font-weight: 700;
  color: #999;
  text-transform: uppercase;
}

.cert-qr {
  width: 80px;
  height: 80px;
}

/* WhatsApp floating button styles (end of file) */
#wa-float-btn:hover { transform:scale(1.1); box-shadow:0 6px 28px rgba(37,211,102,0.6); }
#wa-float-btn:hover #wa-tooltip { opacity:1; }
@keyframes wa-pulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50%      { box-shadow: 0 4px 32px rgba(37,211,102,0.8), 0 0 0 10px rgba(37,211,102,0.1); }
}
#wa-float-btn { animation: wa-pulse 2.5s ease-in-out infinite; }
#wa-float-btn:hover { animation: none; }
