/* =============================================================================
   HexShield™ Enterprise Cyber-Luxury Design System
   Inspired by DiamWall.com & Sucuri.net • Deep Obsidian & Neon Cyan Palette
   ============================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@500;600;700&family=JetBrains+Mono:wght@400;500;700&display=swap');

:root {
  --bg-deep: #03070d;
  --bg-main: #040d18;
  --bg-card: rgba(8, 20, 36, 0.85);
  --bg-card-hover: rgba(12, 30, 52, 0.95);
  --bg-glass: rgba(10, 26, 44, 0.7);
  --bg-elevated: #081726;
  
  --border-card: rgba(0, 240, 255, 0.18);
  --border-hover: rgba(0, 240, 255, 0.6);
  --border-emerald: rgba(0, 245, 155, 0.35);
  
  --neon-cyan: #00d2ff;
  --neon-cyan-bright: #00f0ff;
  --neon-cyan-glow: rgba(0, 210, 255, 0.45);
  --neon-emerald: #00e599;
  --neon-emerald-glow: rgba(0, 229, 153, 0.4);
  --neon-purple: #9d4edd;
  --accent-alert: #ff4757;
  
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-bright: #ffffff;
  
  --accent-gradient: linear-gradient(135deg, #00d2ff 0%, #00e599 100%);
  --btn-gradient: linear-gradient(135deg, #00b4d8 0%, #00f59b 100%);
  --btn-cyan: linear-gradient(135deg, #0096c7 0%, #00b4d8 100%);
  --card-gradient: linear-gradient(180deg, rgba(12, 28, 48, 0.8) 0%, rgba(4, 12, 22, 0.95) 100%);
  
  --font-sans: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: "Space Grotesk", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-sans);
}

body {
  background-color: var(--bg-deep);
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(0, 210, 255, 0.15) 0%, transparent 60%),
    radial-gradient(circle at 85% 30%, rgba(0, 229, 153, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 15% 70%, rgba(157, 78, 221, 0.05) 0%, transparent 50%),
    linear-gradient(to right, rgba(0, 240, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 100% 100%, 40px 40px, 40px 40px;
  color: var(--text-primary);
  overflow-x: hidden;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.25s ease;
}

/* ---------------- Sucuri Style Announcement Ribbon ---------------- */
.top-ribbon {
  background: linear-gradient(90deg, #00b074 0%, #00e599 50%, #00d2ff 100%);
  color: #030a10;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  box-shadow: 0 2px 15px rgba(0, 229, 153, 0.25);
  position: relative;
  z-index: 1001;
}

.top-ribbon .ribbon-badge {
  background: #030a10;
  color: #00e599;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 1px;
}

/* ---------------- DiamWall Style Navigation Bar ---------------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 48px;
  max-width: 1440px;
  margin: 0 auto;
  background: rgba(3, 7, 13, 0.85);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(0, 240, 255, 0.12);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 1.5px;
  color: var(--text-bright);
}

.brand-icon {
  width: 36px;
  height: 36px;
  background: var(--accent-gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 0 25px var(--neon-cyan-glow);
}

.brand-text {
  font-family: var(--font-display);
  background: linear-gradient(135deg, #ffffff 40%, var(--neon-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-sub {
  font-size: 10px;
  font-weight: 800;
  color: var(--neon-emerald);
  letter-spacing: 1.5px;
  padding: 2px 7px;
  background: rgba(0, 229, 153, 0.12);
  border: 1px solid rgba(0, 229, 153, 0.3);
  border-radius: 4px;
  margin-left: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}

.nav-links a:hover {
  color: var(--neon-cyan);
  text-shadow: 0 0 14px var(--neon-cyan-glow);
}

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

.lang-selector {
  background: rgba(8, 20, 36, 0.9);
  border: 1px solid var(--border-card);
  color: var(--text-primary);
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  outline: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.lang-selector:hover, .lang-selector:focus {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 15px var(--neon-cyan-glow);
}

.btn-scanner-nav {
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--neon-emerald);
  border: 1px solid rgba(0, 229, 153, 0.4);
  border-radius: 30px;
  background: rgba(0, 229, 153, 0.08);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s ease;
}

.btn-scanner-nav:hover {
  background: rgba(0, 229, 153, 0.2);
  box-shadow: 0 0 20px var(--neon-emerald-glow);
  transform: translateY(-1px);
}

/* DiamWall Pill Button */
.btn-client-area {
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 800;
  color: #030a10;
  background: var(--neon-cyan);
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.8px;
  box-shadow: 0 0 25px var(--neon-cyan-glow);
  transition: all 0.25s ease;
}

.btn-client-area:hover {
  background: #fff;
  box-shadow: 0 0 35px var(--neon-cyan-glow);
  transform: translateY(-2px);
}

.btn-deploy-nav {
  padding: 9px 22px;
  font-size: 13px;
  font-weight: 800;
  color: #03070d;
  background: var(--btn-gradient);
  border-radius: 30px;
  letter-spacing: 0.5px;
  box-shadow: 0 0 25px rgba(0, 229, 153, 0.4);
  transition: all 0.25s ease;
}

.btn-deploy-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(0, 229, 153, 0.6);
}

/* ---------------- Hero Section ---------------- */
.hero-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 48px 60px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
  position: relative;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(0, 210, 255, 0.08);
  border: 1px solid rgba(0, 210, 255, 0.3);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  color: var(--neon-cyan);
  letter-spacing: 1.2px;
  margin-bottom: 24px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--neon-emerald);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--neon-emerald);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 229, 153, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(0, 229, 153, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 229, 153, 0); }
}

.hero-title {
  font-size: 58px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
  color: #ffffff;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, #00d2ff 10%, #00e599 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 22px;
  font-weight: 700;
  color: var(--neon-emerald);
  margin-bottom: 20px;
  letter-spacing: -0.3px;
}

.hero-desc {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 620px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.btn-start-journey {
  padding: 14px 34px;
  font-size: 14px;
  font-weight: 800;
  color: #030a10;
  background: var(--neon-cyan);
  border-radius: 30px;
  letter-spacing: 0.8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 0 30px var(--neon-cyan-glow);
  transition: all 0.25s ease;
}

.btn-start-journey:hover {
  transform: translateY(-3px);
  background: #ffffff;
  box-shadow: 0 0 45px var(--neon-cyan-glow);
}

.btn-contact-hero {
  padding: 14px 30px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  background: rgba(8, 20, 36, 0.8);
  border: 1px solid var(--border-card);
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s ease;
}

.btn-contact-hero:hover {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  background: rgba(12, 30, 52, 0.95);
  box-shadow: 0 0 20px rgba(0, 210, 255, 0.25);
  transform: translateY(-2px);
}

/* DiamWall Social Bar */
.social-bar {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(8, 20, 36, 0.8);
  border: 1px solid rgba(0, 240, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 15px;
  transition: all 0.25s ease;
}

.social-circle:hover {
  color: var(--neon-cyan);
  border-color: var(--neon-cyan);
  background: rgba(0, 210, 255, 0.12);
  box-shadow: 0 0 18px var(--neon-cyan-glow);
  transform: translateY(-2px);
}

/* ---------------- DiamWall 3D Cyber Device & Floating Cards ---------------- */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
}

/* Isometric Cyber Phone/Tablet Frame */
.cyber-tablet-frame {
  position: relative;
  width: 360px;
  height: 480px;
  background: linear-gradient(135deg, rgba(8, 24, 42, 0.85) 0%, rgba(3, 10, 18, 0.95) 100%);
  border: 2px solid rgba(0, 210, 255, 0.35);
  border-radius: 28px;
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.9),
    0 0 50px rgba(0, 210, 255, 0.2),
    inset 0 0 30px rgba(0, 210, 255, 0.08);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 2;
  transform: perspective(1000px) rotateY(-8deg) rotateX(4deg);
  transition: transform 0.5s ease;
}

.cyber-tablet-frame:hover {
  transform: perspective(1000px) rotateY(-2deg) rotateX(1deg);
}

.tablet-camera-notch {
  position: absolute;
  top: 14px;
  width: 60px;
  height: 5px;
  background: rgba(0, 210, 255, 0.3);
  border-radius: 10px;
}

#shield-canvas {
  width: 320px;
  height: 320px;
  filter: drop-shadow(0 0 30px rgba(0, 210, 255, 0.35));
}

.tablet-hud-status {
  position: absolute;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  color: var(--neon-emerald);
  background: rgba(0, 229, 153, 0.1);
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(0, 229, 153, 0.3);
}

/* Floating HUD Cards Around Device (DiamWall Image 2 Replica) */
.floating-hud-card {
  position: absolute;
  background: rgba(6, 18, 32, 0.92);
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: 14px;
  padding: 12px 18px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), 0 0 25px rgba(0, 210, 255, 0.15);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
  animation: floatCard 4s ease-in-out infinite;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.floating-hud-card.card-pow {
  top: 25px;
  right: -25px;
  animation-delay: 0s;
}

.floating-hud-card.card-raw {
  bottom: 45px;
  left: -35px;
  animation-delay: 1.5s;
}

.floating-hud-card.card-waf {
  top: 160px;
  right: -55px;
  animation-delay: 2.2s;
}

.floating-hud-card.card-cdn {
  top: 80px;
  left: -40px;
  animation-delay: 0.8s;
}

.hud-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(0, 210, 255, 0.12);
  border: 1px solid rgba(0, 210, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--neon-cyan);
}

.hud-card-title {
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.3px;
}

.hud-card-sub {
  font-size: 11px;
  font-weight: 600;
  color: var(--neon-emerald);
}

/* ---------------- Sucuri SiteCheck Section ---------------- */
.section-scanner-wrap {
  max-width: 1440px;
  margin: 0 auto 70px;
  padding: 0 48px;
}

.scanner-box {
  background: linear-gradient(180deg, rgba(8, 24, 42, 0.9) 0%, rgba(4, 12, 22, 0.95) 100%);
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: 20px;
  padding: 36px 40px;
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(0, 210, 255, 0.12);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.scanner-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-gradient);
}

.scanner-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}

.scanner-title-group h2 {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.scanner-title-group p {
  color: var(--text-secondary);
  font-size: 14px;
  margin-top: 4px;
}

.scanner-edge-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--neon-emerald);
  background: rgba(0, 229, 153, 0.12);
  border: 1px solid rgba(0, 229, 153, 0.3);
  padding: 6px 14px;
  border-radius: 30px;
}

.scanner-input-wrap {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.scanner-input-container {
  flex: 1;
  display: flex;
  align-items: center;
  background: rgba(3, 8, 14, 0.9);
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: 12px;
  padding: 0 16px;
  transition: all 0.25s ease;
}

.scanner-input-container:focus-within {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 25px var(--neon-cyan-glow);
}

.scanner-prefix {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  margin-right: 8px;
  user-select: none;
}

.scanner-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 16px;
  font-family: var(--font-mono);
  padding: 16px 0;
}

.btn-scan {
  padding: 16px 36px;
  font-size: 14px;
  font-weight: 800;
  color: #03070d;
  background: var(--btn-gradient);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.5px;
  box-shadow: 0 0 25px rgba(0, 229, 153, 0.4);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-scan:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(0, 229, 153, 0.6);
}

/* Scanner Results Box */
.scan-results {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: none;
}

.scan-status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.scan-badge-warn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255, 71, 87, 0.15);
  border: 1px solid rgba(255, 71, 87, 0.4);
  color: #ff6b81;
  font-size: 12px;
  font-weight: 800;
  border-radius: 30px;
}

.scan-audit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.audit-card {
  background: rgba(3, 10, 18, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 14px 16px;
}

.audit-card-title {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.audit-card-status {
  font-size: 13px;
  font-weight: 800;
}

.audit-card-status.danger { color: #ff6b81; }
.audit-card-status.warning { color: #ffd32a; }
.audit-card-status.good { color: var(--neon-emerald); }

.scan-cta-box {
  background: linear-gradient(135deg, rgba(0, 210, 255, 0.1) 0%, rgba(0, 229, 153, 0.1) 100%);
  border: 1px solid rgba(0, 210, 255, 0.35);
  border-radius: 12px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

/* ---------------- Sucuri Style Metric Strip ---------------- */
.metric-strip {
  max-width: 1440px;
  margin: 0 auto 80px;
  padding: 0 48px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 20px;
  padding: 36px 30px;
  backdrop-filter: blur(20px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.metric-item {
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-item:last-child {
  border-right: none;
}

.metric-value {
  font-size: 42px;
  font-weight: 900;
  font-family: var(--font-display);
  background: linear-gradient(135deg, #ffffff 40%, var(--neon-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  margin-bottom: 8px;
}

.metric-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}

/* ---------------- Technology Breakdown Cards ---------------- */
.section-wrapper {
  max-width: 1440px;
  margin: 0 auto 90px;
  padding: 0 48px;
}

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

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--neon-cyan);
  background: rgba(0, 210, 255, 0.1);
  border: 1px solid rgba(0, 210, 255, 0.25);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.section-title {
  font-size: 38px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all 0.3s ease;
  backdrop-filter: blur(16px);
  position: relative;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 210, 255, 0.15);
}

.feature-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(0, 210, 255, 0.1);
  border: 1px solid rgba(0, 210, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.feature-title {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.feature-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ---------------- Benchmark Comparison Matrix ---------------- */
.comparison-table-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.compare-table th, .compare-table td {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.compare-table th {
  background: rgba(4, 12, 22, 0.95);
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.compare-table th.col-hexshield {
  background: rgba(0, 210, 255, 0.12);
  color: var(--neon-cyan);
  border-top: 3px solid var(--neon-cyan);
}

.compare-table td.col-hexshield {
  background: rgba(0, 210, 255, 0.04);
  font-weight: 700;
  color: #fff;
}

.check-yes {
  color: var(--neon-emerald);
  font-weight: 800;
}

.check-no {
  color: #ff4757;
  font-weight: 800;
}

/* ---------------- Single Transparent Pro Plan ---------------- */
.pricing-center-box {
  max-width: 680px;
  margin: 0 auto;
}

.pricing-card {
  background: linear-gradient(180deg, rgba(8, 24, 44, 0.92) 0%, rgba(4, 12, 22, 0.98) 100%);
  border: 2px solid rgba(0, 210, 255, 0.4);
  border-radius: 24px;
  padding: 44px 40px;
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.8),
    0 0 50px rgba(0, 210, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.pro-badge {
  position: absolute;
  top: 24px;
  right: 28px;
  background: var(--btn-gradient);
  color: #030a10;
  font-size: 11px;
  font-weight: 900;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 1px;
}

.pricing-price-box {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 20px 0 28px;
}

.price-currency {
  font-size: 28px;
  font-weight: 800;
  color: var(--neon-cyan);
}

.price-amount {
  font-size: 64px;
  font-weight: 900;
  font-family: var(--font-display);
  color: #fff;
  line-height: 1;
}

.price-period {
  font-size: 15px;
  color: var(--text-secondary);
  font-weight: 600;
}

.pricing-features-list {
  list-style: none;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-primary);
}

.pricing-features-list li .check-mark {
  color: var(--neon-emerald);
  font-weight: 900;
}

/* 1-Click Instant Direct Checkout Form */
.checkout-form {
  background: rgba(3, 8, 14, 0.85);
  border: 1px solid rgba(0, 240, 255, 0.25);
  border-radius: 16px;
  padding: 24px;
}

.input-field-group {
  margin-bottom: 16px;
}

.input-field-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

.input-field-group input {
  width: 100%;
  background: rgba(8, 20, 36, 0.95);
  border: 1px solid rgba(0, 240, 255, 0.25);
  padding: 13px 16px;
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: all 0.2s ease;
}

.input-field-group input:focus {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 20px var(--neon-cyan-glow);
}

.btn-crypto-buy {
  width: 100%;
  padding: 16px 24px;
  font-size: 14px;
  font-weight: 800;
  color: #030a10;
  background: var(--btn-gradient);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  letter-spacing: 0.5px;
  box-shadow: 0 0 30px rgba(0, 229, 153, 0.45);
  transition: all 0.25s ease;
  margin-top: 10px;
}

.btn-crypto-buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 45px rgba(0, 229, 153, 0.65);
}

.nowpayments-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 14px;
}

/* ---------------- Footer ---------------- */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 60px 48px 40px;
  max-width: 1440px;
  margin: 60px auto 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

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

/* ---------------- Responsive Design ---------------- */
@media (max-width: 1120px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-desc {
    margin: 0 auto 36px;
  }
  .hero-actions {
    justify-content: center;
  }
  .social-bar {
    justify-content: center;
  }
  .hero-visual {
    margin-top: 20px;
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .metric-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 16px 20px;
  }
  .nav-links {
    display: none;
  }
  .hero-title {
    font-size: 38px;
  }
  .floating-hud-card {
    display: none;
  }
  .cyber-tablet-frame {
    width: 300px;
    height: 400px;
    transform: none;
  }
  .scanner-input-wrap {
    flex-direction: column;
  }
  .metric-grid {
    grid-template-columns: 1fr;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .top-ribbon {
    font-size: 10px;
    padding: 6px 12px;
  }
}
