/* =============================================
   KryptMarket — Discord Shop Stylesheet
   Colors: Deep Blue · Dark Red · White
   ============================================= */

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

/* ---------- Reset & Tokens ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --blue-dark:    #0a1628;
  --blue-deep:    #0f1f3d;
  --blue-mid:     #1a3a6e;
  --blue-accent:  #2d6cdf;
  --blue-light:   #4a8ff7;
  --blue-glow:    #5b9cff;

  --red-dark:     #5c1a1a;
  --red-accent:   #8b2030;
  --red-mid:      #a82838;
  --red-bright:   #c43545;

  --white:        #f0f2f5;
  --white-pure:   #ffffff;
  --white-muted:  #b8bcc5;
  --white-dim:    #8a8f9a;

  --bg-primary:   #060d1a;
  --bg-card:      rgba(15, 25, 50, 0.7);
  --bg-card-hover:rgba(20, 35, 70, 0.8);

  --border-subtle:rgba(45, 108, 223, 0.15);
  --border-glow:  rgba(45, 108, 223, 0.4);

  --shadow-card:  0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-glow:  0 0 30px rgba(45, 108, 223, 0.15);

  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --radius-xl:    28px;

  --font-body:    'Outfit', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; font-family: inherit; }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb {
  background: var(--blue-mid);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--blue-accent); }

/* ---------- Selection ---------- */
::selection {
  background: var(--red-accent);
  color: var(--white-pure);
}

/* ---------- Background Noise ---------- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* ---------- Utility ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: 100px 0;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.section-title span {
  background: linear-gradient(135deg, var(--blue-light), var(--red-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-sub {
  text-align: center;
  color: var(--white-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue-accent), var(--blue-mid));
  color: var(--white-pure);
  border: 1px solid rgba(74, 143, 247, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(45, 108, 223, 0.35);
  border-color: var(--blue-light);
}

.btn-danger {
  background: linear-gradient(135deg, var(--red-accent), var(--red-dark));
  color: var(--white-pure);
  border: 1px solid rgba(168, 40, 56, 0.4);
}
.btn-danger:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(139, 32, 48, 0.35);
  border-color: var(--red-mid);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border-glow);
}
.btn-outline:hover {
  background: rgba(45, 108, 223, 0.1);
  border-color: var(--blue-light);
  transform: translateY(-2px);
}

.btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ---------- Badge ---------- */
.badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.badge-blue {
  background: rgba(45, 108, 223, 0.15);
  color: var(--blue-light);
  border: 1px solid rgba(45, 108, 223, 0.25);
}

.badge-red {
  background: rgba(139, 32, 48, 0.15);
  color: var(--red-bright);
  border: 1px solid rgba(139, 32, 48, 0.25);
}

/* =============================================
   NAVIGATION
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: var(--transition);
  backdrop-filter: blur(0px);
}

.navbar.scrolled {
  background: rgba(6, 13, 26, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.5px;
}

.navbar-brand .brand-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--blue-accent), var(--red-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 900;
  color: var(--white-pure);
}

.navbar-brand .brand-krypt {
  color: var(--white-pure);
}
.navbar-brand .brand-market {
  color: var(--blue-light);
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white-muted);
  transition: var(--transition);
  position: relative;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue-accent);
  transition: var(--transition);
}

.navbar-links a:hover {
  color: var(--white-pure);
}
.navbar-links a:hover::after {
  width: 100%;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-actions .btn {
  padding: 10px 22px;
  font-size: 0.85rem;
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
}

.hero-bg .orb-1 {
  width: 600px;
  height: 600px;
  background: var(--blue-accent);
  top: -200px;
  right: -150px;
  opacity: 0.15;
}

.hero-bg .orb-2 {
  width: 400px;
  height: 400px;
  background: var(--red-accent);
  bottom: -100px;
  left: -100px;
  opacity: 0.12;
}

.hero-bg .orb-3 {
  width: 300px;
  height: 300px;
  background: var(--blue-light);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.06;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(45, 108, 223, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 108, 223, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 120px 24px 80px;
}

.hero-badge {
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.hero h1 .highlight-blue {
  color: var(--blue-light);
}

.hero h1 .highlight-red {
  color: var(--red-bright);
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--white-muted);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--border-subtle);
}

.hero-stat {
  text-align: center;
}

.hero-stat .stat-num {
  font-size: 2rem;
  font-weight: 800;
  font-family: var(--font-mono);
  letter-spacing: -1px;
}

.hero-stat .stat-num.blue { color: var(--blue-light); }
.hero-stat .stat-num.red { color: var(--red-bright); }
.hero-stat .stat-num.white { color: var(--white-pure); }

.hero-stat .stat-label {
  font-size: 0.8rem;
  color: var(--white-dim);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* =============================================
   PRODUCTS
   ============================================= */
.products { background: var(--bg-primary); position: relative; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-accent), var(--red-accent));
  opacity: 0;
  transition: var(--transition);
}

.product-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.product-card:hover::before {
  opacity: 1;
}

.product-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}

.product-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.product-icon.icon-blue {
  background: rgba(45, 108, 223, 0.12);
  border: 1px solid rgba(45, 108, 223, 0.2);
}

.product-icon.icon-red {
  background: rgba(139, 32, 48, 0.12);
  border: 1px solid rgba(139, 32, 48, 0.2);
}

.product-icon svg {
  width: 24px;
  height: 24px;
  color: var(--white-pure);
}
.product-icon.icon-blue svg { color: var(--blue-accent); stroke: var(--blue-accent); }
.product-icon.icon-red svg { color: var(--red-accent); stroke: var(--red-accent); }

.product-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.tag-popular {
  background: rgba(45, 108, 223, 0.12);
  color: var(--blue-light);
  border: 1px solid rgba(45, 108, 223, 0.2);
}

.tag-limited {
  background: rgba(139, 32, 48, 0.12);
  color: var(--red-bright);
  border: 1px solid rgba(139, 32, 48, 0.2);
}

.tag-new {
  background: rgba(80, 200, 120, 0.1);
  color: #50c878;
  border: 1px solid rgba(80, 200, 120, 0.2);
}

.product-name {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white-pure);
}

.product-desc {
  font-size: 0.88rem;
  color: var(--white-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.product-features li {
  font-size: 0.75rem;
  padding: 5px 12px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--white-dim);
  font-weight: 500;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
}

.product-price {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white-pure);
}

.product-price .currency {
  font-size: 0.85rem;
  color: var(--white-dim);
  font-weight: 500;
}

.product-price .period {
  font-size: 0.75rem;
  color: var(--white-dim);
  font-weight: 400;
}

.product-footer .btn {
  padding: 10px 20px;
  font-size: 0.82rem;
}

/* =============================================
   FEATURES
   ============================================= */
.features {
  background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(10, 22, 40, 1) 100%);
  position: relative;
}

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

.feature-card {
  padding: 36px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  text-align: center;
}

.feature-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.feature-icon.fi-blue {
  background: linear-gradient(135deg, rgba(45, 108, 223, 0.15), rgba(45, 108, 223, 0.05));
  border: 1px solid rgba(45, 108, 223, 0.2);
}

.feature-icon.fi-red {
  background: linear-gradient(135deg, rgba(139, 32, 48, 0.15), rgba(139, 32, 48, 0.05));
  border: 1px solid rgba(139, 32, 48, 0.2);
}

.feature-icon.fi-white {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-icon svg {
  width: 32px;
  height: 32px;
  color: var(--white-pure);
}
.feature-icon.fi-blue svg { color: var(--blue-accent); stroke: var(--blue-accent); }
.feature-icon.fi-red svg { color: var(--red-accent); stroke: var(--red-accent); }
.feature-icon.fi-white svg { color: var(--white-pure); stroke: var(--white-pure); }

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white-pure);
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--white-muted);
  line-height: 1.6;
}

/* =============================================
   REVIEWS
   ============================================= */
.reviews { position: relative; }

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

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}

.review-card:hover {
  border-color: var(--border-glow);
}

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.review-stars .star {
  color: #f5a623;
  font-size: 0.9rem;
}

.review-text {
  font-size: 0.92rem;
  color: var(--white-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white-pure);
}

.review-avatar.av-blue { background: var(--blue-mid); }
.review-avatar.av-red { background: var(--red-dark); }
.review-avatar.av-mix {
  background: linear-gradient(135deg, var(--blue-mid), var(--red-dark));
}

.review-info .review-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white-pure);
}

.review-info .review-role {
  font-size: 0.75rem;
  color: var(--white-dim);
}

/* =============================================
   FAQ
   ============================================= */
.faq {
  background: linear-gradient(180deg, rgba(10, 22, 40, 1) 0%, var(--bg-primary) 100%);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--border-glow);
}

.faq-question {
  width: 100%;
  background: none;
  color: var(--white-pure);
  padding: 20px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
  font-family: var(--font-body);
}

.faq-question:hover {
  color: var(--blue-light);
}

.faq-question .faq-toggle {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  color: var(--white-dim);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--blue-light);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.88rem;
  color: var(--white-muted);
  line-height: 1.7;
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  padding: 80px 0;
}

.cta-box {
  background: linear-gradient(135deg, rgba(45, 108, 223, 0.08), rgba(139, 32, 48, 0.08));
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue-accent), var(--red-accent), transparent);
}

.cta-box h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.cta-box p {
  color: var(--white-muted);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  border-top: 1px solid var(--border-subtle);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.footer-brand .footer-logo .brand-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--blue-accent), var(--red-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 900;
  color: var(--white-pure);
}

.footer-brand p {
  color: var(--white-dim);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 0.85rem;
}

.footer-socials a:hover {
  background: rgba(45, 108, 223, 0.15);
  border-color: var(--blue-accent);
  color: var(--blue-light);
}

.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white-pure);
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--white-dim);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--white-pure);
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.82rem;
  color: var(--white-dim);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: var(--white-dim);
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--white-pure);
}

/* =============================================
   ANIMATIONS
   ============================================= */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: 0.08s; }
.stagger > *:nth-child(3) { transition-delay: 0.16s; }
.stagger > *:nth-child(4) { transition-delay: 0.24s; }
.stagger > *:nth-child(5) { transition-delay: 0.32s; }
.stagger > *:nth-child(6) { transition-delay: 0.4s; }

/* Pulse dot for "online" indicators */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #50c878;
  display: inline-block;
  animation: pulse 2s infinite;
}

/* Float animation for hero elements */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .features-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .navbar-links,
  .navbar-actions {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .features-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .cta-box {
    padding: 40px 24px;
  }

  .section-pad {
    padding: 64px 0;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(6, 13, 26, 0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white-muted);
  transition: var(--transition);
}

.mobile-menu a:hover {
  color: var(--white-pure);
}

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  color: var(--white);
  font-size: 1.5rem;
  padding: 8px;
}

/* Status indicator */
.status-online {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: #50c878;
  font-weight: 500;
}

/* =============================================
   NAV ACTIVE STATE
   ============================================= */
.nav-link.active {
  color: var(--white-pure);
}
.nav-link.active::after {
  width: 100%;
  background: var(--blue-accent);
}

/* =============================================
   NAV DROPDOWN
   ============================================= */
.nav-item-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 100%;
}
.nav-item-dropdown .nav-link {
  cursor: default;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(6, 13, 26, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  min-width: 200px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-item {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--text-gray);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.dropdown-item:hover, .dropdown-item.active {
  color: var(--white-pure);
  background: rgba(255, 255, 255, 0.05);
}

/* Mobile Dropdown styles */
.mobile-dropdown-title {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  opacity: 0.6;
}
.mobile-dropdown-item {
  padding-left: 1.5rem !important;
  font-size: 1.2rem !important;
  color: var(--text-gray) !important;
}
.mobile-dropdown-item:hover {
  color: var(--white-pure) !important;
}

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  overflow: hidden;
  text-align: center;
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 16px;
  line-height: 1.15;
}

.page-hero p {
  font-size: 1.05rem;
  color: var(--white-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.page-hero .hero-badge {
  margin-bottom: 20px;
}

/* =============================================
   SECTION MORE LINK
   ============================================= */
.section-more {
  text-align: center;
  margin-top: 40px;
}

/* =============================================
   FILTER TABS (Products page)
   ============================================= */
.filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white-muted);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
  font-family: var(--font-body);
}

.filter-tab:hover {
  background: rgba(45, 108, 223, 0.1);
  color: var(--white-pure);
  border-color: rgba(45, 108, 223, 0.3);
}

.filter-tab.active {
  background: var(--blue-accent);
  color: var(--white-pure);
  border-color: var(--blue-accent);
}

/* hidden state for filter */
.product-card.filter-hidden {
  display: none;
}

/* =============================================
   CUSTOM CALLOUT
   ============================================= */
.custom-callout {
  margin-top: 56px;
}

.callout-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  gap: 24px;
}

.callout-inner:hover {
  border-color: var(--border-glow);
}

.callout-text h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white-pure);
  margin-bottom: 6px;
}

.callout-text p {
  font-size: 0.9rem;
  color: var(--white-muted);
  line-height: 1.6;
}

@media (max-width: 640px) {
  .callout-inner {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
  }
}

/* =============================================
   STATS BAR (Features page)
   ============================================= */
.stats-bar {
  background: linear-gradient(180deg, rgba(10, 22, 40, 1) 0%, var(--bg-primary) 100%);
}

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

.stat-block {
  text-align: center;
  padding: 32px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
}

.stat-number {
  font-size: 2.4rem;
  font-weight: 800;
  font-family: var(--font-mono);
  letter-spacing: -1px;
  margin-bottom: 4px;
}

.stat-number.blue { color: var(--blue-light); }
.stat-number.red { color: var(--red-bright); }
.stat-number.white { color: var(--white-pure); }

.stat-desc {
  font-size: 0.82rem;
  color: var(--white-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* =============================================
   STEPS / HOW IT WORKS (Features page)
   ============================================= */
.steps-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 48px;
}

.step-card {
  flex: 1;
  max-width: 320px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}

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

.step-num {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue-light), var(--red-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white-pure);
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.88rem;
  color: var(--white-muted);
  line-height: 1.6;
}

.step-connector {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-accent), var(--red-accent));
  flex-shrink: 0;
  opacity: 0.4;
}

@media (max-width: 768px) {
  .steps-grid {
    flex-direction: column;
    gap: 0;
  }
  .step-connector {
    width: 2px;
    height: 32px;
  }
}

/* =============================================
   REVIEW SUMMARY (Reviews page)
   ============================================= */
.review-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 48px;
  padding: 28px 36px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  flex-wrap: wrap;
}

.summary-num {
  font-size: 2.2rem;
  font-weight: 800;
  font-family: var(--font-mono);
  color: var(--white-pure);
}

.summary-label {
  font-size: 0.9rem;
  color: var(--white-dim);
  margin-left: 4px;
}

.summary-stars {
  display: flex;
  gap: 4px;
}

.summary-stars .star {
  color: #f5a623;
  font-size: 1.3rem;
}

.summary-count {
  font-size: 0.88rem;
  color: var(--white-dim);
}

/* =============================================
   CONTACT (Contact page)
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}

.contact-card:hover {
  border-color: var(--border-glow);
}

.contact-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.contact-card-icon.fi-blue {
  background: linear-gradient(135deg, rgba(45, 108, 223, 0.15), rgba(45, 108, 223, 0.05));
  border: 1px solid rgba(45, 108, 223, 0.2);
}

.contact-card-icon.fi-red {
  background: linear-gradient(135deg, rgba(139, 32, 48, 0.15), rgba(139, 32, 48, 0.05));
  border: 1px solid rgba(139, 32, 48, 0.2);
}

.contact-card-icon.fi-white {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white-pure);
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 0.88rem;
  color: var(--white-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.contact-card .btn {
  font-size: 0.82rem;
  padding: 10px 20px;
}

/* =============================================
   CONTACT FORM
   ============================================= */
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.contact-form-wrap h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white-pure);
  margin-bottom: 6px;
}

.form-sub {
  font-size: 0.88rem;
  color: var(--white-dim);
  margin-bottom: 28px;
}

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

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 0.92rem;
  font-family: var(--font-body);
  transition: var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--white-dim);
  opacity: 0.6;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue-accent);
  background: rgba(45, 108, 223, 0.05);
  box-shadow: 0 0 0 3px rgba(45, 108, 223, 0.1);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%238a8f9a' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group select option {
  background: var(--blue-dark);
  color: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: 28px 20px;
  }
}
