:root {
  --bg: #020408;
  --bg2: #040810;
  --card: #081a18;
  --card2: #0b201957;
  --border: rgb(0 251 134 / 15%);
  --border2: rgba(0,200,255,0.18);
  --cyan: #00ff88;
  --cyan2: #00e677;
  --cyan-dim: rgba(0,200,255,0.07);
  --cyan-glow: rgba(0,200,255,0.2);
  --red: #ff2244;
  --red2: #cc1133;
  --red-dim: rgba(255,34,68,0.08);
  --orange: #ff6b1a;
  --green-safe: #00ff88;
  --white: #f0f4ff;
  --gray: #6b7fa0;
  --gray2: #3a4560;
  --text: #a0b0cc;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html{
    scroll-behavior: smooth;
}
body {
  font-family: 'Rajdhani', sans-serif;
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
}

/* CUSTOM CURSOR */
.cursor { width: 6px; height: 6px; background: var(--cyan); border-radius: 50%; position: fixed; top: 0; left: 0; pointer-events: none; z-index: 99999; transition: transform 0.1s; }
.cursor-ring { width: 28px; height: 28px; border: 1px solid rgba(0,200,255,0.5); border-radius: 50%; position: fixed; top: 0; left: 0; pointer-events: none; z-index: 99998; transition: all 0.15s ease; }

/* SCANLINE OVERLAY */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 9997; pointer-events: none;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.03) 2px, rgba(0,0,0,0.03) 4px);
}

/* HEX GRID BG */
.hex-bg {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
}
.hex-bg svg { width: 100%; height: 100%; opacity: 0.04; }

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 48px;
  height: 90px;
  display: flex;
  align-items: center;
  background: rgba(2,4,8,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}
.navbar.scrolled { border-bottom-color: var(--border2); background: rgba(2,4,8,0.98); }
.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-shield {
  width: 32px; height: 36px; position: relative;
}
.nav-shield svg { width: 100%; height: 100%; }
.nav-brand-text { font-family: 'Orbitron', monospace; font-size: 15px; font-weight: 700; color: var(--white); letter-spacing: 2px; }
.nav-brand-text span { color: var(--cyan); }

.nav-links { display: flex; align-items: center; gap: 4px; margin: 0 auto; list-style: none; }
.nav-links a {
  padding: 6px 16px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray);
  text-decoration: none;
  border-radius: 2px;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after { content: ''; position: absolute; bottom: 2px; left: 50%; right: 50%; height: 1px; background: var(--cyan); transition: all 0.3s; }
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { left: 16px; right: 16px; }

.btn-nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 30px;
  background: var(--cyan);
  color: var(--bg);
  font-family: 'Orbitron', monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 2px;
  text-transform: uppercase;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-nav-cta:hover { background: #fff; box-shadow: 0 0 20px rgba(0,200,255,0.4); }

.nav-toggler { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-toggler span { display: block; width: 22px; height: 1.5px; background: var(--white); transition: all 0.3s; }

.mobile-nav { display: none; position: fixed; top: 64px; left: 0; right: 0; background: rgba(2,4,8,0.98); border-bottom: 1px solid var(--border); z-index: 999; padding: 16px 24px 24px; }
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; padding: 10px 0; color: var(--gray); text-decoration: none; font-size: 14px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; border-bottom: 1px solid var(--border); transition: color 0.2s; }
.mobile-nav a:hover { color: var(--cyan); }

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â HERO Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.hero-section {
  min-height: 100vh; position: relative;
  display: flex; align-items: center;
  padding: 100px 48px 80px;
  overflow: hidden;
}

.hero-glow {
  position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; filter: blur(100px);
}
.hero-glow-1 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(0,200,255,0.12) 0%, transparent 70%); top: -100px; left: -150px; animation: gFloat 9s ease-in-out infinite; }
.hero-glow-2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(255,34,68,0.08) 0%, transparent 70%); bottom: 0; right: 0; animation: gFloat 11s ease-in-out infinite reverse; }
@keyframes gFloat { 0%,100%{transform:translate(0,0);} 50%{transform:translate(30px,-30px);} }

/* Animated threat radar circle */
.hero-radar {
  position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
  width: 460px; height: 460px; z-index: 1;
}
.radar-ring {
  position: absolute; border-radius: 50%; border: 1px solid rgba(0,200,255,0.12);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.radar-ring:nth-child(1) { width: 460px; height: 460px; border-color: rgba(0,200,255,0.06); }
.radar-ring:nth-child(2) { width: 340px; height: 340px; border-color: rgba(0,200,255,0.1); }
.radar-ring:nth-child(3) { width: 220px; height: 220px; border-color: rgba(0,200,255,0.15); animation: radarPulse 3s ease-in-out infinite; }
.radar-ring:nth-child(4) { width: 100px; height: 100px; border-color: rgba(0,200,255,0.3); animation: radarPulse 3s ease-in-out infinite 0.5s; }
@keyframes radarPulse { 0%,100%{box-shadow:none;} 50%{box-shadow:0 0 20px rgba(0,200,255,0.2);} }

.radar-sweep {
  position: absolute; top: 50%; left: 50%; width: 50%; height: 2px;
  transform-origin: left center; background: transparent;
  animation: sweep 4s linear infinite;
}
.radar-sweep::after {
  content: ''; position: absolute; top: -80px; left: 0; right: 0; bottom: 0;
  background: conic-gradient(from 0deg, transparent 260deg, rgba(0,200,255,0.15) 340deg, transparent 360deg);
  border-radius: 50% 0 0 0; transform-origin: bottom left;
}
@keyframes sweep { from{transform:rotate(0deg);} to{transform:rotate(360deg);} }

.radar-center {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 70px; height: 70px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,200,255,0.3) 0%, transparent 70%);
  display: flex; align-items: center; justify-content: center;
  animation: centerPulse 2s ease-in-out infinite;
}
@keyframes centerPulse { 0%,100%{box-shadow:0 0 0 0 rgba(0,200,255,0.3);} 50%{box-shadow:0 0 0 20px rgba(0,200,255,0);} }
.radar-center svg { width: 30px; height: 30px; }

/* Threat dots */
.threat-dot {
  position: absolute; border-radius: 50%; width: 8px; height: 8px;
  animation: blink 1.5s ease-in-out infinite;
}
.threat-dot.red { background: var(--red); box-shadow: 0 0 8px var(--red); }
.threat-dot.orange { background: var(--orange); box-shadow: 0 0 8px var(--orange); animation-delay: 0.7s; }
.threat-dot.yellow { background: #ffcc00; box-shadow: 0 0 8px #ffcc00; animation-delay: 1.2s; }
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.2;} }

/* Radar labels */
.radar-label {
  position: absolute; font-family: 'Share Tech Mono', monospace; font-size: 9px;
  color: rgba(0,200,255,0.5); letter-spacing: 1px; text-transform: uppercase;
  pointer-events: none;
}

/* Threat list aside radar */
.threat-list-box {
  position: absolute; right: -10px; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 8px;
  z-index: 3; width: 160px;
}
.threat-item {
  background: rgba(4,8,16,0.9); border: 1px solid var(--border2);
  padding: 8px 12px; border-radius: 2px;
  font-family: 'Share Tech Mono', monospace; font-size: 9px;
  display: flex; align-items: center; gap: 8px;
}
.threat-item .ti-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.threat-item .ti-name { color: var(--text); letter-spacing: 0.5px; }
.threat-item .ti-status { margin-left: auto; font-size: 8px; letter-spacing: 1px; }

.hero-content { position: relative; z-index: 2; max-width: 600px; }

.hero-eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Share Tech Mono', monospace; font-size: 11px;
  color: var(--cyan); letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0; animation: fadeUp 0.8s 0.2s ease forwards;
}
.hero-eyebrow .eye-line { width: 40px; height: 1px; background: var(--cyan); }
.hero-eyebrow .eye-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); animation: blink 1s infinite; }

.hero-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(44px, 6vw, 80px); line-height: 1;
  font-weight: 900; letter-spacing: -1px;
  color: var(--white); margin-bottom: 6px;
  opacity: 0; animation: fadeUp 0.9s 0.35s ease forwards;
}
.hero-title .cyan-word {color: var(--cyan);text-shadow: 0 0 30px rgb(0 255 139 / 34%);}
.hero-title .outline-word {-webkit-text-stroke: 1px rgb(0 255 136 / 27%);color: transparent;}

.hero-subtitle {
  font-size: 17px; font-weight: 400; color: var(--text); line-height: 1.7;
  max-width: 480px; margin: 20px 0 36px;
  opacity: 0; animation: fadeUp 0.9s 0.5s ease forwards;
}

.hero-badges {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px;
  opacity: 0; animation: fadeUp 0.9s 0.6s ease forwards;
}
.hero-badge-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1px solid var(--border2);
  border-radius: 2px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 1px;
}
.hero-badge-chip .chip-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green-safe); animation: blink 2s infinite; }

.hero-cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; opacity: 0; animation: fadeUp 0.9s 0.7s ease forwards; }
.btn-primary {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 32px; background: var(--cyan); color: var(--bg);
  font-family: 'Orbitron', monospace; font-size: 12px; font-weight: 700; letter-spacing: 1px;
  text-decoration: none; border-radius: 2px; text-transform: uppercase;
  transition: all 0.25s; border: none; cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.btn-primary:hover {background: var(--white);box-shadow: 0 0 30px rgb(0 254 135);transform: translateY(-2px);}
.btn-outline {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 28px; background: transparent; color: var(--white);
  border: 1px solid var(--border2); font-family: 'Orbitron', monospace;
  font-size: 11px; font-weight: 600; letter-spacing: 1px;
  text-decoration: none; border-radius: 2px; text-transform: uppercase;
  transition: all 0.25s; cursor: pointer;
}
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan); }

.hero-stats {
  display: flex; gap: 0; border-top: 1px solid var(--border); margin-top: 52px; padding-top: 32px;
  opacity: 0; animation: fadeUp 0.9s 0.85s ease forwards;
}
.hero-stat { flex: 1; padding-right: 28px; border-right: 1px solid var(--border); margin-right: 28px; }
.hero-stat:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.stat-number { font-family: 'Orbitron', monospace; font-size: 36px; font-weight: 800; color: var(--white); display: flex; align-items: baseline; gap: 2px; line-height: 1; }
.stat-number .suf { font-size: 20px; color: var(--cyan); }
.stat-label {font-size: 14px;color: var(--gray);margin-top: 6px;letter-spacing: 0.5px;text-transform: uppercase;}

@keyframes fadeUp { from{opacity:0;transform:translateY(24px);} to{opacity:1;transform:translateY(0);} }

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â MARQUEE Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.marquee-section {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 12px 0; overflow: hidden; background: var(--card); position: relative; z-index: 2;
}
.marquee-track { display: flex; white-space: nowrap; animation: marqueeScroll 20s linear infinite; }
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0 24px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
}
.marquee-item .mdot { color: var(--red); font-size: 8px; }
.marquee-item .malt { color: var(--cyan); }
@keyframes marqueeScroll { from{transform:translateX(0);} to{transform:translateX(-50%);} }

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â SECTION COMMON Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Share Tech Mono', monospace; font-size: 10px;
  color: var(--cyan); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px;
}
.section-tag::before { content: ''; width: 20px; height: 1px; background: var(--cyan); }
.section-tag .stag-sep { color: var(--red); }

.section-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(30px, 4vw, 54px); font-weight: 800; line-height: 1.1; color: var(--white);
}
.section-title .cy { color: var(--cyan); }

.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-36px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(36px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â PROTECTION FEATURES Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.features-section { padding: 100px 48px; position: relative; z-index: 2; border-top: 1px solid var(--border); }
.features-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 56px; gap: 20px; flex-wrap: wrap; }
.features-header p {font-size: 16px;color: var(--text);max-width: 340px;line-height: 1.7;margin-top: 12px;}

.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.feature-card {
  background: var(--card);
  border: 1px solid rgb(0 255 136 / 21%);
  padding: 34px 28px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
}
.feature-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--cyan-dim) 0%, transparent 60%); opacity: 0; transition: opacity 0.3s; }
.feature-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--cyan), transparent); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; }
.feature-card:hover { border-color: rgba(0,200,255,0.3); transform: translateY(-4px); }
.feature-card:hover::before { opacity: 1; }
.feature-card:hover::after { transform: scaleX(1); }
.feature-card.danger { border-color: rgba(255,34,68,0.15); }
.feature-card.danger::after { background: linear-gradient(90deg, var(--red), transparent); }
.feature-card.danger:hover { border-color: rgba(255,34,68,0.4); }
.feature-card.danger::before { background: linear-gradient(135deg, var(--red-dim) 0%, transparent 60%); }

.fc-icon {
  width: 52px; height: 52px; border-radius: 4px;
  background: var(--card2); border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 20px;
  position: relative; z-index: 1;
  transition: transform 0.3s;
}
.feature-card:hover .fc-icon { transform: scale(1.1) rotate(-3deg); }
.fc-icon.red { border-color: rgba(255,34,68,0.3); background: rgba(255,34,68,0.06); }
.fc-icon.cyan {border-color: rgb(0 255 139 / 29%);background: rgb(0 255 136 / 10%);}
.fc-icon.orange { border-color: rgba(255,107,26,0.3); background: rgba(255,107,26,0.06); }

.fc-title { font-family: 'Orbitron', monospace; font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 12px; position: relative; z-index: 1; }
.fc-desc {font-size: 16px;color: var(--text);line-height: 1.7;margin-bottom: 22px;position: relative;z-index: 1;}
.fc-stat {font-family: 'Share Tech Mono', monospace;font-size: 12px;color: var(--cyan);letter-spacing: 1px;display: flex;align-items: center;gap: 6px;position: relative;z-index: 1;}
.fc-stat.red { color: var(--red); }
.fc-stat::before { content: 'Ã¢â€“Â¶'; font-size: 8px; }

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â THREAT DASHBOARD Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.dashboard-section { padding: 100px 48px; border-top: 1px solid var(--border); position: relative; z-index: 2; }
.dash-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; margin-top: 60px; }

.dash-screen {
  background: var(--card); border: 1px solid var(--border2);
  border-radius: 4px; overflow: hidden; position: relative;
}
.dash-titlebar {
  background: var(--card2); border-bottom: 1px solid var(--border);
  padding: 10px 16px; display: flex; align-items: center; gap: 8px;
}
.dash-titlebar .dt-dots { display: flex; gap: 5px; }
.dash-titlebar .dt-dot { width: 9px; height: 9px; border-radius: 50%; }
.dash-titlebar .dt-title { font-family: 'Share Tech Mono', monospace; font-size: 10px; color: var(--gray); margin-left: 8px; letter-spacing: 1px; }
.dash-titlebar .dt-status { margin-left: auto; font-family: 'Share Tech Mono', monospace; font-size: 9px; color: var(--green-safe); display: flex; align-items: center; gap: 5px; }
.dash-titlebar .dt-status::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--green-safe); animation: blink 1.5s infinite; }

.dash-body { padding: 20px; }

/* Threat graph */
.threat-graph { margin-bottom: 20px; }
.tg-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.tg-title { font-family: 'Share Tech Mono', monospace; font-size: 10px; color: var(--gray); letter-spacing: 1px; }
.tg-val { font-family: 'Orbitron', monospace; font-size: 22px; font-weight: 700; color: var(--cyan); }
.tg-bars { display: flex; align-items: flex-end; gap: 4px; height: 80px; }
.tg-bar { flex: 1; border-radius: 2px 2px 0 0; background: rgba(0,200,255,0.15); min-height: 4px; transition: all 0.3s; position: relative; }
.tg-bar:hover { background: rgba(0,200,255,0.35); }
.tg-bar.spike { background: rgba(255,34,68,0.6); }
.tg-bar.spike::after { content: '!'; position: absolute; top: -16px; left: 50%; transform: translateX(-50%); font-family: 'Share Tech Mono', monospace; font-size: 9px; color: var(--red); }

/* Threat table */
.threat-table { width: 100%; border-collapse: collapse; }
.threat-table thead tr { border-bottom: 1px solid var(--border); }
.threat-table th { font-family: 'Share Tech Mono', monospace; font-size: 9px; color: var(--gray); letter-spacing: 1px; text-align: left; padding: 6px 8px; text-transform: uppercase; }
.threat-table td { font-family: 'Share Tech Mono', monospace; font-size: 10px; color: var(--text); padding: 8px 8px; border-bottom: 1px solid rgba(255,255,255,0.03); }
.threat-table tr:last-child td { border-bottom: none; }
.status-chip { padding: 2px 8px; border-radius: 1px; font-size: 8px; letter-spacing: 1px; text-transform: uppercase; }
.status-chip.blocked { background: rgba(0,255,136,0.12); color: var(--green-safe); border: 1px solid rgba(0,255,136,0.2); }
.status-chip.quarantine { background: rgba(255,107,26,0.12); color: var(--orange); border: 1px solid rgba(255,107,26,0.2); }
.status-chip.scanning { background: rgba(0,200,255,0.1); color: var(--cyan); border: 1px solid rgba(0,200,255,0.2); }

/* Dash right content */
.dash-right { display: flex; flex-direction: column; gap: 28px; }
.dash-stat-card {
  background: var(--card); border: 1px solid var(--border); padding: 22px 24px;
  display: flex; align-items: center; gap: 18px; border-radius: 2px; transition: all 0.3s;
}
.dash-stat-card:hover { border-color: var(--border2); transform: translateX(4px); }
.dsc-icon { width: 44px; height: 44px; border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.dsc-num { font-family: 'Orbitron', monospace; font-size: 26px; font-weight: 800; color: var(--white); line-height: 1; }
.dsc-num span { font-size: 14px; color: var(--cyan); }
.dsc-label { font-size: 12px; color: var(--gray); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 4px; }

/* Progress bars */
.protection-bars { background: var(--card); border: 1px solid var(--border); padding: 22px 24px; border-radius: 2px; }
.pb-title { font-family: 'Share Tech Mono', monospace; font-size: 10px; color: var(--gray); letter-spacing: 1px; margin-bottom: 16px; }
.pb-item { margin-bottom: 14px; }
.pb-item:last-child { margin-bottom: 0; }
.pb-label { display: flex; justify-content: space-between; font-size: 12px; color: var(--text); margin-bottom: 6px; letter-spacing: 0.3px; }
.pb-label span { color: var(--cyan); font-family: 'Share Tech Mono', monospace; font-size: 10px; }
.pb-bar { height: 4px; background: var(--card2); border-radius: 2px; overflow: hidden; }
.pb-fill { height: 100%; border-radius: 2px; background: linear-gradient(90deg, var(--cyan), var(--cyan2)); position: relative; }
.pb-fill::after { content: ''; position: absolute; right: 0; top: -2px; width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 8px var(--cyan); }

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â WHY CYBERSHIELD Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.why-section { padding: 100px 48px; border-top: 1px solid var(--border); position: relative; z-index: 2; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 56px; }
.why-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 28px 22px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
  margin: 0 7px;
}
.why-card:hover { border-color: var(--border2); background: var(--card2); }
.why-num {
  font-family: 'Orbitron', monospace; font-size: 48px; font-weight: 900;
  color: transparent; -webkit-text-stroke: 1px rgba(0,200,255,0.12);
  line-height: 1; margin-bottom: 16px;
}
.why-card:hover .why-num { -webkit-text-stroke-color: rgba(0,200,255,0.25); }
.why-title {font-family: 'Orbitron', monospace;font-size: 16px;font-weight: 700;color: var(--white);margin-bottom: 12px;line-height: 1.3;}
.why-desc {font-size: 16px;color: var(--gray);line-height: 1.7;}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â TESTIMONIALS Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.testimonials-section { padding: 100px 48px; border-top: 1px solid var(--border); position: relative; z-index: 2; overflow: hidden; }
.testimonials-section::before { content: ''; position: absolute; top: 0; left: -20%; right: -20%; bottom: 0; background: radial-gradient(ellipse 60% 40% at 50% 50%, rgba(0,200,255,0.04) 0%, transparent 70%); pointer-events: none; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.testi-card {
  background: var(--card); border: 1px solid var(--border); padding: 28px; border-radius: 2px;
  position: relative; overflow: hidden; transition: all 0.3s;
}
.testi-card:hover { border-color: rgba(0,200,255,0.25); transform: translateY(-4px); }
.testi-card::before { content: '"'; position: absolute; top: 10px; right: 16px; font-size: 80px; line-height: 1; color: rgba(0,200,255,0.05); font-family: Georgia, serif; }
.testi-stars { color: var(--cyan); font-size: 11px; margin-bottom: 16px; letter-spacing: 2px; }
.testi-text { font-size: 14px; color: var(--text); line-height: 1.7; margin-bottom: 22px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--border); padding-top: 18px; }
.testi-avatar { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--border2); display: flex; align-items: center; justify-content: center; font-family: 'Orbitron', monospace; font-size: 12px; font-weight: 700; color: var(--cyan); background: var(--card2); flex-shrink: 0; }
.testi-name { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.testi-role { font-family: 'Share Tech Mono', monospace; font-size: 10px; color: var(--gray); letter-spacing: 0.5px; }

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â PRICING Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.pricing-section { padding: 100px 48px; border-top: 1px solid var(--border); position: relative; z-index: 2; overflow: hidden; }
.pricing-section::before { content: ''; position: absolute; top: 0; left: -20%; right: -20%; bottom: 0; background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(0,200,255,0.04) 0%, transparent 70%); pointer-events: none; }

.pricing-toggle { display: flex; align-items: center; gap: 16px; margin: 32px 0 56px; }
.ptoggle-label { font-family: 'Share Tech Mono', monospace; font-size: 11px; color: var(--gray); letter-spacing: 1px; text-transform: uppercase; }
.ptoggle-label.active { color: var(--cyan); }
.ptoggle { width: 48px; height: 24px; background: var(--card2); border: 1px solid var(--border2); border-radius: 12px; cursor: pointer; position: relative; transition: all 0.3s; }
.ptoggle .ptoggle-thumb { width: 18px; height: 18px; border-radius: 50%; background: var(--cyan); position: absolute; top: 2px; left: 3px; transition: all 0.3s; box-shadow: 0 0 8px rgba(0,200,255,0.5); }
.ptoggle.yearly .ptoggle-thumb { left: 27px; }
.save-badge { padding: 3px 10px; background: rgba(0,200,255,0.1); border: 1px solid var(--border2); border-radius: 10px; font-family: 'Share Tech Mono', monospace; font-size: 10px; color: var(--cyan); letter-spacing: 1px; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
  margin: 10px;
}
.pricing-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--cyan), transparent); opacity: 0; transition: opacity 0.3s; }
.pricing-card:hover::after { opacity: 1; }
.pricing-card:hover { border-color: var(--border2); }
.pricing-card.featured {
  background: var(--card2); border-color: rgba(0,200,255,0.35);
  transform: translateY(-8px);
  box-shadow: 0 0 60px rgba(0,200,255,0.1), inset 0 0 40px rgba(0,200,255,0.03);
}
.pricing-card.featured::after { opacity: 1; background: linear-gradient(90deg, transparent, var(--cyan), transparent); }

.plan-badge {
  display: inline-flex; align-items: center; gap: 6px; padding: 4px 12px;
  border-radius: 2px; font-family: 'Share Tech Mono', monospace; font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 24px;
}
.plan-badge.free { border: 1px solid var(--border2); color: var(--gray); }
.plan-badge.pro { background: rgba(0,200,255,0.12); border: 1px solid rgba(0,200,255,0.3); color: var(--cyan); }
.plan-badge.pro .pb-star { color: var(--cyan); }
.plan-badge.enterprise { background: rgba(255,107,26,0.1); border: 1px solid rgba(255,107,26,0.3); color: var(--orange); }

.plan-name { font-family: 'Orbitron', monospace; font-size: 20px; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.plan-desc { font-size: 13px; color: var(--gray); line-height: 1.6; margin-bottom: 28px; }

.plan-price { margin-bottom: 28px; }
.plan-price-amount { display: flex; align-items: flex-start; gap: 4px; }
.price-currency { font-family: 'Orbitron', monospace; font-size: 20px; font-weight: 700; color: var(--gray); padding-top: 8px; }
.price-number { font-family: 'Orbitron', monospace; font-size: 56px; font-weight: 900; color: var(--white); line-height: 1; }
.price-number.cyan { color: var(--cyan); text-shadow: 0 0 20px rgba(0,200,255,0.3); }
.price-period { font-family: 'Share Tech Mono', monospace; font-size: 11px; color: var(--gray); margin-top: 8px; letter-spacing: 1px; }
.price-annual-note { font-family: 'Share Tech Mono', monospace; font-size: 9px; color: var(--cyan); margin-top: 4px; letter-spacing: 1px; display: none; }
.yearly .price-annual-note { display: block; }

.plan-divider { height: 1px; background: var(--border); margin: 24px 0; }
.plan-features { list-style: none; margin: 0 0 32px; padding: 0; }
.plan-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--text); padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.02);
}
.plan-features li:last-child { border-bottom: none; }
.plan-features li .pf-icon { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; display: flex; align-items: center; justify-content: center; font-size: 10px; }
.plan-features li .pf-icon.check { color: var(--green-safe); }
.plan-features li .pf-icon.cross { color: var(--gray2); }
.plan-features li .pf-icon.shield { color: var(--cyan); }
.plan-features li.muted { color: var(--gray2); }

.btn-plan {
  width: 100%; padding: 14px; text-align: center; border-radius: 2px;
  font-family: 'Orbitron', monospace; font-size: 12px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; text-decoration: none; cursor: pointer; border: none;
  transition: all 0.25s; display: block;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.btn-plan.free-plan { background: transparent; border: 1px solid var(--border2); color: var(--gray); }
.btn-plan.free-plan:hover { border-color: var(--cyan); color: var(--cyan); }
.btn-plan.pro-plan { background: var(--cyan); color: var(--bg); }
.btn-plan.pro-plan:hover { background: var(--white); box-shadow: 0 0 30px rgba(0,200,255,0.4); }
.btn-plan.ent-plan { background: transparent; border: 1px solid rgba(255,107,26,0.4); color: var(--orange); }
.btn-plan.ent-plan:hover { background: rgba(255,107,26,0.1); border-color: var(--orange); }

.pricing-note { text-align: center; margin-top: 32px; font-family: 'Share Tech Mono', monospace; font-size: 10px; color: var(--gray); letter-spacing: 1px; }
.pricing-note a { color: var(--cyan); text-decoration: none; }

/* Compare table */
.compare-toggle { display: flex; align-items: center; gap: 10px; margin: 48px auto 0; justify-content: center; cursor: pointer; font-family: 'Share Tech Mono', monospace; font-size: 11px; color: var(--gray); letter-spacing: 1px; transition: color 0.2s; }
.compare-toggle:hover { color: var(--cyan); }
.compare-toggle i { transition: transform 0.3s; }
.compare-toggle.open i { transform: rotate(180deg); }

.compare-table-wrap { max-height: 0; overflow: hidden; transition: max-height 0.5s ease; }
.compare-table-wrap.open { max-height: 600px; }
.compare-table { width: 100%; border-collapse: collapse; margin-top: 24px; }
.compare-table th, .compare-table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--border); font-size: 13px; }
.compare-table thead th { font-family: 'Orbitron', monospace; font-size: 11px; color: var(--gray); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.compare-table thead th.cy { color: var(--cyan); }
.compare-table tbody td:first-child { color: var(--text); }
.compare-table tbody td { color: var(--gray); font-family: 'Share Tech Mono', monospace; font-size: 11px; letter-spacing: 0.5px; }
.compare-table tbody td .ci { font-size: 12px; }
.compare-table tbody td .ci.yes { color: var(--green-safe); }
.compare-table tbody td .ci.no { color: var(--gray2); }
.compare-table tbody tr:hover td { background: rgba(0,200,255,0.02); }

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â BLOG Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.blog-section { padding: 100px 48px; border-top: 1px solid var(--border); position: relative; z-index: 2; }
.blog-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 56px; }
.blog-left { display: flex; flex-direction: column; gap: 2px; }
.blog-card {
  background: var(--card); border: 1px solid var(--border); padding: 24px 22px;
  cursor: pointer; transition: all 0.3s; position: relative;
}
.blog-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: var(--cyan); transform: scaleY(0); transform-origin: bottom; transition: transform 0.3s; }
.blog-card:hover { background: var(--card2); }
.blog-card:hover::before { transform: scaleY(1); }
.blog-cat { font-family: 'Share Tech Mono', monospace; font-size: 9px; color: var(--cyan); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; }
.blog-title { font-family: 'Orbitron', monospace; font-size: 14px; font-weight: 700; color: var(--white); line-height: 1.4; margin-bottom: 8px; }
.blog-excerpt { font-size: 13px; color: var(--gray); line-height: 1.6; margin-bottom: 14px; }
.blog-meta { display: flex; justify-content: space-between; font-family: 'Share Tech Mono', monospace; font-size: 10px; color: var(--gray2); }
.blog-read { color: var(--cyan); transition: gap 0.2s; display: flex; align-items: center; gap: 6px; }
.blog-card:hover .blog-read { gap: 10px; }

.blog-featured {
  background: var(--card2); border: 1px solid var(--border2); padding: 32px;
  display: flex; flex-direction: column; justify-content: flex-end; min-height: 300px;
  position: relative; overflow: hidden; cursor: pointer;
}
.blog-featured::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(0,200,255,0.015) 10px, rgba(0,200,255,0.015) 11px); }
.blog-featured::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--cyan), transparent); }
.blog-featured-bg { position: absolute; top: 20px; right: 20px; opacity: 0.06; font-family: 'Orbitron', monospace; font-size: 80px; font-weight: 900; color: var(--cyan); pointer-events: none; line-height: 1; }
.blog-featured-content { position: relative; z-index: 1; }
.blog-featured-cat { font-family: 'Share Tech Mono', monospace; font-size: 9px; color: var(--cyan); background: rgba(0,200,255,0.1); border: 1px solid rgba(0,200,255,0.2); padding: 4px 10px; letter-spacing: 2px; display: inline-block; margin-bottom: 14px; }
.blog-featured-title { font-family: 'Orbitron', monospace; font-size: 22px; font-weight: 800; color: var(--white); line-height: 1.3; margin-bottom: 12px; }
.blog-featured-excerpt { font-size: 13px; color: var(--text); line-height: 1.6; margin-bottom: 18px; }
.blog-featured-link { font-family: 'Share Tech Mono', monospace; font-size: 11px; color: var(--cyan); display: inline-flex; align-items: center; gap: 8px; letter-spacing: 1px; text-decoration: none; }

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â CTA Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.cta-section { padding: 100px 48px; border-top: 1px solid var(--border); position: relative; z-index: 2; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(0,200,255,0.06) 0%, transparent 70%); pointer-events: none; }
.cta-inner { max-width: 700px; margin: 0 auto; text-align: center; position: relative; }
.cta-title { font-family: 'Orbitron', monospace; font-size: clamp(40px, 6vw, 72px); font-weight: 900; color: var(--white); line-height: 1; margin-bottom: 24px; }
.cta-title span { color: var(--cyan); text-shadow: 0 0 30px rgba(0,200,255,0.4); display: block; }
.cta-subtitle { font-size: 16px; color: var(--text); line-height: 1.7; margin-bottom: 40px; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â FOOTER Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.footer { padding: 60px 48px 28px; border-top: 1px solid var(--border); position: relative; z-index: 2; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 48px; }
.footer-brand p {font-size: 16px;color: var(--gray);line-height: 1.7;margin: 16px 0 24px;max-width: 280px;}
.footer-newsletter { display: flex; gap: 0; }
.footer-newsletter input { flex: 1; padding: 10px 14px; background: var(--card2); border: 1px solid var(--border2); border-right: none; color: var(--white); font-size: 12px; outline: none; font-family: 'Rajdhani', sans-serif; }
.footer-newsletter input::placeholder { color: var(--gray2); }
.footer-newsletter input:focus { border-color: var(--cyan); }
.footer-newsletter button { padding: 10px 16px; background: var(--cyan); border: none; color: var(--bg); font-family: 'Orbitron', monospace; font-size: 10px; font-weight: 700; cursor: pointer; letter-spacing: 1px; transition: background 0.2s; }
.footer-newsletter button:hover { background: var(--white); }
.footer-col-title { font-family: 'Share Tech Mono', monospace; font-size: 10px; color: var(--white); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 18px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {font-size: 16px;color: var(--gray);text-decoration: none;transition: color 0.2s;display: flex;align-items: center;gap: 8px;}
.footer-links a:hover { color: var(--cyan); }
.footer-links a i { font-size: 9px; color: var(--gray2); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.footer-copy {font-family: 'Share Tech Mono', monospace;font-size: 14px;color: var(--gray2);letter-spacing: 0.5px;}
.footer-socials { display: flex; gap: 8px; }
.footer-social { width: 34px; height: 34px; border: 1px solid var(--border2); display: flex; align-items: center; justify-content: center; color: var(--gray); font-size: 12px; text-decoration: none; transition: all 0.2s; border-radius: 2px; }
.footer-social:hover { border-color: var(--cyan); color: var(--cyan); }

/* BACK TO TOP */
.back-top { position: fixed; bottom: 28px; right: 28px; width: 42px; height: 42px; background: var(--cyan); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--bg); font-size: 14px; opacity: 0; transform: translateY(20px); transition: all 0.3s; z-index: 900; border-radius: 2px; }
.back-top.visible { opacity: 1; transform: translateY(0); }
.back-top:hover { background: var(--white); transform: translateY(-3px); }

/* btn-view-all */
.btn-view-all {display: flex;align-items: center;gap: 10px;padding: 12px 26px;border: 1px solid var(--border2);color: var(--white);text-decoration: none;font-family: 'Share Tech Mono', monospace;font-size: 14px;font-weight: 500;letter-spacing: 1px;text-transform: uppercase;border-radius: 2px;transition: all 0.25s;white-space: nowrap;}
.btn-view-all:hover { border-color: var(--cyan); color: var(--cyan); }
.btn-view-all .arrow-circle { width: 22px; height: 22px; border-radius: 50%; border: 1px solid var(--border2); display: flex; align-items: center; justify-content: center; font-size: 10px; transition: all 0.25s; }
.btn-view-all:hover .arrow-circle { border-color: var(--cyan); color: var(--cyan); }

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â RESPONSIVE Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
@media (max-width: 1100px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
  .hero-radar { display: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .pricing-card.featured { transform: none; }
}
@media (max-width: 992px) {
  .hero-section, .features-section, .dashboard-section, .why-section, .testimonials-section, .pricing-section, .blog-section, .cta-section, .footer { padding-left: 24px; padding-right: 24px; }
  .navbar { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-toggler { display: flex; }
  .dash-layout { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .features-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .hero-stat { border-right: none; margin-right: 0; min-width: 120px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
.nav-brand img{
    width: 200px;
}
.footer-brand img{
    width: 200px;
}

 /* Premium Checkout Page - Cyber Aesthetic */
    .premium-checkout-section {
      background: linear-gradient(145deg, #092d1d 0%, #082517b5 50%, #0b2925 100%);
      position: relative;
      padding: 4rem 0;
      font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
      min-height: 100vh;
    }

    .premium-checkout-section::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at 20% 30%, rgba(0, 150, 255, 0.04), transparent 60%);
      pointer-events: none;
    }

    .checkout-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 2rem;
      position: relative;
      z-index: 2;
    }

    /* Header */
    .checkout-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .checkout-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      background: rgb(0 254 135 / 16%);
      backdrop-filter: blur(4px);
      padding: 0.4rem 1.3rem;
      border-radius: 60px;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: #00fe87;
      border: 1px solid rgb(0 255 136 / 18%);
      margin-bottom: 1rem;
    }

    .checkout-title {
      font-size: 2.8rem;
      font-weight: 800;
      margin-bottom: 0.8rem;
      color: #ffffff;
    }

    .gradient-checkout {
      background: linear-gradient(125deg, #00fe87, #0f3f29);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .checkout-subtitle {
      color: #9eb0cf;
      font-size: 1rem;
    }

    /* Grid Layout */
    .checkout-grid {
      display: grid;
      grid-template-columns: 400px 1fr;
      gap: 2rem;
      align-items: start;
    }

    @media (max-width: 1000px) {
      .checkout-grid {
        grid-template-columns: 1fr;
      }
    }

    /* Order Summary Card */
    .order-card {
      background: rgb(8 42 31);
      backdrop-filter: blur(12px);
      border-radius: 28px;
      border: 1px solid rgb(0 255 139 / 19%);
      padding: 1.8rem;
      position: sticky;
      top: 100px;
    }

    .order-card-header {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      margin-bottom: 1.5rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid rgb(0 254 135 / 26%);
    }

    .order-card-header i {
      font-size: 1.5rem;
      color: #00ff8b;
    }

    .order-card-header h3 {
      font-size: 1.2rem;
      font-weight: 700;
      color: #ffffff;
      margin: 0;
    }

    .order-items-header {
      display: flex;
      justify-content: space-between;
      padding: 0.8rem 0;
      color: #8ba5c9;
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      border-bottom: 1px solid rgb(0 255 136 / 27%);
    }

    .order-items-list {
      margin: 0.5rem 0;
    }

    .order-item {
      display: flex;
      justify-content: space-between;
      padding: 0.8rem 0;
      border-bottom: 1px solid rgba(0, 200, 255, 0.08);
    }

    .order-item-name {
      color: #eef3ff;
      font-weight: 500;
      font-size: 0.9rem;
    }

    .order-item-price {
      color: #00ff88;
      font-weight: 600;
    }

    .order-total {
      display: flex;
      justify-content: space-between;
      padding: 1rem 0 0.5rem;
      margin-top: 0.5rem;
      border-top: 1px solid rgba(0, 200, 255, 0.25);
    }

    .total-label {
      font-size: 1.1rem;
      font-weight: 700;
      color: #ffffff;
    }

    .total-amount {
      font-size: 1.3rem;
      font-weight: 800;
      color: #00fe87;
    }

    .order-guarantee {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      background: rgba(0, 200, 255, 0.08);
      padding: 1rem;
      border-radius: 20px;
      margin-top: 1.2rem;
    }

    .order-guarantee i {
      font-size: 1.8rem;
      color: #4ac7ff;
    }

    .order-guarantee div {
      display: flex;
      flex-direction: column;
    }

    .order-guarantee strong {
      font-size: 0.8rem;
      color: #ffffff;
    }

    .order-guarantee span {
      font-size: 0.7rem;
      color: #8ba5c9;
    }

    /* Billing Form Card */
    .billing-card {
      background: rgb(0 255 136 / 0%);
      backdrop-filter: blur(12px);
      border-radius: 28px;
      border: 1px solid rgb(0 255 139 / 28%);
      padding: 2rem;
    }

    .billing-card-header {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      margin-bottom: 2rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid rgba(0, 200, 255, 0.2);
    }

    .billing-card-header i {
      font-size: 1.3rem;
      color: #00ff88;
    }

    .billing-card-header h3 {
      font-size: 1.2rem;
      font-weight: 700;
      color: #ffffff;
      margin: 0;
    }

    /* Form Grid */
    .billing-form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.2rem;
      margin-bottom: 2rem;
    }

    .form-field {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .form-field.full-width {
      grid-column: span 2;
    }

    .form-field label {
      font-size: 0.8rem;
      font-weight: 600;
      color: #00fe87;
      letter-spacing: 0.3px;
    }

    .form-field label i {
      margin-right: 0.5rem;
      font-size: 0.75rem;
      color: #00fe87;
    }

    .premium-input, .premium-select {
      background: rgb(5 28 17);
      border: 1px solid rgb(0 255 136 / 18%);
      border-radius: 16px;
      padding: 0.9rem 1rem;
      color: #ffffff;
      font-size: 0.9rem;
      transition: all 0.25s;
    }

    .premium-input:focus, .premium-select:focus {
      outline: none;
      border-color: #4ac7ff;
      box-shadow: 0 0 0 3px rgba(74, 199, 255, 0.1);
    }

    .premium-input::placeholder {
      color: #4a607a;
    }

    /* PAYMENT SECTION - SPACIOUS REDESIGN */
    .payment-section-spacious {
      background: rgb(6 30 23);
      border-radius: 24px;
      padding: 1.8rem;
      margin: 1.5rem 0;
      border: 1px solid rgb(0 253 138 / 25%);
    }

    .payment-header-spacious {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
      margin-bottom: 1.8rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid rgb(0 254 135 / 12%);
    }

    .payment-title-wrap {
      display: flex;
      align-items: center;
      gap: 0.8rem;
    }

    .payment-title-wrap i {
      font-size: 1.4rem;
      color: #00ff88;
    }

    .payment-title-wrap h4 {
      font-size: 1.1rem;
      font-weight: 700;
      color: #ffffff;
      margin: 0;
    }

    .accepted-cards-spacious {
      display: flex;
      align-items: center;
      gap: 1rem;
      background: rgba(0, 200, 255, 0.06);
      padding: 0.5rem 1.2rem;
      border-radius: 40px;
    }

    .accepted-cards-spacious span {
      font-size: 0.75rem;
      color: #8ba5c9;
    }

    .cards-icons {
      display: flex;
      gap: 0.8rem;
    }

    .cards-icons i {
      font-size: 1.6rem;
      color: #b8cce8;
      transition: color 0.2s;
    }

    .cards-icons i:hover {
      color: #4ac7ff;
    }

    .payment-form-grid {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .form-row-3col {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 1.2rem;
    }

    .cvv-input {
      max-width: 100%;
    }

    .cvv-hint {
      color: #00ff8b;
      text-decoration: none;
      font-size: 0.7rem;
      margin-left: 0.3rem;
    }

    /* Terms Section */
    .terms-section {
      margin: 1.8rem 0;
    }

    .checkbox-container {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      cursor: pointer;
      position: relative;
    }

    .checkbox-container input {
      position: absolute;
      opacity: 0;
      cursor: pointer;
      height: 0;
      width: 0;
    }

    .checkmark {
      min-width: 20px;
      width: 20px;
      height: 20px;
      background: rgba(5, 12, 22, 0.7);
      border: 1px solid rgb(0 255 136 / 36%);
      border-radius: 6px;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .checkbox-container input:checked ~ .checkmark {
      background: #00fe87;
      border-color: #00ff88;
    }

    .checkbox-container .checkmark:after {
      content: "";
      display: none;
      position: absolute;
      left: 7px;
      top: 3px;
      width: 5px;
      height: 10px;
      border: solid white;
      border-width: 0 2px 2px 0;
      transform: rotate(45deg);
    }

    .checkbox-container input:checked ~ .checkmark:after {
      display: block;
    }

    .terms-text {
      font-size: 0.72rem;
      color: #9eb0cf;
      line-height: 1.5;
    }

    .terms-text a {
      color: #ffffff;
      text-decoration: none;
    }

    .terms-text strong {
      color: #ffffff;
    }

    /* Support Contact */
    .support-contact {
      background: rgb(5 25 16);
      padding: 1rem;
      border-radius: 20px;
      text-align: center;
      margin: 1rem 0;
      font-size: 0.85rem;
      color: #b0c4f0;
    }

    .support-contact a {
      color: #00ff88;
      text-decoration: none;
    }

    /* Order Button */
    .order-now-btn {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.8rem;
      background: linear-gradient(95deg, #0066ff, #00bbff);
      background: linear-gradient(135deg, #00ff88, #0c3925) !important;
      border: none;
      padding: 1.1rem;
      border-radius: 60px;
      color: white;
      font-weight: 700;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s;
      margin-top: 1.5rem;
    }

    .order-now-btn:hover {
      gap: 1.2rem;
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgb(0 238 127 / 18%);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .checkout-container {
        padding: 0 1.2rem;
      }
      .checkout-title {
        font-size: 2rem;
      }
      .billing-form-grid {
        grid-template-columns: 1fr;
      }
      .form-field.full-width {
        grid-column: span 1;
      }
      .form-row-3col {
        grid-template-columns: 1fr;
        gap: 1rem;
      }
      .payment-header-spacious {
        flex-direction: column;
        align-items: flex-start;
      }
      .order-card {
        position: static;
      }
      .billing-card {
        padding: 1.5rem;
      }
      .payment-section-spacious {
        padding: 1.2rem;
      }
    }


    #cookiePopup h4 {
        font-size: 25px;
        color: #fff;
        margin-bottom: 15px;
    }

    #cookiePopup p {
        font-size: 15px;
        color: #fff;
        margin-bottom: 15px;
        letter-spacing: 1px;
        line-height: 1.5;
        max-width: 850px;
    }

    #cookiePopup p a {
        color: #fff;
        text-decoration: underline;
    }

    .cookieBtns {
        display: inline-flex;
        gap: 10px;
    }

    .cookieBtns button {
        font-size: 15px;
        margin: 10px 0;
        color: #fff;
        padding: 10px 20px;
        border-radius: 5px;
        background: #666666;
        cursor: pointer;
        transition: all 0.5s ease;
        border: 2px solid #fff;
    }

    .cookieBtns button:last-child {
        background-color: #fff;
        color: #666 !important;
    }
