:root{
  --bg: #0b1020;
  --panel: rgba(255,255,255,.06);
  --panel2: rgba(255,255,255,.09);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.66);
  --line: rgba(255,255,255,.14);
  --blue: #3b82f6;
  --purple:#8b5cf6;
  --rose:#fb7185;
  --gray:#9ca3af;
  --shadow: 0 18px 50px rgba(0,0,0,.45);
  --radius: 18px;
  --radius2: 24px;
  --max: 1150px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background:
    radial-gradient(1100px 600px at 15% 10%, rgba(59,130,246,.25), transparent 60%),
    radial-gradient(900px 520px at 90% 25%, rgba(139,92,246,.22), transparent 60%),
    radial-gradient(900px 520px at 60% 90%, rgba(251,113,133,.16), transparent 60%),
    linear-gradient(180deg, #070a14, #0b1020 40%, #070a14);
  overflow-x:hidden;
}
a{color:inherit;text-decoration:none}
.container{max-width:var(--max); margin:0 auto; padding:0 20px}

/* Topbar */
.topbar{
  position:sticky; top:0; z-index:40;
  backdrop-filter: blur(12px);
  background: rgba(7,10,20,.55);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{
  display:flex; gap:10px; align-items:center;
  font-weight:800; letter-spacing:.6px;
}
.logo{
  width:38px; height:38px; border-radius:12px;
  background: linear-gradient(135deg, var(--blue), var(--purple) 55%, var(--rose));
  box-shadow: 0 12px 30px rgba(59,130,246,.25);
  position:relative;
}
.logo:after{
  content:""; position:absolute; inset:9px;
  border-radius:10px; border:2px solid rgba(255,255,255,.55);
}
.navlinks{display:flex; gap:14px; align-items:center; flex-wrap:wrap}
.pill{
  padding:10px 12px; border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  color:var(--muted);
  font-weight:600; font-size:14px;
  transition:.18s ease;
}
.pill:hover{transform: translateY(-1px); background: rgba(255,255,255,.07); color:var(--text)}
.pill.active{background: rgba(255,255,255,.10); color:var(--text)}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:11px 14px; border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background: linear-gradient(135deg, rgba(59,130,246,.95), rgba(139,92,246,.95) 55%, rgba(251,113,133,.92));
  color:white;
  font-weight:800;
  box-shadow: 0 14px 35px rgba(139,92,246,.22);
  transition:.18s ease;
}
.btn:hover{transform: translateY(-1px); filter:saturate(1.05)}
.btn.ghost{
  background: rgba(255,255,255,.06);
  box-shadow:none;
  color:var(--text);
}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:7px 10px; border-radius:999px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  color:var(--muted);
  font-weight:700;
  font-size:13px;
}

/* Hero */
.hero{padding:54px 0 18px}
.grid-hero{
  display:grid; grid-template-columns: 1.2fr .8fr; gap:26px;
  align-items:stretch;
}
.card{
  background: var(--panel);
  border:1px solid var(--line);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
}
.card.pad{padding:26px}
.h1{
  font-size: clamp(34px, 4vw, 54px);
  line-height:1.05;
  margin:10px 0 12px;
  letter-spacing:-.6px;
}
.grad{
  background: linear-gradient(135deg, #ffffff, rgba(59,130,246,.95) 30%, rgba(139,92,246,.95) 60%, rgba(251,113,133,.95));
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.lead{color:var(--muted); font-size:16px; line-height:1.6; max-width: 60ch}
.cta{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}
.stats{display:grid; grid-template-columns: repeat(3,1fr); gap:10px; margin-top:22px}
.stat{
  padding:14px; border-radius: 16px;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.12);
}
.stat b{font-size:18px}
.stat span{display:block; color:var(--muted); font-weight:700; margin-top:4px; font-size:13px}
.preview{
  height:100%;
  background:
    radial-gradient(450px 240px at 30% 20%, rgba(59,130,246,.25), transparent 60%),
    radial-gradient(450px 240px at 85% 35%, rgba(251,113,133,.18), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.14);
  overflow:hidden;
  position:relative;
}
.preview .shine{
  position:absolute; inset:-120px;
  background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,.10), transparent 60%);
  transform: rotate(12deg);
  animation: sweep 4.6s linear infinite;
}
@keyframes sweep{0%{left:-60%} 100%{left:60%}}
.preview .inner{
  position:absolute; inset:18px;
  border-radius: 18px;
  background: rgba(7,10,20,.45);
  border:1px solid rgba(255,255,255,.12);
  padding:18px;
  display:flex; flex-direction:column; gap:10px;
}
.kv{display:flex; align-items:center; justify-content:space-between; gap:10px}
.kv .tag{font-weight:900; letter-spacing:.8px; opacity:.92}
.kv .chip{
  padding:6px 10px; border-radius: 999px; font-size:12px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.86);
  font-weight:800;
}
.lines{display:grid; gap:9px; margin-top:6px}
.line{
  height:12px; border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
  border:1px solid rgba(255,255,255,.10);
}
.line:nth-child(2){width:88%}
.line:nth-child(3){width:74%}
.line:nth-child(4){width:92%}

/* Sections */
.section{padding:18px 0 60px}
.section h2{margin:0 0 10px; font-size:28px}
.section p{margin:0; color:var(--muted); line-height:1.7}
.grid-3{display:grid; grid-template-columns: repeat(3,1fr); gap:14px; margin-top:18px}
.feature{padding:18px}
.icon{
  width:42px; height:42px; border-radius:14px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  display:flex; align-items:center; justify-content:center;
  font-weight:900;
}
.feature h3{margin:10px 0 8px}
.feature p{font-size:14px}

/* Cards / products */
.toolbar{
  display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap;
  margin:18px 0 10px;
}
.search{
  flex:1; min-width: 220px;
  display:flex; gap:10px; align-items:center;
  padding:12px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.14);
}
.search input{
  width:100%; border:none; outline:none;
  background: transparent; color:var(--text);
  font-weight:700;
}
.grid-products{display:grid; grid-template-columns: repeat(3,1fr); gap:14px; margin-top:12px}
.product{padding:18px; position:relative}
.product .price{font-weight:900; font-size:18px}
.product small{color:var(--muted); font-weight:700}
.product .buy{margin-top:12px; width:100%}
.pdot{position:absolute; top:16px; right:16px; width:12px; height:12px; border-radius:999px;
  background: linear-gradient(135deg, var(--blue), var(--purple), var(--rose));
  box-shadow: 0 0 0 6px rgba(255,255,255,.05);
}

/* Forms */
.form{display:grid; gap:12px; margin-top: 14px}
.field{display:grid; gap:8px}
label{font-weight:800; color:rgba(255,255,255,.82); font-size:13px}
input, textarea, select{
  padding:12px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.14);
  color: var(--text);
  outline:none;
  font-weight:700;
}
textarea{min-height:140px; resize:vertical}
/* ===== CLEAN NOTICE / GRAND COMMANDS ===== */
.notice {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 14px 16px;
    color: rgba(255, 255, 255, 0.88);
    box-shadow: none;
}

/* remove weird gradient separators */
.notice::before,
.notice::after {
    display: none !important;
}
.notice{
  padding:12px 14px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  color: var(--muted);
  line-height:1.6;
  font-weight:700;
}
.success{border-color: rgba(34,197,94,.35)}
.warn{border-color: rgba(251,113,133,.35)}

/* Footer */
.footer{
  padding:28px 0 46px;
  border-top: 1px solid var(--line);
  background: rgba(7,10,20,.40);
}
.footgrid{
  display:grid; grid-template-columns: 1.2fr .8fr; gap:18px; align-items:start;
}
.footlinks{display:flex; gap:12px; flex-wrap:wrap; justify-content:flex-end}
.mini{font-size:13px; color:var(--muted); line-height:1.6}
hr.sep{border:none; border-top:1px solid var(--line); margin:18px 0}

/* Responsive */
@media (max-width: 980px){
  .grid-hero{grid-template-columns:1fr}
  .grid-3{grid-template-columns:1fr}
  .grid-products{grid-template-columns:1fr}
  .stats{grid-template-columns:1fr}
  .footgrid{grid-template-columns:1fr}
  .footlinks{justify-content:flex-start}
}
/* ===== DARK SELECT FIX ===== */
select {
  background-color: rgba(20, 22, 35, 0.95);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.2);
}

select option {
  background-color: #0f1220; /* dark background */
  color: #ffffff;            /* white text */
}

/* hover / focus */
select:focus {
  outline: none;
  border-color: #7c7cff;
  box-shadow: 0 0 0 2px rgba(124,124,255,0.25);
}
/* ===== SOFT DEGREE GRADIENT FIX ===== */

/* General section background smoothing */
.section {
  background: linear-gradient(
    135deg,
    rgba(20, 30, 60, 0.35) 0%,
    rgba(40, 20, 80, 0.25) 50%,
    rgba(15, 18, 32, 0.9) 100%
  );
}

/* Cards (features, popular, services, etc.) */
.card,
.product {
  background: linear-gradient(
    160deg,
    rgba(255,255,255,0.06) 0%,
    rgba(255,255,255,0.03) 40%,
    rgba(0,0,0,0.25) 100%
  );
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

/* Remove any hard separators */
.card::before,
.card::after,
.product::before,
.product::after {
  display: none !important;
}

/* Popular / Highlight sections */
.notice {
  background: linear-gradient(
    135deg,
    rgba(124,124,255,0.12),
    rgba(255,124,200,0.08),
    rgba(20,20,40,0.85)
  );
  border: 1px solid rgba(255,255,255,0.15);
}

/* Feature boxes (Clear packages / Trust first / Fast ordering) */
.feature,
.features .card {
  background: linear-gradient(
    145deg,
    rgba(30,40,90,0.35),
    rgba(80,40,120,0.25),
    rgba(15,18,32,0.95)
  );
}
/* ===== REMOVE BAND LINES (CHECKOUT + ALL PAGES) ===== */

/* Kill any linear banding backgrounds */
body {
  background: #0b1020 !important;
}

/* Soft blob background instead of stripes */
body::before {
  content: "";
  position: fixed;
  inset: -20%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(45% 35% at 18% 22%, rgba(70,120,255,0.35), transparent 60%),
    radial-gradient(40% 30% at 82% 25%, rgba(190,90,255,0.28), transparent 60%),
    radial-gradient(45% 35% at 55% 70%, rgba(255,90,170,0.22), transparent 65%),
    radial-gradient(55% 55% at 50% 50%, rgba(255,255,255,0.05), transparent 70%);
  filter: blur(22px);
  transform: translate3d(0,0,0);
}

/* Ensure sections don't add stripes */
.section {
  background: transparent !important;
}

/* If any container has gradient overlay, neutralize it */
.container, .card {
  background-clip: padding-box;
}

/* Form fields: consistent dark */
input, textarea, select {
  background: rgba(15,18,32,0.80) !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.14) !important;
}

/* Dropdown options readable */
select option {
  background: #0f1220 !important;
  color: #fff !important;
}
/* ORDER FLOW steps */
.of-steps{
  margin-top: 14px;
  padding-left: 18px;
  color: rgba(255,255,255,.85);
  line-height: 1.7;
  font-weight: 700;
}
.of-steps li{
  margin: 8px 0;
}
.of-steps b{
  color: rgba(255,255,255,.95);
}
.of-steps .muted{
  color: rgba(255,255,255,.65);
}
/* ===== MODERN ORDER FLOW (smooth + stylish) ===== */
.preview .inner { padding: 18px; }

.kv { display:flex; align-items:center; justify-content:space-between; gap:12px; }

.kv .tag{
  font-weight: 900;
  letter-spacing: .12em;
  font-size: 12px;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
}

.kv .chip{
  font-weight: 900;
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: linear-gradient(135deg, rgba(124,124,255,.18), rgba(255,124,200,.12));
  backdrop-filter: blur(10px);
}

/* Steps container */
.of-steps{
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 10px;
}

/* Each step as a modern pill card */
.of-steps li{
  display:flex;
  align-items:flex-start;
  gap: 12px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  box-shadow: 0 12px 30px rgba(0,0,0,.22);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.of-steps li:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.20);
  background: rgba(255,255,255,.07);
}

/* Number bubble */
.of-steps li::before{
  content: attr(data-step);
  display:flex;
  align-items:center;
  justify-content:center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 10px;
  font-weight: 900;
  font-size: 12px;
  color: rgba(255,255,255,.92);
  background: linear-gradient(135deg, rgba(70,130,255,.85), rgba(190,90,255,.65), rgba(255,90,170,.55));
  box-shadow: 0 10px 20px rgba(0,0,0,.25);
}

/* Text */
.of-steps .txt{
  color: rgba(255,255,255,.86);
  line-height: 1.5;
  font-weight: 750;
}
.of-steps .txt b{
  color: rgba(255,255,255,.96);
}
.of-steps .muted{
  color: rgba(255,255,255,.65);
  font-weight: 800;
}

/* Optional: make preview card smoother */
.preview{
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(160deg, rgba(255,255,255,.05), rgba(255,255,255,.02), rgba(0,0,0,.28));
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
}
/* ===== USER DROPDOWN MENU ===== */
.user-menu{
  position: relative;
  display: inline-block;
}

.user-btn{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
  font-weight: 900;
  cursor: pointer;
}

.user-btn .dot{
  width:10px;
  height:10px;
  border-radius:999px;
  background: linear-gradient(135deg, rgba(70,130,255,1), rgba(190,90,255,1), rgba(255,90,170,1));
  box-shadow: 0 10px 20px rgba(0,0,0,.25);
}

.user-btn .chev{
  opacity: .75;
  font-weight: 900;
}

.user-dd{
  position:absolute;
  right:0;
  top: calc(100% + 10px);
  min-width: 200px;
  padding: 10px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(15,18,32,.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
  display:none;
  z-index: 50;
}

.user-dd a{
  display:block;
  padding:10px 12px;
  border-radius: 12px;
  color: rgba(255,255,255,.88);
  font-weight: 800;
  text-decoration:none;
}

.user-dd a:hover{
  background: rgba(255,255,255,.07);
}

.user-dd .sep{
  height:1px;
  background: rgba(255,255,255,.12);
  margin: 8px 6px;
}

/* show dropdown when toggled (click) */
.user-menu.open .user-dd { display: block; }

/* remove the gap issue */
.user-dd { margin-top: 0; }