
:root{
  --bg1:#05010d;
  --bg2:#120022;
  --bg3:#1c0038;
  --text:#ffffff;
  --muted:#d7c8ff;
  --pink:#ff2fb3;
  --cyan:#21f3ff;
  --violet:#8b3dff;
  --yellow:#ffe45e;
  --border:rgba(255,255,255,0.14);
  --glass:rgba(255,255,255,0.06);
  --shadow:0 18px 48px rgba(0,0,0,.35);
  --radius:26px;
  --max:1180px;
}

*{box-sizing:border-box}
html{
  scroll-behavior:smooth;
  scroll-padding-top:96px;
}
body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at 20% 20%, rgba(255,47,179,.20), transparent 30%),
    radial-gradient(circle at 80% 10%, rgba(33,243,255,.16), transparent 26%),
    radial-gradient(circle at 50% 80%, rgba(139,61,255,.18), transparent 34%),
    linear-gradient(160deg, var(--bg1), var(--bg2) 45%, var(--bg3));
  min-height:100vh;
  overflow-x:hidden;
}
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  opacity:.05;
  background-image:
    linear-gradient(rgba(255,255,255,.8) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.8) 1px, transparent 1px);
  background-size:3px 3px, 3px 3px;
  mix-blend-mode:soft-light;
  z-index:0;
}
body::after{
  content:"";
  position:fixed;
  inset:auto auto -120px -120px;
  width:340px;
  height:340px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(255,47,179,.22), transparent 68%);
  filter:blur(16px);
  pointer-events:none;
  animation:floatGlow 9s ease-in-out infinite;
  z-index:0;
}
a{color:inherit}
img{max-width:100%; display:block}

@keyframes floatGlow{
  0%,100%{transform:translate(0,0) scale(1)}
  50%{transform:translate(30px,-35px) scale(1.08)}
}
@keyframes pulseSoft{
  0%,100%{transform:scale(1); opacity:.78}
  50%{transform:scale(1.03); opacity:1}
}
@keyframes shimmer{
  0%{transform:translateX(-130%) skewX(-18deg)}
  100%{transform:translateX(220%) skewX(-18deg)}
}
@keyframes fadeUp{
  from{opacity:0; transform:translateY(26px)}
  to{opacity:1; transform:translateY(0)}
}
@keyframes slowSpin{
  from{transform:rotate(0deg)}
  to{transform:rotate(360deg)}
}

.container{
  width:min(calc(100% - 32px), var(--max));
  margin-inline:auto;
  position:relative;
  z-index:1;
}

.site-header{
  position:sticky;
  top:0;
  z-index:100;
  backdrop-filter:blur(14px);
  background:rgba(5,1,13,.54);
  border-bottom:1px solid rgba(255,255,255,.08);
  transition:background .25s ease, box-shadow .25s ease;
}
.site-header.scrolled{
  background:rgba(5,1,13,.76);
  box-shadow:0 12px 30px rgba(0,0,0,.24);
}
.header-inner{
  min-height:126px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.brand{
  text-decoration:none;
  display:flex;
  align-items:center;
  gap:12px;
}
.brand-logo{
  display:block;
  height:108px;
  width:auto;
  max-width:min(500px, 72vw);
  object-fit:contain;
  filter:drop-shadow(0 0 18px rgba(80,120,255,.18)) drop-shadow(0 0 28px rgba(180,120,255,.14));
  transition:transform .22s ease, filter .22s ease;
}
.brand:hover .brand-logo{
  transform:translateY(-1px) scale(1.015);
  filter:drop-shadow(0 0 22px rgba(80,120,255,.22)) drop-shadow(0 0 34px rgba(180,120,255,.18));
}

.nav-toggle{
  display:none;
  width:48px;
  height:48px;
  border-radius:14px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.06);
  color:#fff;
  font-size:20px;
  transition:transform .2s ease, background .2s ease;
}
.nav-toggle:hover{
  transform:translateY(-1px);
  background:rgba(255,255,255,.1);
}
.site-nav{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}
.site-nav a{
  position:relative;
  overflow:hidden;
  text-decoration:none;
  padding:12px 15px;
  border-radius:14px;
  color:#f6f3ff;
  font-weight:700;
  font-size:15px;
  transition:transform .2s ease, background .25s ease, box-shadow .25s ease, color .25s ease;
}
.site-nav a::after{
  content:"";
  position:absolute;
  left:14px;
  right:14px;
  bottom:8px;
  height:2px;
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .25s ease;
  background:linear-gradient(90deg,var(--pink),var(--cyan));
}
.site-nav a.active,
.site-nav a:hover{
  background:rgba(255,255,255,.07);
  box-shadow:0 0 18px rgba(33,243,255,.10);
  transform:translateY(-1px);
}
.site-nav a.active::after,
.site-nav a:hover::after{
  transform:scaleX(1);
}

.page{
  padding:34px 0 60px;
}
.hero,
.section-panel,
.review-card,
.contact-card,
.project-card,
.drone-card,
.value-card,
.team-card,
.stat-card{
  border:1px solid var(--border);
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  backdrop-filter:blur(14px);
  box-shadow:var(--shadow);
  border-radius:var(--radius);
}
.hero{
  overflow:hidden;
  position:relative;
}
.hero::before{
  content:"";
  position:absolute;
  width:340px;
  height:340px;
  right:-100px;
  top:-90px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(33,243,255,.18), transparent 68%);
  filter:blur(8px);
  animation:floatGlow 11s ease-in-out infinite;
}
.hero::after{
  content:"";
  position:absolute;
  width:240px;
  height:240px;
  left:-70px;
  bottom:-70px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(255,47,179,.18), transparent 70%);
  filter:blur(8px);
  animation:floatGlow 8s ease-in-out infinite reverse;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.08fr .92fr;
}
.hero-copy{
  padding:58px 42px;
  position:relative;
  z-index:1;
}
.hero-media{
  padding:24px;
  border-left:1px solid rgba(255,255,255,.10);
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  position:relative;
  z-index:1;
}
.eyebrow{
  display:inline-block;
  margin-bottom:14px;
  color:var(--cyan);
  text-transform:uppercase;
  letter-spacing:.18em;
  font-weight:900;
  font-size:12px;
}
h1{
  margin:0 0 18px;
  font-size:clamp(40px,6vw,80px);
  line-height:.95;
  text-transform:uppercase;
  letter-spacing:.03em;
  font-weight:900;
  text-shadow:0 0 24px rgba(255,47,179,.18);
}
h2{
  margin:0 0 12px;
  font-size:clamp(30px,3.2vw,46px);
  line-height:1.04;
}
h3{
  margin:0 0 8px;
  font-size:22px;
}
.gradient{
  background:linear-gradient(90deg,var(--pink),var(--yellow),var(--cyan));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.lead{
  margin:0 0 18px;
  color:var(--muted);
  font-size:18px;
  line-height:1.65;
  max-width:720px;
}
.hook{
  margin:0 0 18px;
  font-size:24px;
  line-height:1.34;
  font-weight:800;
  max-width:760px;
}

.cta-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}
.btn{
  position:relative;
  overflow:hidden;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:180px;
  padding:14px 18px;
  border-radius:16px;
  text-decoration:none;
  font-weight:800;
  transition:transform .22s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
}
.btn::before{
  content:"";
  position:absolute;
  inset:0 auto 0 -30%;
  width:28%;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
  transform:translateX(-130%) skewX(-18deg);
}
.btn:hover::before{
  animation:shimmer .85s ease;
}
.btn-primary{
  color:#fff;
  background:linear-gradient(90deg,var(--pink),var(--violet));
  box-shadow:0 0 22px rgba(255,47,179,.34);
}
.btn-secondary{
  color:#fff;
  border:1px solid var(--border);
  background:rgba(255,255,255,.06);
}
.btn:hover{
  transform:translateY(-3px);
}
.btn-primary:hover{
  box-shadow:0 0 28px rgba(255,47,179,.42);
}
.btn-secondary:hover{
  background:rgba(255,255,255,.1);
  border-color:rgba(255,255,255,.22);
}

.video-placeholder{
  min-height:420px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(circle at 50% 30%, rgba(255,47,179,.22), transparent 34%),
    radial-gradient(circle at 30% 80%, rgba(33,243,255,.14), transparent 30%),
    linear-gradient(180deg,#10061c,#090312);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:28px;
  position:relative;
  overflow:hidden;
}
.video-placeholder::before{
  content:"";
  position:absolute;
  width:220px;
  height:220px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.07);
  animation:slowSpin 16s linear infinite;
}
.video-placeholder::after{
  content:"";
  position:absolute;
  inset:20px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.05);
  pointer-events:none;
}
.play{
  width:94px;height:94px;border-radius:50%;
  display:grid;place-items:center;
  font-size:40px;
  color:#fff;
  margin-bottom:18px;
  background:linear-gradient(135deg,var(--pink),var(--cyan));
  box-shadow:0 0 25px rgba(255,47,179,.38);
  animation:pulseSoft 3.2s ease-in-out infinite;
}
.note{
  color:var(--muted);
  font-size:14px;
  line-height:1.6;
}

.section-head{
  display:flex;
  justify-content:space-between;
  gap:18px;
  align-items:end;
  flex-wrap:wrap;
  margin-bottom:20px;
}
.section-panel{
  padding:28px;
  margin-top:28px;
}
.section-text{
  max-width:760px;
  color:var(--muted);
  font-size:16px;
  line-height:1.65;
  margin:0;
}

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

.value-card,.team-card,.stat-card,.review-card,.contact-card,.project-card,.drone-card{
  padding:22px;
  transition:transform .22s ease, box-shadow .25s ease, border-color .25s ease;
}
.value-card:hover,.team-card:hover,.stat-card:hover,.review-card:hover,.contact-card:hover{
  transform:translateY(-4px);
  box-shadow:0 22px 54px rgba(0,0,0,.38);
  border-color:rgba(255,255,255,.22);
}
.tag{
  display:inline-block;
  margin-bottom:12px;
  padding:8px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.09em;
  color:var(--yellow);
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.06);
}

.project-card,.drone-card{
  overflow:hidden;
  padding:0;
  text-decoration:none;
}
.project-card:hover,.drone-card:hover{
  transform:translateY(-5px);
  box-shadow:0 24px 58px rgba(0,0,0,.4);
  border-color:rgba(255,255,255,.22);
}
.project-preview,.drone-preview{
  height:190px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.drone-preview{
  display:flex;align-items:center;justify-content:center;text-align:center;
  font-weight:900; letter-spacing:.05em;
  background:
    radial-gradient(circle at 20% 20%, rgba(33,243,255,.24), transparent 30%),
    radial-gradient(circle at 80% 80%, rgba(255,47,179,.22), transparent 32%),
    linear-gradient(135deg,#081321,#13052a);
}
.project-preview{
  background:
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04)),
    linear-gradient(135deg,#12051b,#1b1038);
  display:flex;flex-direction:column;
}
.browser-top{
  display:flex; gap:7px; padding:12px 14px;
  background:rgba(255,255,255,.05);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.dot{width:10px;height:10px;border-radius:50%;background:rgba(255,255,255,.42)}
.browser-body{
  padding:16px;
  display:grid;
  gap:10px;
  height:100%;
}
.line-lg{height:18px; width:72%; border-radius:999px; background:linear-gradient(90deg, rgba(255,47,179,.8), rgba(33,243,255,.8))}
.line-md{height:12px; width:88%; border-radius:999px; background:rgba(255,255,255,.16)}
.line-sm{height:12px; width:64%; border-radius:999px; background:rgba(255,255,255,.12)}
.mini-blocks{display:grid; grid-template-columns:1fr 1fr; gap:10px}
.mini-block{height:58px; border-radius:16px; background:linear-gradient(135deg, rgba(255,47,179,.18), rgba(33,243,255,.12)); border:1px solid rgba(255,255,255,.08)}
.card-copy{padding:18px 20px 22px}
.card-copy p{margin:0; color:var(--muted); line-height:1.6; font-size:15px}

.review-stars{
  color:var(--yellow);
  letter-spacing:.12em;
  margin-bottom:10px;
  font-size:16px;
}
.review-card p,.contact-card p,.team-card p,.value-card p,.stat-card p{
  margin:0;
  color:var(--muted);
  line-height:1.65;
}

.contact-list{
  display:grid;
  gap:14px;
}
.contact-item{
  padding:16px 18px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.05);
  transition:transform .2s ease, background .25s ease;
}
.contact-item:hover{
  transform:translateY(-2px);
  background:rgba(255,255,255,.08);
}
.contact-item strong{display:block; margin-bottom:6px}

.site-footer{
  border-top:1px solid rgba(255,255,255,.08);
  padding:26px 0 40px;
  color:#d9cdfc;
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:center;
  flex-wrap:wrap;
}
.footer-links{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.footer-links a{
  text-decoration:none;
  color:#f0ebff;
  opacity:.85;
  transition:opacity .2s ease, transform .2s ease;
}
.footer-links a:hover{
  opacity:1;
  transform:translateY(-1px);
}

/* scroll reveal */
.reveal{
  opacity:0;
  transform:translateY(28px);
  transition:opacity .8s ease, transform .8s cubic-bezier(.2,.8,.2,1);
}
.reveal.is-visible{
  opacity:1;
  transform:translateY(0);
}
.reveal-delay-1{transition-delay:.08s}
.reveal-delay-2{transition-delay:.16s}
.reveal-delay-3{transition-delay:.24s}
.reveal-delay-4{transition-delay:.32s}

/* Tablet */
@media (max-width: 980px){
  .hero-grid,
  .grid-4{
    grid-template-columns:repeat(2,1fr);
  }
  .hero-grid{
    grid-template-columns:1fr;
  }
  .hero-media{
    border-left:none;
    border-top:1px solid rgba(255,255,255,.10);
  }
  .video-placeholder{
    min-height:320px;
  }
  .hero-copy{padding:42px 30px}
}

/* Phone */
@media (max-width: 760px){
  .nav-toggle{display:grid; place-items:center}
  .site-nav{
    position:absolute;
    left:16px;
    right:16px;
    top:126px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    padding:12px;
    border:1px solid var(--border);
    border-radius:22px;
    background:rgba(11,3,21,.96);
    box-shadow:var(--shadow);
  }
  .site-nav.open{display:flex}
  .site-nav a{padding:14px 16px}
  .page{padding-top:24px}
  .hero-copy{padding:34px 22px}
  .hero-media{padding:18px}
  .section-panel{padding:22px}
  .grid-2,.grid-3,.grid-4{
    grid-template-columns:1fr;
  }
  .hook{font-size:20px}
  .lead{font-size:16px}
  .container{
    width:min(calc(100% - 20px), var(--max));
  }
}

@media (prefers-reduced-motion: reduce){
  *{
    animation:none !important;
    transition:none !important;
    scroll-behavior:auto !important;
  }
  .reveal{
    opacity:1 !important;
    transform:none !important;
  }
}


@media (max-width: 760px){
  .brand-logo{
    height:72px;
    max-width:86vw;
  }
}

@media (min-width: 981px){
  .brand-logo{
    height:122px;
    max-width:560px;
  }
}


.video-brand-signature{
  margin-top:18px;
  text-align:center;
  padding:16px 18px 18px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.10);
  background:linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow:inset 0 0 20px rgba(255,255,255,.03), 0 0 26px rgba(255,140,0,.10);
}

.video-brand-title{
  margin:0;
  font-size:clamp(20px, 2.2vw, 28px);
  font-weight:900;
  line-height:1.05;
  letter-spacing:.03em;
  text-transform:uppercase;
  background:linear-gradient(90deg, #ffffff, #ffd08a, #ff8c00);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  text-shadow:0 0 20px rgba(255,140,0,.12);
}

.video-brand-subtitle{
  margin-top:8px;
  color:var(--cyan);
  text-transform:uppercase;
  letter-spacing:.28em;
  font-size:11px;
  font-weight:800;
  opacity:.95;
}

.video-brand-line{
  width:84px;
  height:3px;
  border-radius:999px;
  margin:12px auto 0;
  background:linear-gradient(90deg, var(--pink), var(--cyan), var(--yellow));
  box-shadow:0 0 16px rgba(255,140,0,.22);
}

@media (max-width: 760px){
  .video-brand-title{
    font-size:22px;
  }
  .video-brand-subtitle{
    letter-spacing:.18em;
    font-size:10px;
  }
}


.hero-video-wrap{
  position:relative;
  width:100%;
  border-radius:24px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(180deg,#0f0818,#090312);
  box-shadow:0 14px 40px rgba(0,0,0,.28);
}

.hero-video{
  display:block;
  width:100%;
  height:min(420px, 52vw);
  min-height:260px;
  object-fit:cover;
  background:#090312;
}

.video-audio-toggle{
  position:absolute;
  right:14px;
  bottom:14px;
  z-index:3;
  border:none;
  border-radius:999px;
  padding:12px 16px;
  font-weight:800;
  font-size:14px;
  color:#fff;
  cursor:pointer;
  background:linear-gradient(90deg,var(--pink),var(--violet));
  box-shadow:0 0 22px rgba(255,47,179,.28);
  transition:transform .2s ease, box-shadow .2s ease;
}
.video-audio-toggle:hover{
  transform:translateY(-2px);
  box-shadow:0 0 28px rgba(255,47,179,.38);
}

@media (max-width: 760px){
  .hero-video{
    height:260px;
  }
  .video-audio-toggle{
    right:10px;
    bottom:10px;
    padding:11px 14px;
    font-size:13px;
  }
}





.social-dialog-backdrop{
  position:fixed;
  inset:0;
  background:rgba(5,1,13,.72);
  backdrop-filter:blur(10px);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:18px;
  z-index:9999;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity .24s ease, visibility .24s ease;
}

.social-dialog-backdrop.open{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}

.social-dialog{
  width:min(100%, 560px);
  border:1px solid rgba(255,255,255,.14);
  background:linear-gradient(180deg, rgba(18,0,34,.96), rgba(10,4,24,.96));
  box-shadow:0 24px 60px rgba(0,0,0,.45), 0 0 30px rgba(139,61,255,.16);
  border-radius:28px;
  padding:24px;
  position:relative;
  transform:scale(.88);
  opacity:0;
  transition:transform .28s cubic-bezier(.2,.8,.2,1), opacity .28s ease;
}

.social-dialog-backdrop.open .social-dialog{
  transform:scale(1);
  opacity:1;
}

.social-dialog-close{
  position:absolute;
  top:14px;
  right:14px;
  width:42px;
  height:42px;
  border:none;
  border-radius:14px;
  cursor:pointer;
  color:#fff;
  font-size:20px;
  background:rgba(255,255,255,.08);
  transition:transform .2s ease, background .2s ease;
}
.social-dialog-close:hover{
  transform:translateY(-1px);
  background:rgba(255,255,255,.12);
}

.social-dialog-title{
  margin:0 0 10px;
  font-size:clamp(24px, 3vw, 34px);
  font-weight:900;
  line-height:1.06;
}

.social-dialog-text{
  margin:0 0 18px;
  color:var(--muted);
  line-height:1.65;
  font-size:15px;
}

.social-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.social-card-link{
  text-decoration:none;
  color:inherit;
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border-radius:22px;
  padding:18px;
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  box-shadow:0 14px 34px rgba(0,0,0,.24);
}
.social-card-link:hover{
  transform:translateY(-3px);
  border-color:rgba(255,255,255,.22);
  box-shadow:0 18px 40px rgba(0,0,0,.3);
}

.social-card-link h4{
  margin:0 0 8px;
  font-size:20px;
}

.social-card-link p{
  margin:0;
  color:var(--muted);
  line-height:1.55;
  font-size:14px;
}

.social-note{
  margin-top:14px;
  color:var(--yellow);
  font-size:12px;
  line-height:1.55;
}

@media (max-width: 760px){
  .social-grid{
    grid-template-columns:1fr;
  }
}


.contact-item{
  position:relative;
  display:block;
  text-decoration:none;
  color:inherit;
  padding:18px 18px 16px;
  padding-right:140px;
}

.contact-item-tip{
  position:absolute;
  top:12px;
  right:12px;
  max-width:120px;
  padding:7px 10px;
  border-radius:999px;
  background:linear-gradient(135deg, rgba(33,243,255,.22), rgba(80,120,255,.22));
  border:1px solid rgba(80,160,255,.34);
  color:#8fd2ff;
  font-size:11px;
  line-height:1.2;
  font-weight:800;
  text-align:center;
  box-shadow:0 0 18px rgba(80,160,255,.12);
  backdrop-filter:blur(8px);
}

.contact-item span{
  display:block;
  max-width:90%;
}

@media (max-width: 760px){
  .contact-item{
    padding-right:18px;
    padding-top:54px;
  }
  .contact-item-tip{
    top:10px;
    right:10px;
    max-width:130px;
  }
  .contact-item span{
    max-width:100%;
  }
}


.social-card-link{
  position:relative;
  padding-top:54px;
  padding-right:18px;
}

.social-card-tip{
  position:absolute;
  top:12px;
  right:12px;
  max-width:128px;
  padding:7px 10px;
  border-radius:999px;
  background:linear-gradient(135deg, rgba(33,243,255,.22), rgba(80,120,255,.22));
  border:1px solid rgba(80,160,255,.34);
  color:#8fd2ff;
  font-size:11px;
  line-height:1.2;
  font-weight:800;
  text-align:center;
  box-shadow:0 0 18px rgba(80,160,255,.12);
  backdrop-filter:blur(8px);
}

@media (max-width: 760px){
  .social-card-link{
    padding-top:56px;
  }
}


.site-nav{margin-left:auto}
.theme-toggle{
  position:fixed;
  top:18px;
  right:18px;
  z-index:1200;
  margin:0;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(10,8,24,.72);
  color:#ffffff;
  border-radius:999px;
  padding:8px 12px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.01em;
  cursor:pointer;
  box-shadow:0 10px 24px rgba(0,0,0,.22);
  backdrop-filter:blur(10px);
  transition:transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}
.theme-toggle:hover{
  transform:translateY(-2px);
  background:rgba(18,14,36,.86);
  border-color:rgba(255,255,255,.22);
  box-shadow:0 14px 30px rgba(0,0,0,.28);
}
.brand-logo{
  height:120px;
  max-width:min(560px, 76vw);
}
.header-inner{
  min-height:132px;
}
.preview-hero{
  height:40px;
  border-radius:14px;
  margin-bottom:6px;
  position:relative;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
}
.preview-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,0)),
    radial-gradient(circle at 80% 30%, rgba(255,255,255,.12), transparent 35%);
}
.preview-cima{
  background:
    linear-gradient(135deg, #181531, #2a2345 55%, #4f3a62);
}
.preview-cover{
  background:
    linear-gradient(135deg, #0f1830, #1a2450 55%, #2459b8);
}
.preview-mercedes{
  background:
    linear-gradient(135deg, #161616, #2a2a2a 55%, #8a6e3d);
}
.preview-next{
  background:
    linear-gradient(135deg, #140d22, #2b184d 55%, #5a2fd2);
}
.preview-hero::after{
  content:"";
  position:absolute;
  left:10px;
  right:18px;
  top:12px;
  height:10px;
  border-radius:999px;
  background:rgba(255,255,255,.18);
  box-shadow:0 16px 0 rgba(255,255,255,.12);
}

/* Light theme */
body.light-theme{
  --bg1:#fcfdff;
  --bg2:#f6f8ff;
  --bg3:#eef2ff;
  --text:#13182c;
  --muted:#5f6b8f;
  --border:rgba(40,60,120,.10);
  --glass:rgba(255,255,255,.88);
  --shadow:0 24px 60px rgba(80,98,150,.10);
  background:
    radial-gradient(circle at 12% 12%, rgba(139,61,255,.08), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(33,243,255,.06), transparent 24%),
    radial-gradient(circle at 50% 82%, rgba(255,47,179,.05), transparent 26%),
    linear-gradient(160deg, var(--bg1), var(--bg2) 48%, var(--bg3));
}
body.light-theme::before{
  opacity:.025;
}
body.light-theme::after{
  background:radial-gradient(circle, rgba(113,89,193,.10), transparent 70%);
}
body.light-theme .site-header{
  background:rgba(255,255,255,.76);
  border-bottom:1px solid rgba(34,52,106,.06);
  backdrop-filter:blur(16px);
}
body.light-theme .site-header.scrolled{
  background:rgba(255,255,255,.92);
  box-shadow:0 14px 32px rgba(74,92,144,.08);
}
body.light-theme .site-nav a{
  color:#202947;
}
body.light-theme .site-nav a.active,
body.light-theme .site-nav a:hover{
  background:rgba(113,89,193,.08);
  box-shadow:none;
}
body.light-theme .site-nav a::after{
  background:linear-gradient(90deg,#7159c1,#4aa7ff);
}
body.light-theme .theme-toggle{
  background:linear-gradient(180deg, rgba(255,255,255,.95), rgba(245,248,255,.92));
  color:#202947;
  border-color:rgba(40,60,120,.10);
  box-shadow:0 10px 24px rgba(70,90,150,.08);
}
body.light-theme .theme-toggle:hover{
  background:#ffffff;
  border-color:rgba(40,60,120,.16);
}
body.light-theme .hero,
body.light-theme .section-panel,
body.light-theme .review-card,
body.light-theme .contact-card,
body.light-theme .project-card,
body.light-theme .drone-card,
body.light-theme .value-card,
body.light-theme .team-card,
body.light-theme .stat-card{
  background:linear-gradient(180deg, rgba(255,255,255,.96), rgba(250,252,255,.92));
  border-color:rgba(40,60,120,.08);
  box-shadow:0 22px 54px rgba(79,98,146,.08);
}
body.light-theme .eyebrow{
  color:#6b61d9;
  text-shadow:none;
}
body.light-theme h1,
body.light-theme h2,
body.light-theme h3{
  color:#1b2140;
  text-shadow:none;
}
body.light-theme .gradient{
  background:linear-gradient(90deg,#5d59db,#338dff,#7b68ff);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
body.light-theme .lead,
body.light-theme .section-text,
body.light-theme .card-copy p,
body.light-theme .review-card p,
body.light-theme .contact-card p,
body.light-theme .team-card p,
body.light-theme .value-card p,
body.light-theme .stat-card p{
  color:#5f6b8f;
}
body.light-theme .video-brand-signature,
body.light-theme .social-dialog,
body.light-theme .contact-item,
body.light-theme .video-audio-toggle,
body.light-theme .video-placeholder,
body.light-theme .hero-video-wrap{
  color:var(--text);
}
body.light-theme .video-brand-signature{
  background:linear-gradient(135deg, rgba(113,89,193,.06), rgba(74,167,255,.04));
  box-shadow:inset 0 0 20px rgba(255,255,255,.55), 0 18px 34px rgba(79,98,146,.08);
  border-color:rgba(40,60,120,.08);
}
body.light-theme .video-brand-title{
  background:linear-gradient(90deg, #1d2345, #5e56dd, #3895ff);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
body.light-theme .video-brand-subtitle{
  color:#6271bc;
}
body.light-theme .hero-video-wrap{
  background:linear-gradient(180deg,#f5f8ff,#edf2ff);
  border-color:rgba(40,60,120,.08);
}
body.light-theme .video-audio-toggle{
  color:#fff;
  box-shadow:0 14px 30px rgba(113,89,193,.20);
}
body.light-theme .project-preview{
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(245,248,255,.96)),
    linear-gradient(135deg,#fafbff,#eef2ff);
}
body.light-theme .browser-top{
  background:rgba(92,112,210,.06);
  border-bottom:1px solid rgba(92,112,210,.10);
}
body.light-theme .line-md{background:rgba(30,45,90,.12)}
body.light-theme .line-sm{background:rgba(30,45,90,.08)}
body.light-theme .mini-block{
  background:linear-gradient(135deg, rgba(96,116,255,.12), rgba(33,243,255,.06));
  border-color:rgba(40,60,120,.06);
}
body.light-theme .tag{
  color:#5d59db;
  background:rgba(113,89,193,.06);
  border-color:rgba(113,89,193,.10);
}
body.light-theme .site-footer{
  color:#7580a6;
  border-top:1px solid rgba(40,60,120,.06);
}
body.light-theme .footer-links a{
  color:#3d4b77;
}
body.light-theme .social-dialog-backdrop{
  background:rgba(236,241,255,.62);
}
body.light-theme .social-dialog{
  background:linear-gradient(180deg, rgba(255,255,255,.97), rgba(246,249,255,.95));
  border-color:rgba(40,60,120,.08);
  box-shadow:0 28px 60px rgba(79,98,146,.16);
}
body.light-theme .social-dialog-close{
  background:rgba(113,89,193,.08);
  color:#1f2542;
}
body.light-theme .social-card-link{
  background:linear-gradient(180deg, rgba(255,255,255,.96), rgba(246,249,255,.92));
  border-color:rgba(40,60,120,.08);
  box-shadow:0 14px 34px rgba(79,98,146,.08);
}
body.light-theme .social-card-tip,
body.light-theme .contact-item-tip{
  background:linear-gradient(135deg, rgba(74,167,255,.14), rgba(113,89,193,.12));
  border-color:rgba(74,167,255,.20);
  color:#4c7fe6;
  box-shadow:0 0 16px rgba(74,167,255,.08);
}
body.light-theme .contact-item{
  background:rgba(255,255,255,.84);
  border-color:rgba(40,60,120,.08);
}
body.light-theme .contact-item:hover{
  background:#ffffff;
}
body.light-theme .drone-preview{
  background:
    radial-gradient(circle at 20% 20%, rgba(74,167,255,.14), transparent 30%),
    radial-gradient(circle at 80% 80%, rgba(113,89,193,.12), transparent 32%),
    linear-gradient(135deg,#f8faff,#edf2ff);
  color:#2a3561;
}

@media (max-width: 760px){
  .theme-toggle{
    top:86px;
    right:12px;
    padding:7px 11px;
    font-size:11px;
  }
  .site-nav{
    margin-left:0;
  }
  .brand-logo{
    height:82px;
    max-width:82vw;
  }
  .header-inner{
    min-height:112px;
  }
}


.social-dialog{
  max-height:min(82vh, 760px);
  overflow:auto;
}

.social-dialog-title,
.social-card-link h4,
.contact-item strong{
  color:var(--text);
}

.social-dialog-text,
.social-card-link p,
.contact-item span{
  color:var(--muted);
}

@media (max-width: 760px){
  .social-dialog{
    width:min(100%, 94vw);
    padding:20px 16px 16px;
    border-radius:24px;
  }
  .social-dialog-title{
    padding-right:42px;
    font-size:24px;
  }
  .social-dialog-text{
    font-size:14px;
  }
  .social-card-link{
    border-radius:18px;
    padding-top:52px;
  }
  .social-card-tip{
    top:10px;
    right:10px;
    max-width:118px;
    font-size:10px;
  }
  .contact-item{
    border-radius:18px;
  }
}
body.light-theme .social-dialog-title,
body.light-theme .social-card-link h4,
body.light-theme .contact-item strong{
  color:#1b2140;
}
body.light-theme .social-dialog-text,
body.light-theme .social-card-link p,
body.light-theme .contact-item span{
  color:#5f6b8f;
}
body.light-theme .theme-toggle{
  background:rgba(255,255,255,.88);
  color:#1e2440;
  border-color:rgba(40,60,120,.10);
  box-shadow:0 10px 24px rgba(79,98,146,.10);
}
body.light-theme .theme-toggle:hover{
  background:#ffffff;
  border-color:rgba(40,60,120,.16);
}


/* Dark theme hardening fixes */
body:not(.light-theme) .hero,
body:not(.light-theme) .section-panel,
body:not(.light-theme) .review-card,
body:not(.light-theme) .contact-card,
body:not(.light-theme) .project-card,
body:not(.light-theme) .drone-card,
body:not(.light-theme) .value-card,
body:not(.light-theme) .team-card,
body:not(.light-theme) .stat-card{
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04)) !important;
  border-color:rgba(255,255,255,.14) !important;
  color:var(--text);
}

body:not(.light-theme) .contact-item{
  background:rgba(255,255,255,.05) !important;
  border-color:rgba(255,255,255,.10) !important;
}

body:not(.light-theme) .social-dialog{
  background:linear-gradient(180deg, rgba(18,0,34,.96), rgba(10,4,24,.96)) !important;
  color:var(--text) !important;
}

body:not(.light-theme) .social-card-link{
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04)) !important;
  border-color:rgba(255,255,255,.12) !important;
}

body:not(.light-theme) .video-brand-signature{
  background:linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.03)) !important;
}

body:not(.light-theme) .site-nav{
  background:rgba(11,3,21,.96);
}

body:not(.light-theme) .site-nav a{
  color:#f6f3ff;
}


body.light-theme .nav-toggle{
  color:#1e2440;
  background:rgba(255,255,255,.88);
  border-color:rgba(40,60,120,.10);
  box-shadow:0 10px 24px rgba(79,98,146,.10);
}
body.light-theme .nav-toggle:hover{
  background:#ffffff;
  border-color:rgba(40,60,120,.16);
}


@media (max-width: 760px){
  body:not(.light-theme) .value-card,
  body:not(.light-theme) .team-card,
  body:not(.light-theme) .stat-card,
  body:not(.light-theme) .review-card,
  body:not(.light-theme) .contact-card{
    background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04)) !important;
  }

  body:not(.light-theme) .section-panel{
    background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04)) !important;
  }

  body.light-theme .site-nav{
    background:rgba(255,255,255,.98);
    border-color:rgba(40,60,120,.10);
  }

  body.light-theme .site-nav a{
    color:#1e2440;
  }
}


.btn-quote-home{
  width:100%;
  margin-top:16px;
  min-height:58px;
  font-size:18px;
  box-shadow:0 0 28px rgba(255,47,179,.28);
}

.preventivo-layout{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:22px;
  align-items:start;
}

.preventivo-form{
  display:grid;
  gap:16px;
}

.preventivo-card,
.preventivo-summary{
  border:1px solid var(--border);
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  backdrop-filter:blur(14px);
  box-shadow:var(--shadow);
  border-radius:24px;
  padding:22px;
}

.preventivo-card h3,
.preventivo-summary h3{
  margin:0 0 14px;
}

.option-row{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:16px;
  padding:16px 0;
  border-top:1px solid rgba(255,255,255,.08);
}
.option-row:first-of-type{
  border-top:none;
  padding-top:0;
}
.option-row strong{
  display:block;
  margin-bottom:6px;
}
.option-row small{
  display:block;
  color:var(--muted);
  line-height:1.55;
  font-size:14px;
  max-width:520px;
}
.option-row input[type="checkbox"],
.option-row input[type="radio"]{
  width:20px;
  height:20px;
  accent-color:#8b3dff;
  cursor:pointer;
  margin-top:2px;
}
.option-row-fixed{
  align-items:center;
}
.price-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:72px;
  padding:10px 12px;
  border-radius:999px;
  background:linear-gradient(90deg, var(--pink), var(--violet));
  color:#fff;
  font-weight:800;
  box-shadow:0 0 22px rgba(255,47,179,.22);
}
.inline-select{
  display:flex;
  align-items:center;
  gap:10px;
}
.inline-select select{
  background:rgba(255,255,255,.08);
  color:var(--text);
  border:1px solid rgba(255,255,255,.12);
  border-radius:12px;
  padding:8px 10px;
  font-weight:700;
}
.price-hint{
  color:var(--muted);
  font-size:13px;
}
.summary-box{
  display:grid;
  gap:10px;
  margin:16px 0 18px;
}
.summary-line{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  padding:14px 16px;
  border-radius:18px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
}
.summary-line strong{
  font-size:22px;
}
.summary-label{
  margin:0 0 10px;
  color:var(--muted);
}
.summary-list{
  margin:0;
  padding-left:18px;
  display:grid;
  gap:8px;
  color:var(--text);
}
.summary-list li{
  color:var(--muted);
}
.summary-note{
  margin-top:16px;
  padding:14px 16px;
  border-radius:18px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  color:var(--muted);
  line-height:1.6;
  font-size:14px;
}
.btn-telegram-quote{
  width:100%;
  margin-top:18px;
  min-height:56px;
  font-size:17px;
}

/* Light theme adjustments for preventivo */
body.light-theme .preventivo-card,
body.light-theme .preventivo-summary{
  background:linear-gradient(180deg, rgba(255,255,255,.96), rgba(250,252,255,.92));
  border-color:rgba(40,60,120,.08);
  box-shadow:0 22px 54px rgba(79,98,146,.08);
}
body.light-theme .summary-line,
body.light-theme .summary-note{
  background:rgba(255,255,255,.86);
  border-color:rgba(40,60,120,.08);
}
body.light-theme .inline-select select{
  background:rgba(255,255,255,.92);
  color:#1b2140;
  border-color:rgba(40,60,120,.10);
}

@media (max-width: 980px){
  .preventivo-layout{
    grid-template-columns:1fr;
  }
}

@media (max-width: 760px){
  .btn-quote-home{
    min-height:52px;
    font-size:16px;
  }
  .preventivo-card,
  .preventivo-summary{
    padding:18px;
    border-radius:22px;
  }
  .option-row{
    flex-direction:column;
    align-items:flex-start;
  }
  .option-row small{
    max-width:100%;
  }
  .inline-select{
    width:100%;
  }
  .inline-select select{
    min-width:72px;
  }
  .summary-line strong{
    font-size:20px;
  }
}



.preventivo-card .price-badge{
  margin-left:auto;
}

.preventivo-card .option-row-fixed{
  padding-bottom:0;
}

.preventivo-card .option-row-fixed + .option-row{
  border-top:1px solid rgba(255,255,255,.08);
}

@media (max-width: 980px){
  .preventivo-layout{
    grid-template-columns:1fr;
  }
}

@media (max-width: 760px){
  .preventivo-form{
    gap:14px;
  }
  .preventivo-card,
  .preventivo-summary{
    padding:18px;
  }
  .option-row{
    gap:12px;
  }
  .price-badge{
    min-width:68px;
    padding:9px 11px;
    font-size:14px;
  }
  .summary-line{
    padding:13px 14px;
  }
  .summary-line strong{
    font-size:19px;
  }
}


body.light-theme .btn-secondary{
  color:#1e2440;
  border-color:rgba(40,60,120,.12);
  background:rgba(255,255,255,.86);
}
body.light-theme .btn-secondary:hover{
  color:#1e2440;
  background:#ffffff;
  border-color:rgba(40,60,120,.18);
}





.hero-main-title{
  margin:0 0 22px;
  display:flex;
  flex-direction:column;
  gap:4px;
  max-width:680px;
  line-height:.94;
  text-transform:uppercase;
  letter-spacing:.035em;
  font-weight:900;
}

.hero-title-line{
  display:block;
  font-size:clamp(28px, 3.4vw, 52px);
  background:linear-gradient(90deg, #fffaf2 0%, #ffe8bf 30%, #ffc86d 65%, #ffad2f 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  text-shadow:none;
}

.hero-main-title::after{
  content:"";
  width:108px;
  height:4px;
  border-radius:999px;
  margin-top:14px;
  background:linear-gradient(90deg, #ff49be, #30ebff, #ffe45e);
  box-shadow:0 0 14px rgba(48,235,255,.18);
}

@media (max-width: 980px){
  .hero-title-line{
    font-size:clamp(26px, 4.2vw, 42px);
  }
  .hero-main-title{
    max-width:600px;
  }
}

@media (max-width: 760px){
  .hero-main-title{
    margin-bottom:18px;
    gap:3px;
    max-width:100%;
    letter-spacing:.028em;
  }
  .hero-title-line{
    font-size:clamp(24px, 7vw, 34px);
    line-height:.98;
  }
  .hero-main-title::after{
    width:88px;
    margin-top:12px;
  }
}


/* Global dark-mode mobile Safari fix for all sections */
@media (max-width: 760px){
  body:not(.light-theme) .hero,
  body:not(.light-theme) .section-panel,
  body:not(.light-theme) .review-card,
  body:not(.light-theme) .contact-card,
  body:not(.light-theme) .project-card,
  body:not(.light-theme) .drone-card,
  body:not(.light-theme) .value-card,
  body:not(.light-theme) .team-card,
  body:not(.light-theme) .stat-card,
  body:not(.light-theme) .preventivo-card,
  body:not(.light-theme) .preventivo-summary{
    background:linear-gradient(180deg, rgba(26,12,44,.97), rgba(14,7,30,.95)) !important;
    border-color:rgba(255,255,255,.12) !important;
    color:#ffffff !important;
    backdrop-filter:none !important;
    -webkit-backdrop-filter:none !important;
    box-shadow:0 18px 42px rgba(0,0,0,.30) !important;
  }

  body:not(.light-theme) .contact-item,
  body:not(.light-theme) .social-card-link,
  body:not(.light-theme) .summary-line,
  body:not(.light-theme) .summary-note{
    background:rgba(255,255,255,.05) !important;
    border-color:rgba(255,255,255,.08) !important;
    color:#d7c8ff !important;
    backdrop-filter:none !important;
    -webkit-backdrop-filter:none !important;
  }

  body:not(.light-theme) .video-brand-signature,
  body:not(.light-theme) .social-dialog{
    background:linear-gradient(180deg, rgba(24,10,40,.98), rgba(12,5,24,.98)) !important;
    color:#ffffff !important;
    backdrop-filter:none !important;
    -webkit-backdrop-filter:none !important;
  }

  body:not(.light-theme) h1,
  body:not(.light-theme) h2,
  body:not(.light-theme) h3,
  body:not(.light-theme) .preventivo-card h3,
  body:not(.light-theme) .preventivo-summary h3,
  body:not(.light-theme) .option-row strong,
  body:not(.light-theme) .social-dialog-title,
  body:not(.light-theme) .social-card-link h4,
  body:not(.light-theme) .contact-item strong{
    color:#ffffff !important;
    text-shadow:none !important;
  }

  body:not(.light-theme) .lead,
  body:not(.light-theme) .section-text,
  body:not(.light-theme) .card-copy p,
  body:not(.light-theme) .review-card p,
  body:not(.light-theme) .contact-card p,
  body:not(.light-theme) .team-card p,
  body:not(.light-theme) .value-card p,
  body:not(.light-theme) .stat-card p,
  body:not(.light-theme) .option-row small,
  body:not(.light-theme) .summary-list li,
  body:not(.light-theme) .summary-note,
  body:not(.light-theme) .summary-line span,
  body:not(.light-theme) .social-dialog-text,
  body:not(.light-theme) .social-card-link p,
  body:not(.light-theme) .contact-item span{
    color:#d7c8ff !important;
  }

  body:not(.light-theme) .tag,
  body:not(.light-theme) .eyebrow{
    color:#ffe45e !important;
    background:rgba(255,255,255,.06) !important;
    border-color:rgba(255,255,255,.10) !important;
    text-shadow:none !important;
  }

  body:not(.light-theme) .price-badge{
    box-shadow:0 0 22px rgba(255,47,179,.22) !important;
  }

  body:not(.light-theme) .site-nav{
    background:rgba(11,3,21,.98) !important;
    border-color:rgba(255,255,255,.10) !important;
  }

  body:not(.light-theme) .site-nav a{
    color:#ffffff !important;
  }

  body.light-theme .nav-toggle{
    color:#12182d !important;
  }
}


.drone-video-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:22px;
}

.drone-video-card{
  border-radius:30px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  box-shadow:0 18px 42px rgba(0,0,0,.24);
}

.drone-video-embed{
  position:relative;
  width:100%;
  aspect-ratio:16 / 9;
  background:#000;
}

.drone-video-embed iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}

@media (max-width: 980px){
  .drone-video-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width: 760px){
  .drone-video-card{
    border-radius:24px;
  }
}


@media (max-width: 760px){
  body:not(.light-theme) .drone-video-card{
    background:linear-gradient(180deg, rgba(26,12,44,.97), rgba(14,7,30,.95)) !important;
    border-color:rgba(255,255,255,.12) !important;
    backdrop-filter:none !important;
    -webkit-backdrop-filter:none !important;
    box-shadow:0 18px 42px rgba(0,0,0,.30) !important;
  }
}


.discount-box{
  margin-top:16px;
  padding:16px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.10);
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
}
.discount-title{
  font-size:15px;
  font-weight:900;
  margin-bottom:6px;
}
.discount-subtitle{
  color:var(--muted);
  line-height:1.55;
  font-size:14px;
}
.discount-form{
  display:flex;
  gap:10px;
  margin-top:14px;
}
.discount-input{
  flex:1;
  min-width:0;
  border:none;
  outline:none;
  border-radius:16px;
  padding:13px 14px;
  font-size:14px;
  color:var(--text);
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.08);
}
.discount-input::placeholder{
  color:rgba(255,255,255,.48);
}
.discount-btn{
  min-width:110px;
}
.discount-message{
  min-height:20px;
  margin-top:10px;
  font-size:13px;
  font-weight:700;
  color:#8fd2ff;
}
.discount-message.success{
  color:#7dffb2;
}
.discount-message.error{
  color:#ff9db1;
}
body.light-theme .discount-box{
  background:linear-gradient(180deg, rgba(255,255,255,.96), rgba(250,252,255,.92));
  border-color:rgba(40,60,120,.08);
}
body.light-theme .discount-subtitle{
  color:#5f6b8f;
}
body.light-theme .discount-input{
  background:#ffffff;
  border:1px solid rgba(40,60,120,.10);
  color:#1e2440;
}
body.light-theme .discount-input::placeholder{
  color:#7b86ad;
}
@media (max-width: 760px){
  .discount-box{
    padding:14px;
    border-radius:18px;
  }
  .discount-form{
    flex-direction:column;
  }
  .discount-btn{
    width:100%;
  }
}
@media (max-width: 760px){
  body:not(.light-theme) .discount-box{
    background:linear-gradient(180deg, rgba(26,12,44,.97), rgba(14,7,30,.95)) !important;
    border-color:rgba(255,255,255,.12) !important;
    backdrop-filter:none !important;
    -webkit-backdrop-filter:none !important;
  }
}
